Umask Created Files Created Directories ------------------------------------------------------------- 000 666 (rw-rw-rw-) 777 (rwxrwxrwx) 002 664 (rw-rw-r--) 775 (rwxrwxr-x) 022 644 (rw-r--r--) 755 (rwxr-xr-x) 027 640 (rw-r-----) 750 (rwxr-x---) 077 600 (rw-------) 700 (rwx------) 277 400 (r--------) 500 (r-x------)
#Phân quyền 755 cho tất cả các folder trong /home/thehai/
Trả lờiXóaroot@wisehome:~# find /home/thehai/ -type d -exec chmod 755 {} +
#Phân quyền 644 cho tất cả các file trong /home/thehai/
root@wisehome:~# find /home/thehai/ -type f -exec chmod 644 {} +