Changes between Version 22 and Version 23 of FrequentQuestions/LinuxFu


Ignore:
Timestamp:
04/26/12 07:09:49 (13 years ago)
Author:
Jonathan
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • FrequentQuestions/LinuxFu

    v22 v23  
    1414
    1515
     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. 
    1635
    1736 == Individually Tarballing Files ==