解决VMware中共享文件夹hgfs的权限问题

参考https://jarviswwong.com/ubuntu-vmware-hgfs-permissions-problem.html

问题:在VMware中的Ubuntu共享了目录发现/mnt/hgfs 一直都是root权限,而且hgfs没有写的权限 导致很多问题

网上试了很多方法发现都是无效的

比如:

chmod 777 -R
chown username:group /mnt/hgfs
usermod -aG vboxsf username
sudo chown username:username hgfs -R
sudo chmod 777 ./hgfs

都是无效的

解决方法

看到https://jarviswwong.com/ubuntu-vmware-hgfs-permissions-problem.html之后解决了问题

1.如果之前已经挂载 hgfs,先取消挂载

sudo umount /mnt/hgfs

2.重新用以下命令挂载即可

sudo /usr/bin/vmhgfs-fuse .host:/ /mnt/hgfs -o allow_other -o uid=1000 -o gid=1000 -o umask=022

【注意】上面命令中的 uid 和 gid 需要根据 ubuntu 用户 uid 来决定,在home目录输入id 命令即可查询。

UserName@UserName:~$ id
uid=1000(UserName) gid=1000(UserName) 组=1000(UserName),4(adm),24(cdrom),27(sudo),30(dip),46(plugdev),116(lpadmin),126(sambashare)
username

如果出现下面错误

UserName@UserName:/mnt$ sudo /usr/bin/vmhgfs-fuse .host:/ /mnt/hgfs -o allow_other -o uid=1000 -o gid=1000 -o umask=022
fuse: mountpoint is not empty
fuse: if you are sure this is safe, use the 'nonempty' mount option

把命令改为

sudo /usr/bin/vmhgfs-fuse .host:/ /mnt/hgfs -o nonempty -o allow_other -o uid=1000 -o gid=1000 -o umask=022

即可成功

3.查看权限ll或ls -l

UserName@UserName:/mnt$ ll
总用量 25
drwxrwxrwx  6 UserName root     4096 6月   9 10:17 ./
drwxr-xr-x 25 root     root     4096 6月  11 11:04 ../
drwxrwxrwx  2 UserName root     4096 6月   9 10:17 cdr/
drwxr-xr-x  2 UserName root     4096 6月   9 10:13 cdrom/
drwxr-xr-x  2 UserName root     4096 6月   9 10:12 chrom/
drwxr-xr-x  1 UserName UserName 4192 6月  18 11:11 hgfs/

可以看到已经修改成功【其中除了hgfs的其他文件夹的所有者是UserName,是之前在超级用户权限下用chmod -hR UserName /mnt修改导致的,但是改不了hgfs文件夹的所有者】

对比修改之前的

drwxrwxrwx  6 UserName root 4096 6月   9 10:17 ./
drwxr-xr-x 25 root     root 4096 6月  11 11:04 ../
drwxrwxrwx  2 UserName root 4096 6月   9 10:17 cdr/
drwxr-xr-x  2 UserName root 4096 6月   9 10:13 cdrom/
drwxr-xr-x  2 UserName root 4096 6月   9 10:12 chrom/
dr-xr-xr-x  1 root     root 4192 6月  18 10:48 hgfs/

可以看到已经成功修改了hgfs的权限

你可能感兴趣的:(Linux)