2022이전/Linux
chmod 권한
바로퇴장
2020. 5. 14. 16:44
예시)
#ls -l dr-xr-xr-x. root root 0 May 14 10:33 proc drwxrwxrwx. root root 6 May 14 15:26 remote
d : 디렉토리
-
r : read
-
\- : disable
-
w : write
-
x : excute
앞 3 : 소유주
중 3 : 그룹
뒤 3 : 그외 사용자
ex> d r-x r-x r-x a.txt
101 101 101 => chmod 755 a.txt
chmod 775 a.txt //a.txt 권한을 775로 부여한다.