MacOS 文件权限

需求

MacOS下,文件分为只读/只写/读写权限,用户在修改系统管理的文件,需要获取文件的读写权限

权限问题提示:

  • You don’t have permission to save the file "***" in the folder "***"

  • Could not add write permission to the file because you do not own it. Try modifying the permissions of the file in the Finder or Terminal

  • 权限问题图片提示

解决办法

  • 命令行修改:
ls -l /opt ```查看opt文件夹的权限```
chmod 777 /opt ```修改所有用户的访问权限均为可读可写可执行(rwx)```
  • Finder设置: 在finder中打开对应的文件/文件夹,右键->显示简介->共享与权限->"+"->选择用户账号,"-+"号右边有个设置图标,选择本用户成为所有者,如图:




你可能感兴趣的:(MacOS 文件权限)