Hi,
I Googled alot and could not find this information.
I setup the share folder in the Virtual Machine, but I do not know how to setup in ubuntu Guest.

Thanks...
JeZ+Lee
SLNTHERO@aol.com

fla wrote:Prerequisites:
I will assume that you have already correctly installed VirtualBox guest additions for Linux and you also have already choosen the folder to share, user maual is giving perfet instructions for that and i cannot do better here.
Open your text editor and write the following text
substitute username with your actual username and winshare with the name of your shared folder. Save the file as vboxshare and give it execute permissions withCode: Select all
#!/bin/bash case "$1" in start) /bin/mount -t vboxsf -o uid=username,gid=username winshare /mnt/winshare ;; stop) # No-op ;; *) echo "Usage: vboxshare [start|stop]" >&2 exit 3 ;; esacFrom now on we need to be root so useCode: Select all
chmod +x vboxsharein debian orCode: Select all
su rootin ubuntu, and start paying attention to what we do, it's gonna be dangerousCode: Select all
sudo su.
Create the folder where we are going to mount, sosubstitute winshare with the name of your shared folder.Code: Select all
mkdir /mnt/winshare
Copy the script we did to the /etc/init.d/ directory withRegister the script to be started at boot withCode: Select all
cp vboxshare /etc/init.d/Ok we have finished just reboot and cross your fingers the folder sould be readable and writeble in /mnt/winshare or whatever the name you gave it.Code: Select all
update-rc.d vboxshare defaults
If something goes wrong you can unregister the script we created as root withCode: Select all
update-rc.d -f vboxshare remove