source: appendixa/sysvinit-desc.xml@ b5b4c76

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 v3_2 v3_3 v4_0 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 b5b4c76 was 53ad30a, checked in by Mark Hymers <markh@…>, 23 years ago

[Bug 190] Put descs in alphabetical order

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

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