1
sugarit 2013-05-15 15:35:55 +08:00
试试 磁盘工具->修复权限
|
3
octopus_new 2013-05-15 17:04:14 +08:00
直接chmod -R 777 [你的目录], 这样就可以吧,你的那个文件件现在用户没有任何rxw权限,组和others有r和x权限,很奇怪.....
|
4
ooxxcc 2013-05-15 17:12:21 +08:00 1
try chmod with -N
from `man chmod`: -i Removes the 'inherited' bit from all entries in the named file(s) ACLs. -I Removes all inherited entries from the named file(s) ACL(s). -N Removes the ACL from the named file(s). |
5
octopus_new 2013-05-15 17:18:31 +08:00
@ooxxcc 以前上学的时候就不爱审题,现在依然审题错误,还是你给的答案靠谱,哈哈
|
6
ooxxcc 2013-05-15 17:39:43 +08:00
|
7
cicada OP |
8
ybf1220 2013-05-18 10:55:02 +08:00
setfacl 试试看,估计原来的 acl 权限你可能已经不知道具体的内容了。
getfacl 在 linux 下是查看具体权限的 |
9
allenhsu 2013-05-19 16:41:54 +08:00
sudo chown & chmod 也不管用么?(-RF)
|
10
dorentus 2013-05-19 21:02:31 +08:00
@ybf1220 Mac 下没带这两个命令。4 楼的内容是正解。添加/修改 ACL 也是用的 /bin/chmod。
ref: https://developer.apple.com/library/mac/#documentation/Darwin/Reference/Manpages/man1/chmod.1.html |