secu@secu-VirtualBox:~$ ls
copy2.txt test2 공개 문서 비디오 음악
test.tar test_move 다운로드 바탕화면 사진 템플릿
# copy2.txt에 대한 권한 확인(소유자 읽기 쓰기, 그룹 읽기 쓰기, 기타 사용자 읽기 권한)
secu@secu-VirtualBox:~$ ls -l copy2.txt
-rw-rw-r-- 1 secu secu 0 12월 16 15:05 copy2.txt
# copy2.txt의 소유자(u)에 쓰기 권한 제거(-w)
secu@secu-VirtualBox:~$ chmod u-w copy2.txt
secu@secu-VirtualBox:~$ ls -l copy2.txt
-r--rw-r-- 1 secu secu 0 12월 16 15:05 copy2.txt ← -rw가 -r-로, 3번째 w가 -로 변경
# 비트를 이용해 소유자, 그룹, 기타 사용자 권한 변경
secu@secu-VirtualBox:~$ chmod 644 copy2.txt
# 6(rw-), 4(r--), 4(r--)로 파일 권한 변경
secu@secu-VirtualBox:~$ ls -l copy2.txt
-rw-r--r-- 1 secu secu 0 12월 16 15:05 copy2.txt