我怎样才能使目录可写?

我怎样才能使一个目录从OS Xterminal写入?

chmod 777 <directory>

这会给你执行/读/写权限。 你可以玩数字来微调你想要的权限。

这里是伟大的例子的维基 。

 chmod +w <directory> 
  • chmod +w <directory>chmod a+w <directory> – 为用户,组和其他人写入权限

  • chmod u+w <directory> – 为用户写入权限

  • chmod g+w <directory> – 为组写入权限

  • chmod o+w <directory> – 为其他人写入权限

要使父目录以及所有其他子目录可写,只需添加-R

 chmod -R a+w <directory> 
 chmod 777 <directory> 

这不是全部改变,只是一个文件

 chmod -R a+w <directory> 

这确定