0% found this document useful (0 votes)
6 views

Chmod

The document discusses Linux file permissions including commands like touch, mkdir, ls and chmod. It explains the meaning of permissions for user, group and other as well as the numeric representation using bits.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
6 views

Chmod

The document discusses Linux file permissions including commands like touch, mkdir, ls and chmod. It explains the meaning of permissions for user, group and other as well as the numeric representation using bits.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

touch tkj3

mkdir tkj
ls
ls -l
ls -a

r = read
w = write
x = execute

3 kelompok
1 = user
2 = group
3 = other

rwx - rx - r
1 2 3

1 001
2 010
3 011
4 100
5 101
6 110
7 111

chmod 755 tk3


user = 7 = 111 = rwx
group = 5 = 101 = r-x
other = 0 = 000 = ---

ls -l
chmod 555 tkj3
ls -l

You might also like