[2024-feb-29] Sad news: Eric Layton aka Nocturnal Slacker aka vtel57 passed away on Feb 26th, shortly after hospitalization. He was one of our Wiki's most prominent admins. He will be missed.

Welcome to the Slackware Documentation Project

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
slackbook:process_control [2012/09/12 21:02 (UTC)] – updated code block to syntax highlighting mfillpotslackbook:process_control [2012/10/14 15:53 (UTC)] (current) – removed all bash flags mfillpot
Line 17: Line 17:
  
  
-<code bash>+<code>
 darkstar:~$ ps darkstar:~$ ps
   PID TTY          TIME CMD   PID TTY          TIME CMD
Line 45: Line 45:
  
  
-<code bash>+<code>
 darkstar:~$ ps -e darkstar:~$ ps -e
   PID TTY          TIME CMD   PID TTY          TIME CMD
Line 75: Line 75:
 </note> </note>
  
-<code bash>+<code>
 darkstar:~$ ps aux darkstar:~$ ps aux
 USER       PID %CPU %MEM    VSZ   RSS TTY      STAT START   TIME COMMAND USER       PID %CPU %MEM    VSZ   RSS TTY      STAT START   TIME COMMAND
Line 103: Line 103:
  
  
-<code bash>+<code>
 darkstar:~$ ps -o cmd -o etime $$ darkstar:~$ ps -o cmd -o etime $$
 CMD                             ELAPSED CMD                             ELAPSED
Line 122: Line 122:
  
  
-<code bash>+<code>
 darkstar:~$ ps -o cmd -o rss -o vsz $(pgrep httpd) darkstar:~$ ps -o cmd -o rss -o vsz $(pgrep httpd)
 CMD                           RSS    VSZ CMD                           RSS    VSZ
Line 155: Line 155:
  
  
-<code bash>+<code>
 darkstar:~$ ps -ejH darkstar:~$ ps -ejH
 ... many lines omitted ... ... many lines omitted ...
Line 186: Line 186:
  
  
-<code bash>+<code>
 darkstar:~$ pstree darkstar:~$ pstree
 init-+-atd init-+-atd
Line 244: Line 244:
  
  
-<code bash>+<code>
 darkstar:~$ kill -l darkstar:~$ kill -l
  1) SIGHUP 2) SIGINT 3) SIGQUIT 4) SIGILL  1) SIGHUP 2) SIGINT 3) SIGQUIT 4) SIGILL
Line 267: Line 267:
  
  
-<code bash>+<code>
 darkstar:~$ killall bash # SIGTERM darkstar:~$ killall bash # SIGTERM
 darkstar:~$ killall -s 9 bash # SIGKILL darkstar:~$ killall -s 9 bash # SIGKILL
Line 285: Line 285:
  
  
-<code bash>+<code>
 darkstar:~$ top darkstar:~$ top
 top - 16:44:15 up 26 days,  5:53,  5 users,  load average: 0.08, 0.03, 0.03 top - 16:44:15 up 26 days,  5:53,  5 users,  load average: 0.08, 0.03, 0.03
Line 321: Line 321:
 ===== cron ===== ===== cron =====
  
-<title>cron</title>+
  
 Ok, so we've learned many different ways of viewing the active Ok, so we've learned many different ways of viewing the active
Line 351: Line 351:
  
  
-<code bash>+<code>
 darkstar:~$ crontab -e darkstar:~$ crontab -e
 # Keep current with slackware # Keep current with slackware
Line 375: Line 375:
  
  
-<code bash>+<code>
  
 # Redirect everything to /dev/null with: # Redirect everything to /dev/null with:
 slackbook:process_control ()