如何挂载共享文件夹的子文件夹?

如何挂载共享文件夹的子文件夹?

我使用此命令在我的虚拟机中安装共享文件夹:

sudo mount -t vboxsf vm_shared ~/shared/

是否可以安装一个子文件夹在 vm_shared 内到 ~/shared/ ?

答案1

(另外)在 VirtualBox 中导出该子目录并以相同的方式安装它,或者将主文件夹安装到临时安装点并使用绑定安装将子目录安装到实际位置:

mount -t vboxsf vm_shared /mnt
mount --bind /mnt/subdir ~/shared/

答案2

或者,mount --bind...试试这个:

ln -s /mnt/subdir ~/shared/

相关内容