이러한 사용 권한을 가진 폴더에 어떻게 액세스 할 수 있습니까?
터미널을 통과하려고 할 때 :
superUser99:tmp superUser99$ cd launchd
-bash: cd: launchd: Permission denied
답변
당신이 사용할 수있는 sudo -s
루트 쉘을 열려면, cd
디렉토리에 넣고 거기서 일을하십시오 (여전히 루트로서) :
$ cd /private/var/tmp
$ sudo -s
Password:
# cd launchd # Now running as root; note the changed command prompt
# ls -l
total 0
srwx------ 1 root wheel 0 Mar 24 20:46 sock
# exit # This exits the root shell, taking me back to normal
$
명령을 루트로 실행하는 동안 매우 신중해야합니다. OS X을 끔찍하게 실수 한 작은 실수와 루트 액세스로 깨는 것은 아주 쉽습니다 …