본문 바로가기
Linux

[Linux] Permission

by RTLog 2024. 3. 15.
728x90
반응형

안녕하세요. RTLog입니다.

 

리눅스에서 작업을 하시다보면, Permission에 의한 오류를 자주 만나곤 합니다. 

오늘은 Permission에 대해 작성해보겠습니다.

 

Permission

'$ls -al" 명령어를 입력한 결과를 살펴보겠습니다.

왼쪽부터 10개의 문자 d, -, r, w, x 등은 각 폴더/파일의 권한을 나타냅니다. 

ls -al

그리고 각 문자는 아래와 같은 속성을 나타냅니다. File Type을 (d, -, l)로 나타냅니다. 다음으로, 사용자, 그룹 그리고 다른 사용자들의 Read/Write/Executable 가능 여부를 명시합니다. 

Permission

이러한 권한은 linux의 "chmod" 명령어를 통해 변경할 수 있습니다. 

# 1. 8진수
$ chmod 777 temp.txt

# 2. 문자 활용
$ chmod a=rwx temp.txt  # a: 모든 사용자
$ chmod u=rwx temp.txt  # u: 파일 소유자
$ chmod g=rwx temp.txt  # g: 소유자의 그룹
$ chmod o=rwx temp.txt  # o: 기타 사용자

$ chmod u+w temp.txt
$ chmod g+rw temp.txt
$ chmod o-w temp.txt
$ chmod ug-x temp.txt
$ chmod u+x, go-w temp.txt

 

 

감사합니다.

728x90
반응형

'Linux' 카테고리의 다른 글

[Linux] C Shell Script - 사용자 입력, 인자  (0) 2024.03.26
[Linux] C Shell Script - 변수  (0) 2024.03.26
[Linux] Pipe  (0) 2024.03.14
[Linux] Redirection  (0) 2024.03.14
[Linux] 인용과 확장 - 인용  (0) 2024.03.14

let textNodes = document.querySelectorAll("div.tt_article_useless_p_margin.contents_style > *:not(figure):not(pre)"); textNodes.forEach(function(a) { a.innerHTML = a.innerHTML.replace(/`(.*?)`/g, '$1'); });