| 5 | | svn --username XXX --password XXX checkout http://issm.ess.uci.edu/svn/issm/issm/trunk-jpl |
| | 9 | == ssh configuration == |
| | 10 | |
| | 11 | You can add the following lines to `~/.ssh/config` on your local machine: |
| | 12 | {{{ |
| | 13 | #!sh |
| | 14 | Host sherlock login.sherlock.stanford.edu |
| | 15 | ControlMaster auto |
| | 16 | ControlPersist yes |
| | 17 | ControlPath ~/.ssh/%l%r@%h:%p |
| | 18 | HostName login.sherlock.stanford.edu |
| | 19 | User USERNAME |
| | 20 | }}} |
| | 21 | and replace `USERNAME` by your sherlock username. |
| | 22 | |
| | 23 | Once this is done, you can ssh green planet by simply doing: |
| | 24 | |
| | 25 | {{{ |
| | 26 | #!sh |
| | 27 | ssh sherlock |
| | 28 | }}} |
| | 29 | |
| | 30 | Note: to run ISSM on sherlock, make sure you establish an ssh connection to sherlock from your local machine. That way, ISSM will not require you to enter your password every time a job is submitted or donwloaded. |