nix:permissions
Differences
This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
| nix:permissions [2014/12/01 10:27] – created kauffman | nix:permissions [2017/09/15 17:03] (current) – [Permissions] kauffman | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | ====== Permissions ====== | ||
| + | [[http:// | ||
| + | |||
| + | |||
| + | ===== Securing a directory ===== | ||
| + | You're here because you heard that this would a good idea. There are going to be many ways to ensure a directory is ' | ||
| + | |||
| + | I will assume that you are the only person that will need access to said directory. I also will not try to explain unix permissions to you. If you want to know more I suggest you read the link at the top of this page. Follow along below to create a directory that only you will be able to access. | ||
| + | |||
| + | Given a directory '' | ||
| + | < | ||
| + | chown $USER:$USER foo | ||
| + | </ | ||
| + | $USER will translate to your username, but we recommend you actually type out your username. | ||
| + | This will set the user and the group to $USER. | ||
| + | |||
| + | |||
| + | Now make sure that only the user field can has access to the directory. | ||
| + | < | ||
| + | chmod 700 foo | ||
| + | </ | ||
| + | |||
| + | |||
| + | ==== I have a directory structure full of files and I want to ensure no one else can read them ==== | ||
| + | I got your back. | ||
| + | |||
| + | < | ||
| + | chmod -R go-rwx foo | ||
| + | |||
| + | -R: recursive. | ||
| + | g: select group permission | ||
| + | o: select other permission | ||
| + | -: remove | ||
| + | r: read permission | ||
| + | w: write permission | ||
| + | x: execute permission | ||
| + | </ | ||
| + | We are asking '' | ||
| + | |||
| - | ((http:// | ||
/var/lib/dokuwiki/data/attic/nix/permissions.1417451277.txt.gz · Last modified: 2014/12/01 10:27 by kauffman