You are not logged in.
Pages: 1
I have Q4OS installed as a VirtualBox guest on a Windows 10 host. I have added a shared folder to the Q4OS virtual machine. How do I access this shared folder on Q4OS? Thanks.
Offline
You need to run in terminal:
$ sudo mkdir /mnt/vboxdir
$ sudo mount -t vboxsf shared_folder_name /mnt/vboxdir
If you want to mount it permanently, add the following line to the '/etc/fstab/ file:
shared_folder_name /mnt/vboxdir1 vboxsf defaults,noauto 0 0
Offline
First make sure "shared_folder" is permanent : auto-mount "yes", access "full".
Start virtual machine.
"shared_folder" should now be mounted under /media/sf_shared_folder, user root and group vboxsf.
Make sure YOU are a member of group vboxsf to obtain full access.
Offline
Thank you Q4OS Team and chris_elvidge. I will give it a try. Wish me luck.
Offline
Okay, I am able to mount the Windows shared folder. However, I did add to the /etc/fstab, but it won't mount permanently. Here is a copy of my fstab. I am sure I probably made an error. Please advise. Thanks.
Offline
Is your shared folder really called "Windows_share"? Try without "noauto". Noauto stops automatic mount.
You really don't need an entry in fstab to make this work. "Windows_share" should mount automatically at "/media/sf_Windows_share"
Offline
Never mind. It seems to be working fine now. Thank you.
Offline
Pages: 1