Anda mungkin ingin mengubah izin untuk beberapa file dan folder. Ini dapat dilakukan dengan chmod perintah cangkang.
Sintaks untuk chmod perintahnya adalah:
root@web [/scripts]# chmod --help
Usage: chmod [OPTION]... MODE[,MODE]... FILE...
or: chmod [OPTION]... OCTAL-MODE FILE...
or: chmod [OPTION]... --reference=RFILE FILE...
Change the mode of each FILE to MODE.
With --reference, change the mode of each FILE to that of RFILE.
-c, --changes like verbose but report only when a change is made
-f, --silent, --quiet suppress most error messages
-v, --verbose output a diagnostic for every file processed
--no-preserve-root do not treat '/' specially (the default)
--preserve-root fail to operate recursively on '/'
--reference=RFILE use RFILE's mode instead of MODE values
-R, --recursive change files and directories recursively
--help display this help and exit
--version output version information and exit
Untuk mengubah izin semua file di /home/username/public_html menjadi 600, gunakan:
find /home/username/public_html -type f -exec chmod 600 {} \;
Untuk mengubah izin semua direktori di /home/username/public_html ke 755, gunakan:
find /home/username/public_html -type d -exec chmod 755 {} \;
Untuk mengubah izin semua file dan direktori di /home/username/public_html menjadi 600, gunakan:
chmod 644 /home/username/public_html -R
Dalam contoh di atas, gunakan nilai yang diinginkan untuk izin (seperti 600, 700, dll.).