记录 oh-my-zsh 问题
技.技术研究125 阅读约 5 分钟
记录一些 oh-my-zsh 问题
启动 iTerm 控制台抛错如下
Last login: Mon May 28 13:35:31 on ttys001
You have mail.
[oh-my-zsh] Insecure completion-dependent directories detected:
drwxrwxrwx 7 hans admin 238 2 9 10:13 /usr/local/share/zsh
drwxrwxrwx 6 hans admin 204 10 1 2017 /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.
解决方法
chmod 755 /usr/local/share/zsh
chmod 755 /usr/local/share/zsh/site-functions
启动 iTerm 控制台抛错如下
zsh compinit: insecure directories, run compaudit for list.
Ignore insecure directories and continue [y] or abort compinit [n]? y
解决方法:
使用: compaudit 命令查看被标记为不安全的文件夹。
修改一下权限 :
sudo chown -R root:staff /usr/local/share/zsh
sudo chmod -R 755 /usr/local/share/zsh
source ~/.zshrc
启动 iTerm 控制台抛错如下
zsh compinit: insecure files, run compaudit for
zsh compinit: insecure files, run compaudit for list.
Ignore insecure directories and continue [y] or abort compinit [n]?
输入 compaudit 后输出如下:
/usr/local/share/zsh/site-functions/_brew
/usr/local/share/zsh/site-functions/_brew_cask
/usr/local/share/zsh/site-functions/_brew_services
/usr/local/share/zsh/site-functions/_carthage
解决方法:
多次尝试该权限无果,解决办法如下,需要更新4个文件的所有者:
sudo chown root /usr/local/share/zsh/site-functions/_brew
Cheers~
相关文章
评论 (0)
还没有评论,来抢沙发
