[Unix Introduction] 3-3. Permissions

전민수·2023년 4월 17일
0

Unix Introduction

목록 보기
5/7

Permissions

파일이나 디렉토리에 대한 [User, Group, Others]의 권한.
3가지 권한이 있다.
1. Read
2. Write
3. Executable

chmod (change mod)

  1. Symbolic chmod

    <who>
ugoa
usergroupotherall
  1. Octal chmod commands

umask (user mask)

기본 권한(Default Permissions) 설정

  • mask = 000일 때, permissions
    • file : 666 - rw-rw-rw-
    • directory : 777 - rwxrwxrwx

mask code

$ umask _u_ _g_ _o_
코드의 각 자리 수가 user, group, other 각각의 permission에서 제외된 것이 default permisson이 됨.
ex) $ umask 227
file -r--r-----
dir dr-xr-x---

profile
Learning Mate

0개의 댓글