天天看點

記錄_Oh-My-ZSH 出現 Insecure completion-dependent directories detected 修複方法

Oh-My-ZSH 出現 Insecure completion-dependent directories detected 修複方法

Oh-My-ZSH出現如下所示問題:
[oh-my-zsh] Insecure completion-dependent directories detected:
drwxrwxrwx  7 root  admin  224  8 22 09:24 /usr/local/share/zsh
drwxrwxrwx  4 root  admin  128  7 15 14:11 /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.
           
修複方法:
$ sudo chown -R root:staff /usr/local/share/zsh
$ sudo chmod -R 755 /usr/local/share/zsh
           
可直接複制執行,效果相同:
sudo chown -R root:staff /usr/local/share/zsh && sudo chmod -R 755 /usr/local/share/zsh
           

繼續閱讀