Changes between Version 27 and Version 28 of FrequentQuestions/LinuxFu


Ignore:
Timestamp:
02/02/13 15:19:28 (12 years ago)
Author:
Jonathan
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • FrequentQuestions/LinuxFu

    v27 v28  
    200200
    201201== killing old defunct astrobear processes ==
    202  Often when debugging you will end up with many astrobear processes that are defunct.  Just run
     202Often when debugging you will end up with many astrobear processes that are defunct.  Just run
    203203{{{
    204204ps axu | grep astrobear
    205205}}}
    206  to see a list of all the astrobear processes running on a machine.  To kill your processes run
     206to see a list of all the astrobear processes running on a machine.  To kill your processes run
    207207{{{
    208208killall -e astrobear -s 9 -u yourusername
     
    211211
    212212== Changing the endiannes of bov files from little to big ==
    213   Occasionally you may end up generating data on a big endian machine, but the description of the data in the .bov file says little endian.  In order to view the data in visit you need to correct the endian flag in each .bov file.
    214 {{{
    215   mkdir out_temp
    216   cp out/*.bov out_temp/
    217   cd out_temp
    218   for i in `ls *.bov`; do sed 's/LITTLE/BIG/' $i > ../out/$i; done
    219   cd ../
    220   rm -rf out_temp
     213Occasionally you may end up generating data on a big endian machine, but the description of the data in the .bov file says little endian.  In order to view the data in visit you need to correct the endian flag in each .bov file.
     214{{{
     215mkdir out_temp
     216cp out/*.bov out_temp/
     217cd out_temp
     218for i in `ls *.bov`; do sed 's/LITTLE/BIG/' $i > ../out/$i; done
     219cd ../
     220rm -rf out_temp
    221221}}}
    222222 == FORTRAN Command Line and !Integer/String !Read/Writes ==