1

I made a sharefolder on vmbox.

I typed

sudo mount -t vboxsf /home/paatubo/Desktop/vmshare/

But it showed the following message as response:

mount: can't find /home/paatubo/Desktop/vmshare in /etc/fstab

How can I fix it?

Zanna
  • 72,312
patron
  • 9

1 Answers1

1

You need to specify the source folder on your mount command. I assume in this case it will be:

sudo mount -t vboxsf **[shared folder on vmbox]** /home/paatubo/Desktop/vmshare/
muru
  • 207,228