KVM: Difference between revisions

From Wildsong
Jump to navigationJump to search
Brian Wilson (talk | contribs)
Created page with "On dart... mkdir /var/kvm cd /var/kvm qemu-img create -f qcow2 bigbluebutton.img 10G /usr/libexec/qemu-kvm -hda bigbluebutton.img -cdrom ~/ubuntu-13.10-server-i386.iso -b..."
 
Brian Wilson (talk | contribs)
mNo edit summary
Line 1: Line 1:
On dart...
KVM is a virtualization engine, like VirtualBox or VMWare.
 
I am testing it on Dart, a server that runs Centos 6.5
 
I needed to be able to run Ubuntu to test out [[BigBlueButton]]. (It seemed the easiest path at the moment.)
 
== Set up ==
 
Installed packages via yum
 
== Use ==
 
Create a new virtual machine, then start it.


  mkdir /var/kvm
  mkdir /var/kvm
  cd /var/kvm
  cd /var/kvm
  qemu-img create -f qcow2 bigbluebutton.img 10G
  qemu-img create -f qcow2 bigbluebutton.img 10G
  /usr/libexec/qemu-kvm -hda bigbluebutton.img -cdrom ~/ubuntu-13.10-server-i386.iso -boot d -m 2048
  /usr/libexec/qemu-kvm -hda bigbluebutton.img -cdrom ~/ubuntu-13.10-server-i386.iso -boot d -m 2048 -vnc :0


Now connect via VNC client. On a Mac, open Safari and use a URL like vnc://10.1.10.70/ and away you go.
Now connect via VNC client. On a Mac, I downloaded Vine VNC Client. It made me jump through hoops.
I hope not to have to use it again.

Revision as of 04:25, 11 February 2014

KVM is a virtualization engine, like VirtualBox or VMWare.

I am testing it on Dart, a server that runs Centos 6.5

I needed to be able to run Ubuntu to test out BigBlueButton. (It seemed the easiest path at the moment.)

Set up

Installed packages via yum

Use

Create a new virtual machine, then start it.

mkdir /var/kvm
cd /var/kvm
qemu-img create -f qcow2 bigbluebutton.img 10G
/usr/libexec/qemu-kvm -hda bigbluebutton.img -cdrom ~/ubuntu-13.10-server-i386.iso -boot d -m 2048 -vnc :0

Now connect via VNC client. On a Mac, I downloaded Vine VNC Client. It made me jump through hoops. I hope not to have to use it again.