| Tips Linux Explorers | All Things Linux Forum | Great Linux Links | LinuxClues.com | Hometown |
| CODE |
| # chmod 754 tessst.txt |
| CODE |
| # chown |
| CODE |
| # chown anna tessst.txt |
| CODE |
| # chgrp |
| CODE |
| # chown -R anna:anna docs |
Bruno
| QUOTE |
| chmod takes either the decimal representation of the permissions or a symbolic representation. The symbolic representation is [ugoa][+-][rwx]. This is one of the letters u (user=file owner), g (group), o(others), a(all=u and g and o) followed by + or - to add or remove permissions and then the symbolic representation of the permissions in the form of r(read) w(write) x(execute). To make the file "file.txt" writable for all you type: "chmod a+w file.txt" |
| Tips Linux Explorers | All Things Linux Forum | Great Linux Links | LinuxClues.com | Hometown |