Instalasi VirtualBox di Ubuntu

From OnnoWiki
Revision as of 05:49, 3 May 2008 by Onnowpurbo (talk | contribs)
Jump to navigation Jump to search

Install paket berikut

# apt-get install libqt3-mt libxalan110 libxerces27


Ambil versi / paket terbaru dari VirtualBox dari

http://www.virtualbox.org/download/

Lakukan instalasi menggunakan dpkg berikut

# dpkg -i virtualbox_1.5.6-28266_Ubuntu_gutsy_i386.deb

VirtualBox akan membuat vboxdrv kernel modul & group dengan nama vboxusers. Masukan username kita ke vboxusers. Logout dari "root", login sebagai user kita biasa, dan masukan user kita dalam group vboxusers menggunakan perintah

$ sudo adduser $USER vboxusers

Jika kita ingin mengakses usb device di virtual machine, kita perlu melakukan hal di bawah ini. Jika tidak ingin menggunakan usb device, kita dapat meloncati proses di bawah ini

$ sudo addgroup usbfs
$ sudo adduser $USER usbfs

Untuk mencek ID dari usbfs apakah berhasil dengan baik dibuat atau belum dapat melakukan perintah berikut,

$ cat /etc/group | grep usbfs

Lihat baik-baik nomor sesudah "usbfs:x:". Lakukan perintah berikut, ganti 1001 dengan nomor yang anda dapat dari usbfs:x tersebut

$ echo "none /proc/bus/usb usbfs devgid=1001,devmode=664 0 0" | sudo tee -a /etc/fstab

Reboot mesin yang kita gunakan agar group baru & user permission dapat di update.


start VirtualBox

VirtualBox &

Once you create a virtual machine and install an OS on it, you may want to set up a shared folder between the host and the guest. Suppose the name of the virtual machine is "winXP" and the folder you wish to share is at /home/user/shared. Power off the virtual machine and then do this :

VBoxManage sharedfolder add winXP -name "sharedfolder" -hostpath "/home/user/shared"

Now you can mount the shared folder within the guest. For a windows guest you would boot up and then in the terminal type

net use G: \\vboxsvr\sharedfolder

Now you should be able to access the shared folder from within the guest and the host systems. To access a USB device from the guest, select the device in the USB controller in VirtualBox and enable it. Remember that the device may not be accessible to the guest if it is mounted in the host.