Difference between revisions of "Linux"
From orch
(→Manage your .bashrc) |
(→Manage your .bashrc) |
||
Line 11: | Line 11: | ||
== Manage your .bashrc == | == Manage your .bashrc == | ||
+ | <code> | ||
+ | export | ||
+ | </code> | ||
+ | |||
+ | <code> | ||
+ | alias | ||
+ | </code> | ||
+ | |||
+ | |||
+ | Do not forget to source your .bashrc file. This is done automatically when opening a new terminal. | ||
<code> | <code> |
Revision as of 15:57, 11 March 2016
Run on multi-procs
mpirun -np 12 main
mpirun -np 12 main <log &
Manage your .bashrc
export
alias
Do not forget to source your .bashrc file. This is done automatically when opening a new terminal.
source .bashrc
SSH keys
You should first go to your personal repository and generate a new key if there is no id_dsa.pub
file in the .ssh
directory.
cd ssh-keygen -t dsa
You should get the following message,
Generating public/private dsa key pair Enter file in which to save the key (/home/login/.ssh/id_dsa):
Just press enter. You must then copy the public key that you will find in .ssh/id_dsa.pub
to the file .ssh/authorized_keys
of the distant host you want to give access to. This public key should have the following format.
ssh-dss AAAAB3NzaC................................................................................. login@machine