美文网首页
Running Homebrew as root is extr

Running Homebrew as root is extr

作者: 柠檬草YF | 来源:发表于2018-03-02 11:49 被阅读825次
    Running Homebrew as root is extremely dangerous and no longer supported.
    As Homebrew does not drop privileges on installation you would be giving all
    build scripts full access to your system.
    

    解决思路就是给当前用户添加目录权限:
    如果用户名 是 123

    sudo chown -R 123 /usr/local
    

    如果用户名 是 a b c, 有空格

    sudo chown -R "a b c" /usr/local
    ``

    相关文章

      网友评论

          本文标题:Running Homebrew as root is extr

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