我正在尝试使用 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
链接到未绑定(bind)的 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。
我怎么解决这个问题?
最佳答案
以下命令解决了我的问题。
sudo mkdir /usr/local/sbin
sudo chown -R $(whoami) /usr/local
brew link unbound