Kali2020.1设置共享文件夹
程序员文章站
2023-12-23 19:01:51
...
1.在VMware添加共享文件夹
2.更新安装VMtools
apt update
apt install open-vm-tools-desktop fuse
3.创建目录
mkdir -p /mnt/hgfs/share
4.挂载共享文件夹
sudo /usr/bin/vmhgfs-fuse .host:/share /mnt/hgfs/share -o subtype=vmhgfs-fuse,allow_other
5.开机启动自动挂载共享文件夹
vim /etc/fstab
添加一行代码
.host:/share /mnt/hgfs/share fuse.vmhgfs-fuse allow_other 0 0