29

Homebrewをインストールしました。私が実行するbrew doctorと、これを取得します

Warning: Some directories in /usr/local/share/man aren't writable.
This can happen if you "sudo make install" software that isn't managed
by Homebrew. If a brew tries to add locale information to one of these
directories, then the install will fail during the link step.
You should probably `chown` them:

    /usr/local/share/man/de

"あなたはおそらくそれらを「chown」するべきです" とはどういう意味ですか? 誰かが Homebrew が私に何をしたいのか正確に説明できますか?

4

4 に答える 4

66

chownファイルの所有権を変更する unix コマンドも同様です。

/usr/local/share/man/deHomebrew は、Homebrew が書き込めるようにの所有権を変更するように私に求めています。Homebrew は私と同じパーミッションで実行されるので、自分自身をファイルの所有者にすることで問題が解決するはずです。

以下を実行すると、問題が修正されます。

sudo chown $(whoami) /usr/local/share/man/de
于 2013-06-20T21:10:10.390 に答える
3

実際、単純なコマンドですべての作業を行う必要があります。
sudo chown $(whoami) /usr/local/share/man/*/man1

于 2015-05-01T02:11:59.023 に答える