This guide will walk you through steps on how to setup a VirtualBox shared folder inside your Ubuntu Server guest. Tested on ubuntu-18.10-desktop-amd64
-
Open VirtualBox
-
Right-click your VM, then click Settings
-
Go to Shared Folders section
-
Add a new shared folder
-
On Add Share prompt, select the Folder Path in your host that you want to be accessible inside your VM.
-
In the Folder Name field, type
shared
-
Uncheck Read-only and Auto-mount, and check Make Permanent
-
Start your VM
-
Once your VM is up and running, go to Devices menu -> Insert Guest Additions CD image menu
-
Use the following command to mount the CD:
sudo mount /dev/cdrom /media/cdrom
- Install dependencies for VirtualBox guest additions:
sudo apt-get update
sudo apt-get install build-essential linux-headers-`uname -r`
- Run installation script for the guest additions.
sudo /media/cdrom/./VBoxLinuxAdditions.run
If this isn't the first time, it may have already been mounted. If so, you should see an icon on the Desktop. Open that location in a terminal:
cd /media/<username>/VBox_GAs_6.0.4
sudo ./VBoxLinuxAdditions.run
- Reboot VM
sudo shutdown -r now
- Create "shared" directory in your home
mkdir ~/shared
- Mount the shared folder from the host (named as
VM_shared_folder
) to your ~/shared directory
sudo mount -t vboxsf VM_shared_folder ~/shared
- The host folder should now be accessible inside the VM.
cd ~/shared
This directory mount we just made is temporary and it will disappear on next reboot. To make this permanent, we'll set it so that it will mount our ~/shared
directory on system startup
- Edit fstab file in /etc directory
sudo nano /etc/fstab
- Add the following line to fstab (separated by tabs) and press Ctrl+O to Save.
shared /home/<username>/shared vboxsf defaults 0 0
- Edit modules
sudo nano /etc/modules
- Add the following line to
/etc/modules
and save
vboxsf
- Reboot the vm and log-in again
shutdown -r now
- Go to your home directory and check to see if the file is highlighted in green.
cd ~
ls
If it is then congratulations! You successfully linked the directory within your vm with your host folder.
How to point apache's web directory to our folder in the host.
- Remove apache's old
html
directory (WARNING! Backup your data if necessary)
sudo rm -rf /var/www/html
- Add a symbolic link in its place
sudo ln -s ~/shared /var/www/html