cc_staff
46
edits
No edit summary |
No edit summary |
||
Line 137: | Line 137: | ||
First, check (and record if needed) current permissions with | First, check (and record if needed) current permissions with | ||
<!--T:44--> | |||
ls -ld /home/$USER | ls -ld /home/$USER | ||
<!--T:45--> | <!--T:45--> | ||
The output should begin with: | The output should begin with: | ||
<!--T:46--> | |||
drwx------ | drwx------ | ||
<!--T:47--> | <!--T:47--> | ||
Line 152: | Line 152: | ||
This command will work to remove read and execute permissions for group and other users: | This command will work to remove read and execute permissions for group and other users: | ||
<!--T:49--> | |||
chmod go-rx /home/$USER | chmod go-rx /home/$USER | ||
<!--T:50--> | <!--T:50--> |