Changes between Version 1 and Version 2 of ronne


Ignore:
Timestamp:
02/01/16 11:33:19 (9 years ago)
Author:
jbondzio
Comment:

fixed greenplanet artifact, and added how to source .bashrc on startup

Legend:

Unmodified
Added
Removed
Modified
  • ronne

    v1 v2  
    3636}}}
    3737
    38 Two files were created: your private key `/Users/username/.ssh/id_rsa`, and the public key `/Users/username/.ssh/id_rsa.pub`. The private key is read-only and only for you, it is used to decrypt all correspondence encrypted with the public key. The contents of the public key need to be copied to `~/.ssh/authorized_keys` on your greenplanet account:
     38Two files were created: your private key `/Users/username/.ssh/id_rsa`, and the public key `/Users/username/.ssh/id_rsa.pub`. The private key is read-only and only for you, it is used to decrypt all correspondence encrypted with the public key. The contents of the public key need to be copied to `~/.ssh/authorized_keys` on your ronne account:
    3939
    4040{{{
     
    6060#MATLAB alias
    6161alias ma='matlab -nodesktop -nosplash -r "addpath $ISSM_DIR/src/m/dev; devpath;"'
     62}}}
     63
     64In order to source `~/.bashrc` on startup, create `~/.bash_profile`, and add the following lines:
     65{{{
     66if [ -f ~/.bashrc ]; then
     67  . ~/.bashrc
     68fi
    6269}}}
    6370