EN 首页

Unix permission helper

Chmod 计算器

Toggle permissions visually and get octal + symbolic modes instantly, with plain-language explanation for each position.

数字结果

符号结果

chmod 755 <file>

u

所有者

Owner: read, write, execute

g

Group: read, execute

o

其他

Others: read, execute

Special bits (optional)

Leading octal digit controls these: 4=setuid, 2=setgid, 1=sticky.

Position-by-position explanation

Pos 1

r

Owner read

Pos 2

w

Owner write

Pos 3

x

Owner execute

Pos 4

r

Group read

Pos 5

-

Group write

Pos 6

x

Group execute

Pos 7

r

Others read

Pos 8

-

Others write

Pos 9

x

Others execute

755 = rwxr-xr-x