如何从OS X终端使目录可写?
Answers:
chmod +w <directory>
或chmod a+w <directory>
-用户,组和其他人的写权限
chmod u+w <directory>
-用户的写权限
chmod g+w <directory>
-组的写权限
chmod o+w <directory>
-为他人写许可
sudo chmod +w <dir>
,它是行不通的-但a+w
工作。
要使父目录以及所有其他子目录可写,只需添加-R
chmod -R a+w <directory>
sudo
为了避免权限被拒绝(无法更改文件模式)错误,请使用Admin特权执行。
sudo chmod 777 <directory location>