+1 vote
in Linux by
How do you change permissions under Linux?

1 Answer

0 votes
by

Assuming you are the system administrator or the owner of a file or directory, you can grant permission using the chmod command. Use + symbol to add permission or – symbol to deny permission, along with any of the following letters: u (user), g (group), o (others), a (all), r (read), w (write) and x (execute). For example, the command chmod go+rw FILE1.TXT grants read and write access to the file FILE1.TXT, which is assigned to groups and others.

Related questions

0 votes
asked May 9, 2021 in Linux by sharadyadav1986
0 votes
asked Jul 5, 2022 in Linux by sharadyadav1986
...