我正在尝试使用brew
命令安装unbound。
这是brew install unbound
的输出:
Warning: unbound 1.6.7 is already installed, it's just not linked.
You can use `brew link unbound` to link this version.
如您所见,我被要求使用brew link unbound
链接到未绑定的1.6.7。
但我没有链接到它,因为我收到以下错误:
Linking /usr/local/Cellar/unbound/1.6.7...
Error: Could not symlink sbin/unbound
/usr/local/sbin is not writable.
我有另一个stackoverflow here。
答案sudo chown -R $(whoami) /usr/local
会产生以下错误:
chown: /usr/local: Operation not permitted
我正在使用macOS High Sierra版本10.13.2。
我该如何解决这个问题?
答案 0 :(得分:5)
以下命令解决了我的问题。
sudo mkdir /usr/local/sbin
sudo chown -R $(whoami) /usr/local
brew link unbound