Changes

1,879 bytes added ,  04:38, 21 May 2009
Mounting hard drive images, USB images, shares
Line 1: Line 1:  
{{TOCright}}
 
{{TOCright}}
[[wikipedia:VirtualBox|VirtualBox]] is an x86 virtualization system available as either GPL or commercial software. It runs on either Win32 or Linux host machines, allowing you to run OLPC images within the virtual machine. The commercial version adds functions such as [https://help.ubuntu.com/community/VirtualBox/USB USB device support].
+
[[wikipedia:VirtualBox|VirtualBox]] is an x86 virtualization system available as either GPL or commercial software. It runs on either Win32 or Linux host machines, allowing you to run OLPC images within the virtual machine. The following instructions are for VirtualBox OSE (Open Source Edition), which is available in packages in many Linux distributions. You can also download it and its documentation from the [http://www.virtualbox.org/ VirtualBox.org]] Web site.
    
==Sugar on a Stick==
 
==Sugar on a Stick==
Line 65: Line 65:  
# Click Next.
 
# Click Next.
 
# From now on you can start VirtualBox and start the "Sugar" virtual machine
 
# From now on you can start VirtualBox and start the "Sugar" virtual machine
 +
 +
==Mounting Drives==
 +
 +
===Hard Drives===
 +
 +
When booting from a CD image, with a hard drive image attached, you can mount the hard drive by creating an empty directory to mount it on. The form of the command is
 +
 +
$ mount -t ext3 /dev/sda1 /mnt/drive
 +
 +
for the first hard drive. The mount point can be anywhere you have permission to create a directory, although /mnt and ~/mnt are the usual choices.
 +
 +
This gives you a place to save files that cannot be written to CDs.
 +
 +
===USB===
 +
 +
USB access is not available in the Open Source Edition of VirtualBox.
 +
 +
In order to access USB storage devices, the user must have access to the usbfs file system. The permissions for usbfs can be changed by editing the /etc/fstab file.
 +
 +
For example, most Linux distributions have a user group called usb or similar, of which the current user must be a member. To give all users of that group access to usbfs, make sure the following line is present in /etc/fstab:
 +
 +
# 85 is the USB group
 +
none /proc/bus/usb usbfs devgid=85,devmode=664 0 0
 +
 +
Replace 85 with the group ID that matches your system (search /etc/group for "usb" or similar).
 +
 +
After this, you should be able to mount real USB drives in the normal manner.
 +
 +
===Shared Directories===
 +
 +
In order to access a directory on your real hard drive, VirtualBox needs the Guest Additions installed.
 +
 +
Mount the VBoxGuestAdditions.iso file
 +
 +
Change to the directory where your CD-ROM drive is mounted and execute as root:
 +
 +
sh ./VBoxLinuxAdditions-x86.run
 +
 +
In a 64-bit Linux guest, use VBoxLinuxAdditions-amd64.run instead.
 +
 +
After this installation, you can create a share in the VirtualBox GUI, and mount it in somewhat the normal way, but with the vboxsf file system type.
 +
 +
mount -t vboxsf [-o OPTIONS] sharename mountpoint
 +
 
==Resources==
 
==Resources==
 
* http://www.virtualbox.org/
 
* http://www.virtualbox.org/
 
* [[OLPC:VirtualBox]]
 
* [[OLPC:VirtualBox]]
 
* [http://fedorasolved.org/Members/realz/VB_Guest_Addition How To Install Virtualbox Guest Additions in Fedora Guest]
 
* [http://fedorasolved.org/Members/realz/VB_Guest_Addition How To Install Virtualbox Guest Additions in Fedora Guest]
 +
 
[[Category:HowTo]]
 
[[Category:HowTo]]
1,009

edits