美文网首页
MacOS 文件权限

MacOS 文件权限

作者: 突刺刺 | 来源:发表于2018-06-07 12:07 被阅读15次

    需求

    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 文件权限

          本文链接:https://www.haomeiwen.com/subject/orzwsftx.html