VirtualBox shared folders: Difference between revisions
m (added todo) |
(+ permanent shares 3.17) |
||
Line 7: | Line 7: | ||
{{Cmd|modprobe -a vboxsf | {{Cmd|modprobe -a vboxsf | ||
mount -t vboxsf vbox_shared /mnt/outside}} | mount -t vboxsf vbox_shared /mnt/outside}} | ||
=== Permanent shares === | |||
To set up a permanent share, enable vboxsf module and mount at startup. | |||
Change ''vbox_shared'' to your foldername in Virtualbox dialog, maybe adjust the path /mnt/outside twice to your needs. | |||
{{Cmd|echo vboxf > /etc/modules-load.d/vboxsf.conf | |||
rc-update add local default | |||
mkdir /mnt/outside | |||
echo mount -t vboxsf ''vbox_shared'' /mnt/outside > /etc/local.d/outside.start | |||
chmod +x /etc/local.d/outside.start}} | |||
Reboot system | |||
== 3.7 and previous == | == 3.7 and previous == |
Revision as of 03:08, 8 January 2023
3.8 and newer
As of 3.8 release, simply enable the Community repo in /etc/apk/repositories then run:
apk add virtualbox-guest-additions virtualbox-guest-modules-virt
Reboot system
modprobe -a vboxsf mount -t vboxsf vbox_shared /mnt/outside
To set up a permanent share, enable vboxsf module and mount at startup. Change vbox_shared to your foldername in Virtualbox dialog, maybe adjust the path /mnt/outside twice to your needs.
echo vboxf > /etc/modules-load.d/vboxsf.conf rc-update add local default mkdir /mnt/outside echo mount -t vboxsf vbox_shared /mnt/outside > /etc/local.d/outside.start chmod +x /etc/local.d/outside.start
Reboot system
3.7 and previous
Install virtualbox-guest-additions and virtualbox-guest-modules-virthardened at first:
apk add virtualbox-guest-additions virtualbox-guest-modules-virthardened
The following error may occur:
ERROR: unsatisfiable constraints: virtualbox-guest-additions (missing): required by: world[virtualbox-guest-additions] virtualbox-guest-modules-virthardened (missing): required by: world[virtualbox-guest-modules-virthardened]
If the error occurs, make sure your alpine version is greater than v3.6 and alpine community repo is enabled:
echo "http://dl-cdn.alpinelinux.org/alpine/edge/community" >> /etc/apk/repositories
Update respository indexes from all remote repositories, then install guest modules and reboot:
apk update apk add virtualbox-guest-additions virtualbox-guest-modules-virthardened reboot
Goto Device > Shared Folders > Shared Folder Settings ...
add a directory mapping like this:
Mount it to alpine:
mkdir /mnt/outside mount -t vboxsf vbox_shared /mnt/outside
which vbox_shared
is your folder name and /mnt/outside
is the mounting point.
After this step the following error may occur:
mount: mounting vbox_shared on /mnt/outside failed: No such device
If the error occurs, run command below:
modprobe -a vboxsf mount -t vboxsf vbox_shared /mnt/outside
And you will see /tmp/vbox_shared
and /mnt/outside
are connected.
P.S. Alpine will raise error "Invalid argument" if virtualbox-guest-additions
is not installed when mounting drive.
VirtualBox will raise error "Guest Additions unavailable" if virtualbox-guest-modules-virthardened
is not installed when adding shared path.