source: appendixa/sysvinit-desc.xml@ 6052e11

10.0 10.0-rc1 10.1 10.1-rc1 11.0 11.0-rc1 11.0-rc2 11.0-rc3 11.1 11.1-rc1 11.2 11.2-rc1 11.3 11.3-rc1 12.0 12.0-rc1 12.1 12.1-rc1 6.0 6.1 6.1.1 6.3 6.4 6.5 6.6 6.7 6.8 7.0 7.1 7.2 7.3 7.4 7.5 7.5-systemd 7.6 7.6-systemd 7.7 7.7-systemd 7.8 7.8-systemd 7.9 7.9-systemd 8.0 8.1 8.2 8.3 8.4 9.0 9.1 arm bdubbs/gcc13 ml-11.0 multilib renodr/libudev-from-systemd s6-init trunk v4_1 v5_0 v5_1 v5_1_1 xry111/arm64 xry111/arm64-12.0 xry111/clfs-ng xry111/lfs-next xry111/loongarch xry111/loongarch-12.0 xry111/loongarch-12.1 xry111/mips64el xry111/pip3 xry111/rust-wip-20221008 xry111/update-glibc
Last change on this file since 6052e11 was 6052e11, checked in by Timothy Bauscher <timothy@…>, 21 years ago

Converted sysvinit.

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2380 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 3.3 KB
Line 
1<sect2><title>&nbsp;</title><para>&nbsp;</para></sect2>
2
3<sect2><title>Descriptions</title>
4
5<para>Last checked against version &sysvinit-contversion;.</para>
6
7<sect3><title>Program file descriptions</title>
8
9<sect4><title>halt</title>
10<para>halt notes, in the file /var/log/wtmp, that the system is being
11brought down and then tells the kernel to either halt, reboot or
12poweroff the system. If halt or reboot is called when the system is not
13in runlevel 0 or 6, shutdown will be invoked instead (with
14the flag -h or -r).</para></sect4>
15
16<sect4><title>init</title>
17<para>init is the parent of all processes. Its primary role is to create
18processes from a script stored in the file /etc/inittab. This
19file usually has entries which cause init to spawn gettys on each line from
20which users can log in. It also controls autonomous processes required by any
21particular system.</para></sect4>
22
23<sect4><title>killall5</title>
24<para>killall5 is the SystemV killall command. It sends a signal to all
25processes except the processes in its own session, so it won't kill the
26shell that is running the script it was called from.</para></sect4>
27
28<sect4><title>last</title>
29<para>last searches back through the file /var/log/wtmp (or the file designated
30by the -f flag) and displays a list of all users logged in (and out)
31since that file was created.</para></sect4>
32
33<sect4><title>lastb</title>
34<para>lastb is the same as last, except that by default it shows a log of the
35file /var/log/btmp, which contains all the bad login attempts.</para></sect4>
36
37<sect4><title>mesg</title>
38<para>mesg controls the access to the user's terminal by others. It's typically
39used to allow or disallow other users to write to his terminal.</para></sect4>
40
41<sect4><title>pidof</title>
42<para>pidof displays the process identifiers (PIDs) of the named
43programs.</para></sect4>
44
45<sect4><title>poweroff</title>
46<para>poweroff is equivalent to shutdown -h -p now. It halts the computer and
47switches off the computer (when using an APM compliant BIOS and APM is
48enabled in the kernel).</para></sect4>
49
50<sect4><title>reboot</title>
51<para>reboot is equivalent to shutdown -r now. It reboots
52the computer.</para></sect4>
53
54<sect4><title>runlevel</title>
55<para>runlevel reads the system utmp file (usually /var/run/utmp), locates
56the runlevel record and prints the previous and current system
57runlevel on its standard output, separated by a single space.</para></sect4>
58
59<sect4><title>shutdown</title>
60<para>shutdown brings the system down in a secure way. All logged-in users are
61notified that the system is going down and login is blocked.</para></sect4>
62
63<sect4><title>sulogin</title>
64<para>sulogin is invoked by init when the system goes into single user mode
65(this is done through an entry in /etc/inittab). Init also tries to
66execute sulogin when it is passed the -b flag from the boot loader
67(LILO, for example).</para></sect4>
68
69<sect4><title>telinit</title>
70<para>telinit sends appropriate signals to init, telling it which runlevel to
71enter.</para></sect4>
72
73<sect4><title>utmpdump</title>
74<para>utmpdumps prints the content of a file (usually /var/run/utmp) on
75standard output in a user friendly format.</para></sect4>
76
77<sect4><title>wall</title>
78<para>wall sends a message to logged in users that have their mesg permission
79set to yes.</para></sect4>
80
81</sect3>
82
83</sect2>
84
Note: See TracBrowser for help on using the repository browser.