Calculate Linux file permissions with ease. Convert between numeric (755) and symbolic (rwxr-xr-x) notation. Understand what each permission bit means for security.
Linux file permissions control who can read (r=4), write (w=2), and execute (x=1) files. Permissions are set for three groups:
chmod 755 filename
755 Scripts, directories
644 Regular files
777 Full access (risky!)
600 Private files
700 Private scripts
400 SSH keys