반응형
[Server구축/Tutorial] 권한 설정 |
http://egloos.zum.com/slog2/v/3546476
http://thinkpro.tistory.com/16
-
chmod
파일, 디렉토리 권한 수정
# chmod 755 file
# chmod o+rw file // others 에 rw 권한 부여
# chmod -R 755 directory // 해당 directory 내 모든 파일과 디렉토리의 권한 수정
-
umask
파일이 만들어질 때 허가권 기본값
# umask 022 // chmod 755 와 같다. 777 에서 빼는 개념
-
chown
파일 소유자, 소유 그룹 수정
# chown userName file
# chown userName:groupName file
# chown -cR userName:groupName directory // 해당 directory 내 모든 파일, 디렉토리의 소유자 변경
-
사용자에게 sudo 권한 주기
# sudo visudo // /etc/suroers 를 vi 로 띄움
suroers 파일의 User privilege specification 아래쪽에 사용자를 추가해주면 된다.
...
# User privilege specification
[userId] ALL=(ALL:ALL) ALL
반응형
'IT 놀이터 > Linux' 카테고리의 다른 글
[vi] shortcut for moving to the end of the line and the first char of the line (0) | 2017.07.04 |
---|---|
Docker 에 대한 이해 (0) | 2017.06.08 |
[Server구축/Tutorial] MySQL 설치 (0) | 2017.06.03 |
[Server구축/Tutorial] 계정 생성 (0) | 2017.05.28 |
[Server구축/Tutorial] Shell 기본 명령어들 (0) | 2017.05.27 |
댓글