KVM: Difference between revisions

From 太極
Jump to navigation Jump to search
Line 71: Line 71:
# Click the superkey (Windows) and search/launch "Virtual Machine Manager"
# Click the superkey (Windows) and search/launch "Virtual Machine Manager"
</pre>
</pre>
Error: No active connection to install on
Click the "Create a new virtual machine" button will result in an error: No active connection to install on. Rebooting does not help. But when I use the command line to create a new VM it works.
<pre>
<pre>
sudo virt-install --name=ubuntu2004 \
sudo virt-install --name=ubuntu2004 \
Line 78: Line 78:
   --vcpu=2 --ram=2048 \
   --vcpu=2 --ram=2048 \
   --graphics vnc \
   --graphics vnc \
   --location=ubuntu-20.04.1-desktop-amd64.iso \
   --location=ubuntu-20.04.1-desktop-amd64.iso
  --network bridge:virbr0
</pre>
</pre>
Add '''--network bridge:br0''' if we have added a new bridge network (''br0'') in the host (eg using '''netplan'''). See some resource below.
</li>
</li>
<li>[https://www.cyberciti.biz/faq/how-to-install-kvm-on-ubuntu-20-04-lts-headless-server/ How to install KVM on Ubuntu 20.04 LTS Headless Server]</li>
<li>[https://www.cyberciti.biz/faq/how-to-install-kvm-on-ubuntu-20-04-lts-headless-server/ How to install KVM on Ubuntu 20.04 LTS Headless Server]</li>

Revision as of 12:10, 26 November 2020

Resource

Install

Install on Ubuntu

Install on CentOS

snapshot

  • How to Create, Revert and Delete KVM Virtual machine (domain) snapshot with virsh command, How to create snapshot in Linux KVM VM/Domain
    $ sudo su
    # virsh list --all
    
    # virsh snapshot-create-as --domain win10 --name win10_snap --description "Windows 10 snapshot"    # Create a snapshot
    # virsh snapshot-list win10
    # virsh snapshot-info --domain win10 --snapshotname win10_snap
    
    # virsh snapshot-revert win10 win10_snap    # Restore
    
    # virsh snapshot-delete --domain win10 --snapshotname win10_snap
    
  • To create a snapshot using the GUI, open virtualization manager window. In the VM properties, click on the icon (two displays overlapped) which is on the right of the menu, which says Manage VM snapshots.

GUI manager

Network

Back and restore images

How to KVM Backup and Restore in Linux

# Backup 
virsh list --all
virsh dumpxml win10 > /MyBackup/win10.xml
sudo cp /var/lib/libvirt/images/win10.qcow2 /MyBackup/win10.qcow2
sudo chown $USER:$USER /MyBackup/*.qcow2

# Restore Making
sudo virsh undefine win10
ls -l /etc/libvirt/qemu
virsh list –all
sudo rm /var/lib/libvirt/images/win10.qcow2
sudo cp /MyBackup/win10.qcow2 /var/lib/libvirt/images/
sudo virsh define --file /MyBackup/win10.xml
# virsh start win10

Cheat sheet

KVM Cheatsheet

Run macOS on KVM / QEMU

How To run macOS on KVM / QEMU