VMWare中ubuntu挂载共享文件夹

2023-10-21 11:05:19 浏览数 (1)

挂载共享目录前需要先安装open-vm-tools

代码语言:javascript复制
apt install open-vm-tools -y

手动挂载:

代码语言:javascript复制
mount -t fuse.vmhgfs-fuse .host:/ /mnt/hgfs -o allow_other

自动挂载:

代码语言:javascript复制
echo ".host:/    /mnt/hgfs    fuse.vmhgfs-fuse    auto,allow_other    0    0" >> /etc/fstab && mount -a

0 人点赞