Snow Leopard에서 Mountain Lion으로 업그레이드하면 제가 사용하는 소프트웨어에 많은 영향이 생겼습니다. 내 시스템과 다른 소프트웨어(Homebrew 사용)에서 일부 Ruby gem을 업데이트하고 설치하려고 시도하는 동안 이 오류 메시지가 나타납니다.
Warning: The /usr/local directory is not writable.
Even if this directory was writable when you installed Homebrew, other
software may change permissions on this directory. Some versions of the
"InstantOn" component of Airfoil are known to do this.
You should probably change the ownership and permissions of /usr/local
back to your user account.
/usr/local의 소유권과 권한을 내 사용자 계정으로 다시 변경하는 방법을 아는 사람이 있습니까?
답변1
Homebrew는 수행할 작업을 알려줍니다.
/usr/local의 소유권과 권한을 다시 사용자 계정으로 변경해야 합니다.
이를 위해 우리는 chown
귀하의 사용자를 다음의 소유자로 사용하고 (반복적으로) 설정합니다 /usr/local
.
sudo chown -R $(whoami) /usr/local
이 GitHub Gist는 동일한 작업을 수행하며 약간 더 많은 작업을 수행하며 완전히 작동하는 Homebrew를 다시 가져오는 데 필요할 수도 있고 필요하지 않을 수도 있습니다.Homebrew의 /usr/local에 대한 권한 수정