| | 16 | == Moving data from simulation directories to longer term storage == |
| | 17 | * Just navigate to your simulation directory |
| | 18 | |
| | 19 | {{{ cd /scratch/johndoe/MySimulation1}}} |
| | 20 | |
| | 21 | * And then run rsync |
| | 22 | |
| | 23 | {{{ rsync -avz ./ user@host:/data/SimulationDir }}} |
| | 24 | |
| | 25 | * You can also detach the process from the terminal by using nohup... |
| | 26 | {{{ |
| | 27 | nohup rsync -avz ./ user@host:/data/SimulationDir |
| | 28 | <enter password > |
| | 29 | <ctrl+z> |
| | 30 | bg %1 |
| | 31 | logout |
| | 32 | }}} |
| | 33 | |
| | 34 | * If you come back later and there are more frames - you can run the same command and it will only transfer the new frames. |