美文网首页Other
[other] zsh compinit: insecure d

[other] zsh compinit: insecure d

作者: 何幻 | 来源:发表于2021-02-09 10:02 被阅读0次
    # Mac OS  Sierra (10.12) 
    
    $ source ~/.zshrc
    
    [oh-my-zsh] Insecure completion-dependent directories detected:
    drwxrwxr-x  3 thzt  admin  102  2  8 22:19 /usr/local/share/zsh
    drwxrwxr-x  3 thzt  admin  102  2  8 22:31 /usr/local/share/zsh/site-functions
    
    [oh-my-zsh] For safety, we will not load completions from these directories until
    [oh-my-zsh] you fix their permissions and ownership and restart zsh.
    [oh-my-zsh] See the above list for directories with group or other writability.
    
    [oh-my-zsh] To fix your permissions you can do so by disabling
    [oh-my-zsh] the write permission of "group" and "others" and making sure that the
    [oh-my-zsh] owner of these directories is either root or your current user.
    [oh-my-zsh] The following command may help:
    [oh-my-zsh]     compaudit | xargs chmod g-w,o-w
    
    [oh-my-zsh] If the above didn't help or you want to skip the verification of
    [oh-my-zsh] insecure directories you can set the variable ZSH_DISABLE_COMPFIX to
    [oh-my-zsh] "true" before oh-my-zsh is sourced in your zshrc file.
    
    zsh compinit: insecure directories, run compaudit for list.
    Ignore insecure directories and continue [y] or abort compinit [n]?
    
    $ sudo chown -R root:staff /usr/local/share/zsh
    $ sudo chmod -R 755 /usr/local/share/zsh  
    

    相关文章

      网友评论

        本文标题:[other] zsh compinit: insecure d

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