`brew link unbound`返回`/ usr / local / sbin不可写'错误

时间:2018-01-15 08:57:34

标签: installation homebrew

我正在尝试使用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。

我该如何解决这个问题?

1 个答案:

答案 0 :(得分:5)

以下命令解决了我的问题。

sudo mkdir /usr/local/sbin
sudo chown -R $(whoami) /usr/local
brew link unbound