I got the error message 「unknown filesystem type vboxsf」 while I was trying to share a directory from my Windows XP host to Ubuntu Interpid Ibex (8.10). In almost every where it said to install Guest additions. After spending few hours I found the solution. So decided to share with you for reference. ide
Step 1: Install host additions (usually you install them when you install virualbox). spa
Step 2: If you have created a new machine, then create a shared directory/folder. (From the machine’s Devices menu) ci
Step 3: From machine’s Devices menu, select 「Install guest additions」 it
Step 4: Now in the guest (Ubuntu Ibex Interpid for my case), fire up a console and type the following: io
1
|
sudo
/media
/cdrom
/VBoxLinuxAdditions-x86.run
|
It should install the additions. console
Step 5: Now create a directory where you want to mount your shared drive. For example I have created shared directory under mount using following: table
1
2 3 |
#cd /media
#sudo mkdir shared |
Step 6: Mount using following command: file
1
|
sudo
mount
-t vboxsf shared
/media
/shared
|
Note that shared was the name of the directory I shared from virtual box and /media/shared is the directory where I wanted to mount my shared directory. select
Now you should be able to see the files under shared directory in both system. command
Enjoy!