From e25613e577a3bcb1663b85169b90ad1a098dd13d Mon Sep 17 00:00:00 2001 From: mrgoblin Date: Fri, 15 Apr 2011 00:37:57 +1200 Subject: Fixed many spelling errors --- chapter_06.xml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'chapter_06.xml') diff --git a/chapter_06.xml b/chapter_06.xml index a2d0426..785f4da 100644 --- a/chapter_06.xml +++ b/chapter_06.xml @@ -7,7 +7,7 @@ Slackware systems often run hundreds or thousands of programs, each of -which is refered to as a process. Managing these processes is an +which is referred to as a process. Managing these processes is an important part of system administration. So how exactly do we handle all of these seperate processes? @@ -60,7 +60,7 @@ argument. 102 ? 00:00:02 kblockd/0 105 ? 00:01:19 kacpid 106 ? 00:00:01 kacpi_notify -... many more lines ommitted ... +... many more lines omitted ... @@ -84,7 +84,7 @@ root 4 0.0 0.0 0 0 ? S Apr05 0:00 [ksoftirqd/0] root 7 0.0 0.0 0 0 ? S Apr05 0:11 [events/0] root 9 0.0 0.0 0 0 ? S Apr05 0:01 [work_on_cpu/0] root 11 0.0 0.0 0 0 ? S Apr05 0:00 [khelper] -... many more lines ommitted .... +... many more lines omitted .... @@ -101,7 +101,7 @@ parent of a child process also ends the child. We do this with the darkstar:~$ ps -ejH -... many lines ommitted ... +... many lines omitted ... 3660 3660 3660 tty1 00:00:00 bash 29947 29947 3660 tty1 00:00:00 startx 29963 29947 3660 tty1 00:00:00 xinit @@ -111,7 +111,7 @@ parent of a child process also ends the child. We do this with the 29988 29972 3660 tty1 00:00:04 xfce4-session 29997 29972 3660 tty1 00:00:16 xfwm4 29999 29972 3660 tty1 00:00:02 Thunar -... many more lines ommitted ... +... many more lines omitted ... @@ -158,7 +158,7 @@ In order to signal a process, we first need to know it's PID. You can get this easily with ps as we discused. In order to send different signals to a running process, you simply pass the signal number and -s as an argument. The -l -argument lists all the signals you can chose and their number. You can +argument lists all the signals you can choose and their number. You can also send signals by their name with -s. @@ -167,7 +167,7 @@ also send signals by their name with -s. 5) SIGTRAP 6) SIGABRT 7) SIGBUS 8) SIGFPE 9) SIGKILL 10) SIGUSR1 11) SIGSEGV 12) SIGUSR2 13) SIGPIPE 14) SIGALRM 15) SIGTERM 16) SIGSTKFLT -... many more lines ommitted ... +... many more lines omitted ... darkstar:~$ kill 1234 # SIGTERM darkstar:~$ kill -s 9 1234 # SIGKILL darkstar:~$ kill -s 1 1234 # SIGHUP @@ -308,9 +308,9 @@ paste the following commented text at the top of your own cron entries. By default, Slackware includes a number of entries and comments in root's crontab. These entries make it easier to setup periodic system tasks by creating a number of directories in /etc -corrosponding to how often the tasks should run. Any script placed +corresponding to how often the tasks should run. Any script placed within these directories will be run hourly, daily, weekly, or monthly. -The names should be self-explainatory: +The names should be self-explanatory: /etc/cron.hourly, /etc/cron.daily, /etc/cron.weekly, and -- cgit v1.2.3