
###問題点
/usr/local/sbin
が存在しないので、その対応策を知りたい。
###詳細
現在Homebrewでphp71のインストール作業をしています。しかし上手く行かず、brew doctor
で確認したところ、リンク作成の段階でエラーが発生していることがわかりました。
$ brew doctor Please note that these warnings are just used to help the Homebrew maintainers with debugging if you file an issue. If everything you use Homebrew for is working fine: please don't worry or file an issue; just ignore this. Thanks! Warning: You have unlinked kegs in your Cellar Leaving kegs unlinked can lead to build-trouble and cause brews that depend on those kegs to fail to run properly once built. Run `brew link` on these: php71
解決するため、エラーメッセージ通りにbrew link php71
を実行したら、以下のエラーが出てしまいました。どうやらlinkのための/usr/local/sbin
へのアクセスが上手くいかないようです。そこでディレクトリの階層を確認したら、/usr/local/sbin
そのものが存在していませんでした。
$ brew link php71 Linking /usr/local/Cellar/php71/7.1.13_24... Error: Could not symlink sbin/php-fpm /usr/local/sbin is not writable.
このようなことはあるのでしょうか?また、存在しない場合の対応策があれば、ご教授頂ければと思います。
###試したこと
ダメ元でlocalディレクトリでsbinディレクトリを作成しようとしましたが、やはりダメでした・・・
$ mkdir sbin mkdir: sbin: Permission denied


回答3件
あなたの回答
tips
プレビュー