在虛擬機中設(shè)置好添加共享文件后,普通用戶并不能訪問mnt文件里的hgfs文件
切換成root后可以看到共享的文件
改權(quán)限不行,改用戶擁有者也不行
haima@haima-PC:/mnt$ ll ls: 無法訪問'hgfs': 權(quán)限不夠 總用量 0 d????????? ? ? ? ? ? hgfs haima@haima-PC:/mnt$ su 密碼: root@haima-PC:/mnt# ll 總用量 5 dr-xr-xr-x 1 root root 4192 8月 6 18:08 hgfs root@haima-PC:/mnt# chmod -R 777 hgfs/ chmod: 更改'hgfs/' 的權(quán)限: 沒有那個文件或目錄 root@haima-PC:/mnt# chown haima haima hgfs/ chown: 無法訪問'haima': 沒有那個文件或目錄 chown: 正在更改'hgfs/' 的所有者: 沒有那個文件或目錄
解決方法:
haima@haima-PC:~/Desktop$ id uid=1000(haima) gid=1000(haima) 組=1000(haima),7(lp),27(sudo),100(users),109(netdev),113(lpadmin),119(scanner),123(sambashare) haima@haima-PC:~/Desktop$ sudo /usr/bin/vmhgfs-fuse .host:/ /mnt/hgfs -o allow_other -o uid=1000 -oumask=022 -o nonempty [sudo] haima 的密碼: haima@haima-PC:~/Desktop$ cd /mnt/ haima@haima-PC:/mnt$ ll 總用量 5 drwxr-xr-x 1 haima root 4192 8月 6 18:17 hgfs haima@haima-PC:/mnt$ cd hgfs/ haima@haima-PC:/mnt/hgfs$ ll 總用量 4 drwxr-xr-x 1 haima root 4096 3月 27 12:47 work
[Haima的博客]
本文摘自 :https://blog.51cto.com/u