From 1721d26e542e27c9e58eef1023b345e127258d6f Mon Sep 17 00:00:00 2001 From: Trent Palmer Date: Sun, 11 Feb 2018 08:33:05 -0800 Subject: [PATCH] extend stupid_kvm_tricks --- docs/stupid_kvm_tricks.md | 33 +++++++++++++++++++++++++++ site/index.html | 2 +- site/search/search_index.json | 7 +++++- site/sitemap.xml | 38 +++++++++++++++---------------- site/stupid_kvm_tricks/index.html | 28 +++++++++++++++++++++++ 5 files changed, 87 insertions(+), 21 deletions(-) diff --git a/docs/stupid_kvm_tricks.md b/docs/stupid_kvm_tricks.md index 952a7b6..985e211 100644 --- a/docs/stupid_kvm_tricks.md +++ b/docs/stupid_kvm_tricks.md @@ -144,3 +144,36 @@ and thus we know what subnet to scan with nmap to find the ip address of the vm ```bash nmap -sn 192.168.122.0/24 ``` + +## Snapshots + +Create snapshot of vm `dcing` + +```bash +virsh snapshot-create-as --domain dcing --name dcing-snap0 +``` +But you don't need to name your snapshots because they are listed by time. + +```bash +virsh snapshot-create --domain dcing +``` +List snapshots for vm `dcing` + +```bash +virsh snapshot-list --domain dcing + + Name Creation Time State +------------------------------------------------------------ + 1518366561 2018-02-11 08:29:21 -0800 shutoff + dcing-snap0 2018-02-11 08:22:57 -0800 shutoff +``` +Revert dcing to snap0 + +```bash +virsh snapshot-revert --domain dcing --snapshotname dcing-snap0 +``` +Delete snapshot + +```bash +virsh snapshot-delete --domain dcing --snapshotname dcing-snap0 +``` diff --git a/site/index.html b/site/index.html index 1a1fce2..9a65c87 100644 --- a/site/index.html +++ b/site/index.html @@ -261,5 +261,5 @@ diff --git a/site/search/search_index.json b/site/search/search_index.json index a3e808d..f7b70f0 100644 --- a/site/search/search_index.json +++ b/site/search/search_index.json @@ -582,7 +582,7 @@ }, { "location": "/stupid_kvm_tricks/", - "text": "Stupid KVM Tricks\n\n\nvirt-install ubuntu16.04\n\n\nCreate the disk image\n\n\nqemu-img create -f qcow2 /var/lib/libvirt/images/xenial.qcow2 20G\n\n\nCommand to run the install\n\n\nvirt-install \\\n --name xenial \\\n --ram 4096 \\\n --disk path=/var/lib/libvirt/images/xenial.qcow2,size=20 \\\n --vcpus 4 \\\n --os-type linux \\\n --os-variant ubuntu16.04 \\\n --network bridge=br0 \\\n --graphics none \\\n --console pty,target_type=serial \\\n --location ./ubuntu-16.04.3-server-amd64.iso \\\n --extra-args 'console=ttyS0,115200n8 serial'\n\n\n\n\nChange the Network Interface\n\n\nbr0 gets addresses from the network router, but what if you want\nyour vm to have be on the virbr0 192.168.122.0/24 subnet?\n\n\nvirsh edit xenial\n\n\nAnd then 'J' all the way down to the bottom, change the interface name from br0 to\nvirbr0, \n\n\nvirsh start xenial\n\n\nand then look for the machine with nmap\n\n\nnmap -sn 192.168.122.0/24\n\n\nClone the VM\n\n\nIn this case we don't have to pre-allocate the disk image because virt-clone will do that\nfor us.\n\n\nvirt-clone --original xenial --name xenial-clone \\\n --file /var/lib/libvirt/images/xenial-clone.qcow2\n\n\n\n\nClone the VM to another Machine\n\n\nFirst dump the xml that defines the virtual machine.\n\n\nvirsh dumpxml xenial > xenial.xml\n\n\n\n\nThen copy both \nxenial.xml\n and \nxenial.qcow2\n to the new host machine. On the new kvm\nhost you'll want to at least make sure your vm has the correct CPU architecture.\nThe command to get a list of supported kvm cpu architectures is:\n\n\nvirsh cpu-models \n# i.e.\nvirsh cpu-models x86_64\n\n\n\n\nAfter you edit \nxenial.xml\n and update the correct cpu architecture, mv \nxenial.qcow2\n\nto \n/var/lib/libvirt/images/\n, clone it. \nvirt-clone\n will handle generating new\nmac addresses for the network interfaces.\n\n\n \n Haswell-noTSX\n \n# i.e. change to above to\n \n SandyBridge\n \n\n\n\n\n\nvirt-clone --original-xml xenial.xml --name xenial-clone \\\n --file /var/lib/libvirt/images/xenial-clone.qcow2\n\n\n\n\nWhat is the os-type and os-variant type names?\n\n\nosinfo-query os\n\n\nmisc\n\n\n\n\nStart the vm \nvirsh start xenial\n \n\n\nList all the vms \nvirsh list --all\n \n\n\nStop the vm \nvirsh destroy xenial\n \n\n\nDelete the vm \nvirsh undefine xenial\n \n\n\n\n\nvirsh help\n\n\nThe \nvirsh help\n command returns a long chart of help information. But each section has\na keyword.\n\n\nTake for instance the command \nvirsh help monitor\n. From this we\nsee the \ndomiflist\n subcommand (among others). Unfortunately \ndomifaddr\n doesn't seem to\nwork on the Ubuntu:16.04 host, but there are other ways to find the ip address of\na virtual machine.\n\n\nSo now if you want to see what host interface the vm \nxenial\n is attached to,\ntype. \n\n\nvirsh domiflist xenial\n\n\n\n\nwhich returns:\n\n\nInterface Type Source Model MAC\n-------------------------------------------------------\nvnet1 bridge virbr0 virtio 52:54:00:58:bf:75\n\n\n\n\nSo now we can find the address of virbr0 on the host machine.\n\n\nifconfig virbr0\n\n\n\n\nwhich returns:\n\n\nvirbr0 Link encap:Ethernet HWaddr 52:54:00:38:87:38 \n inet addr:192.168.122.1 Bcast:192.168.122.255 Mask:255.255.255.0\n UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1\n RX packets:1351 errors:0 dropped:0 overruns:0 frame:0\n TX packets:3037 errors:0 dropped:0 overruns:0 carrier:0\n collisions:0 txqueuelen:1000 \n RX bytes:232346 (232.3 KB) TX bytes:502916 (502.9 KB)\n\n\n\n\nand thus we know what subnet to scan with nmap to find the ip address of the vm\n\n\nnmap -sn 192.168.122.0/24", + "text": "Stupid KVM Tricks\n\n\nvirt-install ubuntu16.04\n\n\nCreate the disk image\n\n\nqemu-img create -f qcow2 /var/lib/libvirt/images/xenial.qcow2 20G\n\n\nCommand to run the install\n\n\nvirt-install \\\n --name xenial \\\n --ram 4096 \\\n --disk path=/var/lib/libvirt/images/xenial.qcow2,size=20 \\\n --vcpus 4 \\\n --os-type linux \\\n --os-variant ubuntu16.04 \\\n --network bridge=br0 \\\n --graphics none \\\n --console pty,target_type=serial \\\n --location ./ubuntu-16.04.3-server-amd64.iso \\\n --extra-args 'console=ttyS0,115200n8 serial'\n\n\n\n\nChange the Network Interface\n\n\nbr0 gets addresses from the network router, but what if you want\nyour vm to have be on the virbr0 192.168.122.0/24 subnet?\n\n\nvirsh edit xenial\n\n\nAnd then 'J' all the way down to the bottom, change the interface name from br0 to\nvirbr0, \n\n\nvirsh start xenial\n\n\nand then look for the machine with nmap\n\n\nnmap -sn 192.168.122.0/24\n\n\nClone the VM\n\n\nIn this case we don't have to pre-allocate the disk image because virt-clone will do that\nfor us.\n\n\nvirt-clone --original xenial --name xenial-clone \\\n --file /var/lib/libvirt/images/xenial-clone.qcow2\n\n\n\n\nClone the VM to another Machine\n\n\nFirst dump the xml that defines the virtual machine.\n\n\nvirsh dumpxml xenial > xenial.xml\n\n\n\n\nThen copy both \nxenial.xml\n and \nxenial.qcow2\n to the new host machine. On the new kvm\nhost you'll want to at least make sure your vm has the correct CPU architecture.\nThe command to get a list of supported kvm cpu architectures is:\n\n\nvirsh cpu-models \n# i.e.\nvirsh cpu-models x86_64\n\n\n\n\nAfter you edit \nxenial.xml\n and update the correct cpu architecture, mv \nxenial.qcow2\n\nto \n/var/lib/libvirt/images/\n, clone it. \nvirt-clone\n will handle generating new\nmac addresses for the network interfaces.\n\n\n \n Haswell-noTSX\n \n# i.e. change to above to\n \n SandyBridge\n \n\n\n\n\n\nvirt-clone --original-xml xenial.xml --name xenial-clone \\\n --file /var/lib/libvirt/images/xenial-clone.qcow2\n\n\n\n\nWhat is the os-type and os-variant type names?\n\n\nosinfo-query os\n\n\nmisc\n\n\n\n\nStart the vm \nvirsh start xenial\n \n\n\nList all the vms \nvirsh list --all\n \n\n\nStop the vm \nvirsh destroy xenial\n \n\n\nDelete the vm \nvirsh undefine xenial\n \n\n\n\n\nvirsh help\n\n\nThe \nvirsh help\n command returns a long chart of help information. But each section has\na keyword.\n\n\nTake for instance the command \nvirsh help monitor\n. From this we\nsee the \ndomiflist\n subcommand (among others). Unfortunately \ndomifaddr\n doesn't seem to\nwork on the Ubuntu:16.04 host, but there are other ways to find the ip address of\na virtual machine.\n\n\nSo now if you want to see what host interface the vm \nxenial\n is attached to,\ntype. \n\n\nvirsh domiflist xenial\n\n\n\n\nwhich returns:\n\n\nInterface Type Source Model MAC\n-------------------------------------------------------\nvnet1 bridge virbr0 virtio 52:54:00:58:bf:75\n\n\n\n\nSo now we can find the address of virbr0 on the host machine.\n\n\nifconfig virbr0\n\n\n\n\nwhich returns:\n\n\nvirbr0 Link encap:Ethernet HWaddr 52:54:00:38:87:38 \n inet addr:192.168.122.1 Bcast:192.168.122.255 Mask:255.255.255.0\n UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1\n RX packets:1351 errors:0 dropped:0 overruns:0 frame:0\n TX packets:3037 errors:0 dropped:0 overruns:0 carrier:0\n collisions:0 txqueuelen:1000 \n RX bytes:232346 (232.3 KB) TX bytes:502916 (502.9 KB)\n\n\n\n\nand thus we know what subnet to scan with nmap to find the ip address of the vm\n\n\nnmap -sn 192.168.122.0/24\n\n\n\n\nSnapshots\n\n\nCreate snapshot of vm \ndcing\n\n\nvirsh snapshot-create-as --domain dcing --name dcing-snap0\n\n\n\n\nBut you don't need to name your snapshots because they are listed by time.\n\n\nvirsh snapshot-create --domain dcing\n\n\n\n\nList snapshots for vm \ndcing\n\n\nvirsh snapshot-list --domain dcing\n\n Name Creation Time State\n------------------------------------------------------------\n 1518366561 2018-02-11 08:29:21 -0800 shutoff\n dcing-snap0 2018-02-11 08:22:57 -0800 shutoff\n\n\n\n\nRevert dcing to snap0\n\n\nvirsh snapshot-revert --domain dcing --snapshotname dcing-snap0\n\n\n\n\nDelete snapshot\n\n\nvirsh snapshot-delete --domain dcing --snapshotname dcing-snap0", "title": "Stupid KVM Tricks" }, { @@ -624,6 +624,11 @@ "location": "/stupid_kvm_tricks/#virsh-help", "text": "The virsh help command returns a long chart of help information. But each section has\na keyword. Take for instance the command virsh help monitor . From this we\nsee the domiflist subcommand (among others). Unfortunately domifaddr doesn't seem to\nwork on the Ubuntu:16.04 host, but there are other ways to find the ip address of\na virtual machine. So now if you want to see what host interface the vm xenial is attached to,\ntype. virsh domiflist xenial which returns: Interface Type Source Model MAC\n-------------------------------------------------------\nvnet1 bridge virbr0 virtio 52:54:00:58:bf:75 So now we can find the address of virbr0 on the host machine. ifconfig virbr0 which returns: virbr0 Link encap:Ethernet HWaddr 52:54:00:38:87:38 \n inet addr:192.168.122.1 Bcast:192.168.122.255 Mask:255.255.255.0\n UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1\n RX packets:1351 errors:0 dropped:0 overruns:0 frame:0\n TX packets:3037 errors:0 dropped:0 overruns:0 carrier:0\n collisions:0 txqueuelen:1000 \n RX bytes:232346 (232.3 KB) TX bytes:502916 (502.9 KB) and thus we know what subnet to scan with nmap to find the ip address of the vm nmap -sn 192.168.122.0/24", "title": "virsh help" + }, + { + "location": "/stupid_kvm_tricks/#snapshots", + "text": "Create snapshot of vm dcing virsh snapshot-create-as --domain dcing --name dcing-snap0 But you don't need to name your snapshots because they are listed by time. virsh snapshot-create --domain dcing List snapshots for vm dcing virsh snapshot-list --domain dcing\n\n Name Creation Time State\n------------------------------------------------------------\n 1518366561 2018-02-11 08:29:21 -0800 shutoff\n dcing-snap0 2018-02-11 08:22:57 -0800 shutoff Revert dcing to snap0 virsh snapshot-revert --domain dcing --snapshotname dcing-snap0 Delete snapshot virsh snapshot-delete --domain dcing --snapshotname dcing-snap0", + "title": "Snapshots" } ] } \ No newline at end of file diff --git a/site/sitemap.xml b/site/sitemap.xml index 8328de8..9f3a503 100644 --- a/site/sitemap.xml +++ b/site/sitemap.xml @@ -4,7 +4,7 @@ / - 2018-02-10 + 2018-02-11 daily @@ -12,7 +12,7 @@ /apt_pinning_artful_aardvark_packages_in_xenial_xerus/ - 2018-02-10 + 2018-02-11 daily @@ -20,7 +20,7 @@ /lxd_container_home_server_networking_for_dummies/ - 2018-02-10 + 2018-02-11 daily @@ -28,7 +28,7 @@ /lxd_container_foo/ - 2018-02-10 + 2018-02-11 daily @@ -36,7 +36,7 @@ /how_to_reassign_a_static_ip_address_with_dnsmasq/ - 2018-02-10 + 2018-02-11 daily @@ -44,7 +44,7 @@ /serve_and_share_apps_from_your_phone_with_fdroid/ - 2018-02-10 + 2018-02-11 daily @@ -52,7 +52,7 @@ /nspawn/ - 2018-02-10 + 2018-02-11 daily @@ -60,7 +60,7 @@ /gentoo_lxd_container/ - 2018-02-10 + 2018-02-11 daily @@ -68,7 +68,7 @@ /mastodon_on_arch/ - 2018-02-10 + 2018-02-11 daily @@ -76,7 +76,7 @@ /debian_nspawn_container_on_arch_for_testing_apache_configurations/ - 2018-02-10 + 2018-02-11 daily @@ -84,7 +84,7 @@ /dynamic_cacheing_nginx_reverse_proxy_for_pacman/ - 2018-02-10 + 2018-02-11 daily @@ -92,7 +92,7 @@ /freebsd_jails_on_freenas/ - 2018-02-10 + 2018-02-11 daily @@ -100,7 +100,7 @@ /arch_redis_nspawn/ - 2018-02-10 + 2018-02-11 daily @@ -108,7 +108,7 @@ /arch_postgresql_nspawn/ - 2018-02-10 + 2018-02-11 daily @@ -116,7 +116,7 @@ /misc_tips_troubleshooting/ - 2018-02-10 + 2018-02-11 daily @@ -124,7 +124,7 @@ /self_signed_certs/ - 2018-02-10 + 2018-02-11 daily @@ -132,7 +132,7 @@ /selfoss_on_centos7/ - 2018-02-10 + 2018-02-11 daily @@ -140,7 +140,7 @@ /stupid_package_manager_tricks/ - 2018-02-10 + 2018-02-11 daily @@ -148,7 +148,7 @@ /stupid_kvm_tricks/ - 2018-02-10 + 2018-02-11 daily diff --git a/site/stupid_kvm_tricks/index.html b/site/stupid_kvm_tricks/index.html index aa4d430..59a7254 100644 --- a/site/stupid_kvm_tricks/index.html +++ b/site/stupid_kvm_tricks/index.html @@ -160,6 +160,8 @@
  • virsh help
  • +
  • Snapshots
  • + @@ -306,6 +308,32 @@ vnet1 bridge virbr0 virtio 52:54:00:58:bf:75

    and thus we know what subnet to scan with nmap to find the ip address of the vm

    nmap -sn 192.168.122.0/24
    +
    + +

    Snapshots

    +

    Create snapshot of vm dcing

    +
    virsh snapshot-create-as --domain dcing --name dcing-snap0
    +
    + +

    But you don't need to name your snapshots because they are listed by time.

    +
    virsh snapshot-create --domain dcing
    +
    + +

    List snapshots for vm dcing

    +
    virsh snapshot-list --domain dcing
    +
    + Name                 Creation Time             State
    +------------------------------------------------------------
    + 1518366561           2018-02-11 08:29:21 -0800 shutoff
    + dcing-snap0          2018-02-11 08:22:57 -0800 shutoff
    +
    + +

    Revert dcing to snap0

    +
    virsh snapshot-revert --domain dcing --snapshotname dcing-snap0
    +
    + +

    Delete snapshot

    +
    virsh snapshot-delete --domain dcing --snapshotname dcing-snap0