Changes between Version 21 and Version 22 of FrequentQuestions/LinuxFu
- Timestamp:
- 10/18/11 11:17:12 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
FrequentQuestions/LinuxFu
v21 v22 179 179 Note 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). 180 180 [[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 {{{ 185 ps axu | grep astrobear 186 }}} 187 to see a list of all the astrobear processes running on a machine. To kill your processes run 188 {{{ 189 killall -e astrobear -s 9 -u yourusername 190 }}} 191 This will send signal 9 to all astrobear processes that you are currently running. 181 192 182 193 == FORTRAN Command Line and !Integer/String !Read/Writes ==