Advertisement
Guest User

Installing KVM VirtualMachine Manager in Ubuntu 12.04 LTS or

a guest
Sep 13th, 2013
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. Installing KVM VirtualMachine Manager in Ubuntu 12.04 LTS or Greater
  2.  
  3. 1.To Check Weather the System Support for Virtualization we need to check using
  4.  
  5. # egrep -c '(vmx|svm)' /proc/cpuinfo
  6. Note
  7.  
  8. If 0 it means that your CPU doesn't support hardware virtualization.
  9. If 1 or more it does - but you still need to make sure that virtualization is enabled in the BIOS.
  10. 2.To see if your processor is 64-bit, you can run this command
  11.  
  12. # egrep -c ' lm ' /proc/cpuinfo
  13. 3.Now see if your running kernel is 64-bit, just issue the following command
  14.  
  15. # uname -m
  16. 4.First update the Desktop using
  17.  
  18. # sudo apt get update
  19. 5.Then install the KVM Virtual Manager by using command
  20.  
  21. # sudo apt-get install virt-manager
  22. 6.Then install the server and dependency for KVM using command
  23.  
  24. # sudo apt-get install qemu-kvm libvirt-bin ubuntu-vm-builder bridge-utils
  25. 7.Add the user in libvirt group by using
  26.  
  27. # sudo adduser `id -un` libvirtd
  28. 8.Open Virtual Manager in Command Line using command
  29.  
  30. # virt-manager
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement