Changes between Version 21 and Version 22 of FrequentQuestions/LinuxFu


Ignore:
Timestamp:
10/18/11 11:17:12 (13 years ago)
Author:
Jonathan
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • FrequentQuestions/LinuxFu

    v21 v22  
    179179Note that the use of "&&" instead of ";" in between commands will make the sequence halt if one exits with an error code (e.g., if there's a problem with compilation).
    180180[[CollapsibleEnd]]
     181
     182== killing old defunct astrobear processes ==
     183 Often when debugging you will end up with many astrobear processes that are defunct.  Just run
     184{{{
     185ps axu | grep astrobear
     186}}}
     187 to see a list of all the astrobear processes running on a machine.  To kill your processes run
     188{{{
     189killall -e astrobear -s 9 -u yourusername
     190}}}
     191This will send signal 9 to all astrobear processes that you are currently running.
    181192
    182193 == FORTRAN Command Line and !Integer/String !Read/Writes ==