Difference between revisions of "Linux configuration"
m (→Set permissions: fix font) |
|||
Line 16: | Line 16: | ||
== Set permissions == | == Set permissions == | ||
+ | By default other users cannot see your files, which makes it hard for others to help you. To make the files related to your project readable for members of the theoretical chemistry group follow these instructions: | ||
+ | |||
First check whether you are a member of the <tt>thchem</tt> group, using the command | First check whether you are a member of the <tt>thchem</tt> group, using the command | ||
Line 21: | Line 23: | ||
If <tt>thchem</tt> is not in the output, ask [https://www.theochem.ru.nl/~gerritg Gerrit] or [https://www.theochem.ru.nl/~hcuppen Herma]. | If <tt>thchem</tt> is not in the output, ask [https://www.theochem.ru.nl/~gerritg Gerrit] or [https://www.theochem.ru.nl/~hcuppen Herma]. | ||
+ | |||
+ | For security, make your files only accessible to yourself and members of the theoretical chemistry group, but no one else: | ||
+ | |||
+ | cd # go to your home directory | ||
+ | chmod 750 . # the dot means "current directory" | ||
+ | chgrp thchem . # give members of the thchem group access to your files | ||
+ | ls -ld . # have a look at the settings for your home directory | ||
+ | |||
+ | Files that are not in the thchem group can still not be read by others. | ||
+ | |||
+ | Create a directory where you keep files for your theoretical chemistry project: | ||
+ | |||
+ | mkdir projects | ||
+ | |||
+ | You can make this directory accessible to theoretical chemistry members using the <tt>chmod</tt> and <tt>chgrp</tt> commands, but there is a script that will do this for you: | ||
+ | |||
+ | /vol/thchem/bin/for_theory.sh ~/projects # the tilde (~) refers to your home directory | ||
+ | |||
+ | You may want to organize your files in subdirectories, e.g.: | ||
+ | |||
+ | cd ~/projects | ||
+ | mkdir molecule1 | ||
+ | mkdir scripts | ||
+ | |||
+ | If you want to save some typing when going to these directories from your home directory, you can set soft links, e.g.: | ||
+ | |||
+ | cd # go to your home directory | ||
+ | ln -s projects/molecule1 . | ||
+ | ln -s projects/scripts . | ||
+ | |||
+ | If you create new files in these directories, they will automatically be in the <tt>thchem</tt>, group, because the <tt>for_theory.sh</tt> script has set the ''sticky bit'' using the command | ||
+ | |||
+ | chmod g+s ~/projects | ||
+ | |||
+ | However, if the permissions of the files are not correct, you can fix this for all files in <tt>~/projects</tt> and its subdirectories by giving the above <tt>for_theory.sh</tt> command again. |
Revision as of 14:51, 26 January 2021
Logging into a linux server
To logon to a linux server at the Faculty of Science you need a Science login as explained on the the C&CZ wiki
There are several ways to login
- Most PCs at the Faculty of Science are dual boot: simply select Ubuntu an logon
- From a linux computer or a terminal on a Mac use `ssh`:
ssh lilo7.science.ru.nl
and use your username and password to logon
- From a Windows system follow these instructions: connecting to the cluster from a Windows computer
Learn linux command line basics
There are numerous introductions to the linux command line. Here is one example:Command line for beginners
Set permissions
By default other users cannot see your files, which makes it hard for others to help you. To make the files related to your project readable for members of the theoretical chemistry group follow these instructions:
First check whether you are a member of the thchem group, using the command
groups
If thchem is not in the output, ask Gerrit or Herma.
For security, make your files only accessible to yourself and members of the theoretical chemistry group, but no one else:
cd # go to your home directory chmod 750 . # the dot means "current directory" chgrp thchem . # give members of the thchem group access to your files ls -ld . # have a look at the settings for your home directory
Files that are not in the thchem group can still not be read by others.
Create a directory where you keep files for your theoretical chemistry project:
mkdir projects
You can make this directory accessible to theoretical chemistry members using the chmod and chgrp commands, but there is a script that will do this for you:
/vol/thchem/bin/for_theory.sh ~/projects # the tilde (~) refers to your home directory
You may want to organize your files in subdirectories, e.g.:
cd ~/projects mkdir molecule1 mkdir scripts
If you want to save some typing when going to these directories from your home directory, you can set soft links, e.g.:
cd # go to your home directory ln -s projects/molecule1 . ln -s projects/scripts .
If you create new files in these directories, they will automatically be in the thchem, group, because the for_theory.sh script has set the sticky bit using the command
chmod g+s ~/projects
However, if the permissions of the files are not correct, you can fix this for all files in ~/projects and its subdirectories by giving the above for_theory.sh command again.