shadow.xml 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
  3. "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
  4. <!ENTITY % general-entities SYSTEM "../general.ent">
  5. %general-entities;
  6. ]>
  7. <sect1 id="ch-system-shadow" role="wrap">
  8. <?dbhtml filename="shadow.html"?>
  9. <sect1info condition="script">
  10. <productname>shadow</productname>
  11. <productnumber>&shadow-version;</productnumber>
  12. <address>&shadow-url;</address>
  13. </sect1info>
  14. <title>Shadow-&shadow-version;</title>
  15. <indexterm zone="ch-system-shadow">
  16. <primary sortas="a-Shadow">Shadow</primary>
  17. </indexterm>
  18. <sect2 role="package">
  19. <title/>
  20. <para>The Shadow package contains programs for handling passwords in a secure
  21. way.</para>
  22. <segmentedlist>
  23. <segtitle>&buildtime;</segtitle>
  24. <segtitle>&diskspace;</segtitle>
  25. <seglistitem>
  26. <seg>&shadow-ch6-sbu;</seg>
  27. <seg>&shadow-ch6-du;</seg>
  28. </seglistitem>
  29. </segmentedlist>
  30. </sect2>
  31. <sect2 role="installation">
  32. <title>Installation of Shadow</title>
  33. <note>
  34. <para>If you would like to enforce the use of strong passwords, refer to
  35. <ulink url="&blfs-book;postlfs/cracklib.html"/> for installing
  36. CrackLib prior to building Shadow. Then add
  37. <parameter>--with-libcrack</parameter> to the <command>configure</command>
  38. command below.</para>
  39. </note>
  40. <para>Disable the installation of the <command>groups</command> program
  41. and its man pages, as Coreutils provides a better version. Also,
  42. prevent the installation of manual pages that were already installed in
  43. <xref linkend="ch-system-man-pages"/>:</para>
  44. <screen><userinput remap="pre">sed -i 's/groups$(EXEEXT) //' src/Makefile.in
  45. find man -name Makefile.in -exec sed -i 's/groups\.1 / /' {} \;
  46. find man -name Makefile.in -exec sed -i 's/getspnam\.3 / /' {} \;
  47. find man -name Makefile.in -exec sed -i 's/passwd\.5 / /' {} \;</userinput></screen>
  48. <para id="shadow-login_defs">Instead of using the default
  49. <emphasis>crypt</emphasis> method, use the more secure
  50. <emphasis>SHA-512</emphasis> method of password encryption, which also
  51. allows passwords longer than 8 characters. It is also necessary to change
  52. the obsolete <filename class="directory">/var/spool/mail</filename> location
  53. for user mailboxes that Shadow uses by default to the <filename
  54. class="directory">/var/mail</filename> location used currently:</para>
  55. <screen><userinput remap="pre">sed -i -e 's@#ENCRYPT_METHOD DES@ENCRYPT_METHOD SHA512@' \
  56. -e 's@/var/spool/mail@/var/mail@' etc/login.defs</userinput></screen>
  57. <note>
  58. <para>If you chose to build Shadow with Cracklib support, run the following:</para>
  59. <screen role="nodump"><userinput>sed -i 's@DICTPATH.*@DICTPATH\t/lib/cracklib/pw_dict@' etc/login.defs</userinput></screen>
  60. </note>
  61. <para>Make a minor change to make the first group number generated
  62. by useradd 1000:</para>
  63. <screen><userinput remap="pre">sed -i 's/1000/999/' etc/useradd</userinput></screen>
  64. <para>Prepare Shadow for compilation:</para>
  65. <screen><userinput remap="configure">touch /usr/bin/passwd
  66. ./configure --sysconfdir=/etc --with-group-name-max-length=32</userinput></screen>
  67. <variablelist>
  68. <title>The meaning of the configure option:</title>
  69. <varlistentry>
  70. <term><command>touch /usr/bin/passwd</command></term>
  71. <listitem>
  72. <para>The file <filename>/usr/bin/passwd</filename> needs
  73. to exist because its location is harcoded in some programs, and
  74. the default location if it does not exist is not right.</para>
  75. </listitem>
  76. </varlistentry>
  77. <varlistentry>
  78. <term><parameter>--with-group-name-max-length=32</parameter></term>
  79. <listitem>
  80. <para>The maximum user name is 32 characters. Make the maximum
  81. group name the same.</para>
  82. </listitem>
  83. </varlistentry>
  84. </variablelist>
  85. <para>Compile the package:</para>
  86. <screen><userinput remap="make">make</userinput></screen>
  87. <para>This package does not come with a test suite.</para>
  88. <para>Install the package:</para>
  89. <screen><userinput remap="install">make install</userinput></screen>
  90. <!--
  91. <para>Move a misplaced program to its proper location:</para>
  92. <screen><userinput remap="install">mv -v /usr/bin/passwd /bin</userinput></screen>
  93. -->
  94. <!-- <para>Move Shadow's libraries to more appropriate locations:</para>
  95. <screen><userinput remap="install">mv -v /lib/libshadow.*a /usr/lib
  96. rm -v /lib/libshadow.so
  97. ln -sfv ../../lib/libshadow.so.0 /usr/lib/libshadow.so</userinput></screen> -->
  98. </sect2>
  99. <sect2 id="conf-shadow" role="configuration">
  100. <title>Configuring Shadow</title>
  101. <indexterm zone="conf-shadow">
  102. <primary sortas="a-Shadow">Shadow</primary>
  103. <secondary>configuring</secondary>
  104. </indexterm>
  105. <para>This package contains utilities to add, modify, and delete users and
  106. groups; set and change their passwords; and perform other administrative
  107. tasks. For a full explanation of what <emphasis>password shadowing</emphasis>
  108. means, see the <filename>doc/HOWTO</filename> file within the unpacked
  109. source tree. If using Shadow support, keep in mind that programs which need
  110. to verify passwords (display managers, FTP programs, pop3 daemons, etc.)
  111. must be Shadow-compliant. That is, they need to be able to work with
  112. shadowed passwords.</para>
  113. <para>To enable shadowed passwords, run the following command:</para>
  114. <screen><userinput>pwconv</userinput></screen>
  115. <para>To enable shadowed group passwords, run:</para>
  116. <screen><userinput>grpconv</userinput></screen>
  117. <para>Shadow's stock configuration for the <command>useradd</command>
  118. utility has a few caveats that need some explanation. First, the default
  119. action for the <command>useradd</command> utility is to create the user and
  120. a group of the same name as the user. By default the user ID (UID) and
  121. group ID (GID) numbers will begin with 1000. This means if you don't pass
  122. parameters to <command>useradd</command>, each user will be a member of a
  123. unique group on the system. If this behavior is undesirable, you'll need
  124. to pass the <parameter>-g</parameter> parameter to
  125. <command>useradd</command>. The default parameters are stored in the
  126. <filename>/etc/default/useradd</filename> file. You may need to modify two
  127. parameters in this file to suit your particular needs.</para>
  128. <variablelist>
  129. <title><filename>/etc/default/useradd</filename> Parameter Explanations</title>
  130. <varlistentry>
  131. <term><parameter>GROUP=1000</parameter></term>
  132. <listitem>
  133. <para>This parameter sets the beginning of the group numbers used in
  134. the /etc/group file. You can modify it to anything you desire. Note
  135. that <command>useradd</command> will never reuse a UID or GID. If the
  136. number identified in this parameter is used, it will use the next
  137. available number after this. Note also that if you don't have a group
  138. 1000 on your system the first time you use <command>useradd</command>
  139. without the <parameter>-g</parameter> parameter, you'll get a message
  140. displayed on the terminal that says:
  141. <computeroutput>useradd: unknown GID 1000</computeroutput>. You may
  142. disregard this message and group number 1000 will be used.</para>
  143. </listitem>
  144. </varlistentry>
  145. <varlistentry>
  146. <term><parameter>CREATE_MAIL_SPOOL=yes</parameter></term>
  147. <listitem>
  148. <para>This parameter causes <command>useradd</command> to create a
  149. mailbox file for the newly created user. <command>useradd</command>
  150. will make the group ownership of this file to the
  151. <systemitem class="groupname">mail</systemitem> group with 0660
  152. permissions. If you would prefer that these mailbox files are not
  153. created by <command>useradd</command>, issue the following
  154. command:</para>
  155. <screen><userinput>sed -i 's/yes/no/' /etc/default/useradd</userinput></screen>
  156. </listitem>
  157. </varlistentry>
  158. </variablelist>
  159. </sect2>
  160. <sect2 role="configuration">
  161. <title>Setting the root password</title>
  162. <para>Choose a password for user <emphasis>root</emphasis> and set it
  163. by running:</para>
  164. <screen role="nodump"><userinput>passwd root</userinput></screen>
  165. </sect2>
  166. <sect2 id="contents-shadow" role="content">
  167. <title>Contents of Shadow</title>
  168. <segmentedlist>
  169. <segtitle>Installed programs</segtitle>
  170. <segtitle>Installed directory</segtitle>
  171. <seglistitem>
  172. <seg>chage, chfn, chgpasswd, chpasswd, chsh, expiry, faillog, gpasswd,
  173. groupadd, groupdel, groupmems, groupmod, grpck, grpconv, grpunconv,
  174. lastlog, login, logoutd, newgidmap, newgrp, newuidmap, newusers,
  175. nologin, passwd, pwck, pwconv, pwunconv, sg (link to newgrp), su,
  176. useradd, userdel, usermod, vigr (link to vipw), and vipw</seg>
  177. <seg>/etc/default</seg>
  178. </seglistitem>
  179. </segmentedlist>
  180. <variablelist>
  181. <bridgehead renderas="sect3">Short Descriptions</bridgehead>
  182. <?dbfo list-presentation="list"?>
  183. <?dbhtml list-presentation="table"?>
  184. <varlistentry id="chage">
  185. <term><command>chage</command></term>
  186. <listitem>
  187. <para>Used to change the maximum number of days between obligatory
  188. password changes</para>
  189. <indexterm zone="ch-system-shadow chage">
  190. <primary sortas="b-chage">chage</primary>
  191. </indexterm>
  192. </listitem>
  193. </varlistentry>
  194. <varlistentry id="chfn">
  195. <term><command>chfn</command></term>
  196. <listitem>
  197. <para>Used to change a user's full name and other information</para>
  198. <indexterm zone="ch-system-shadow chfn">
  199. <primary sortas="b-chfn">chfn</primary>
  200. </indexterm>
  201. </listitem>
  202. </varlistentry>
  203. <varlistentry id="chgpasswd">
  204. <term><command>chgpasswd</command></term>
  205. <listitem>
  206. <para>Used to update group passwords in batch mode</para>
  207. <indexterm zone="ch-system-shadow chgpasswd">
  208. <primary sortas="b-chgpasswd">chgpasswd</primary>
  209. </indexterm>
  210. </listitem>
  211. </varlistentry>
  212. <varlistentry id="chpasswd">
  213. <term><command>chpasswd</command></term>
  214. <listitem>
  215. <para>Used to update user passwords in batch mode</para>
  216. <indexterm zone="ch-system-shadow chpasswd">
  217. <primary sortas="b-chpasswd">chpasswd</primary>
  218. </indexterm>
  219. </listitem>
  220. </varlistentry>
  221. <varlistentry id="chsh">
  222. <term><command>chsh</command></term>
  223. <listitem>
  224. <para>Used to change a user's default login shell</para>
  225. <indexterm zone="ch-system-shadow chsh">
  226. <primary sortas="b-chsh">chsh</primary>
  227. </indexterm>
  228. </listitem>
  229. </varlistentry>
  230. <varlistentry id="expiry">
  231. <term><command>expiry</command></term>
  232. <listitem>
  233. <para>Checks and enforces the current password expiration policy</para>
  234. <indexterm zone="ch-system-shadow expiry">
  235. <primary sortas="b-expiry">expiry</primary>
  236. </indexterm>
  237. </listitem>
  238. </varlistentry>
  239. <varlistentry id="faillog">
  240. <term><command>faillog</command></term>
  241. <listitem>
  242. <para>Is used to examine the log of login failures, to set a maximum
  243. number of failures before an account is blocked, or to reset the
  244. failure count</para>
  245. <indexterm zone="ch-system-shadow faillog">
  246. <primary sortas="b-faillog">faillog</primary>
  247. </indexterm>
  248. </listitem>
  249. </varlistentry>
  250. <varlistentry id="gpasswd">
  251. <term><command>gpasswd</command></term>
  252. <listitem>
  253. <para>Is used to add and delete members and administrators to
  254. groups</para>
  255. <indexterm zone="ch-system-shadow gpasswd">
  256. <primary sortas="b-gpasswd">gpasswd</primary>
  257. </indexterm>
  258. </listitem>
  259. </varlistentry>
  260. <varlistentry id="groupadd">
  261. <term><command>groupadd</command></term>
  262. <listitem>
  263. <para>Creates a group with the given name</para>
  264. <indexterm zone="ch-system-shadow groupadd">
  265. <primary sortas="b-groupadd">groupadd</primary>
  266. </indexterm>
  267. </listitem>
  268. </varlistentry>
  269. <varlistentry id="groupdel">
  270. <term><command>groupdel</command></term>
  271. <listitem>
  272. <para>Deletes the group with the given name</para>
  273. <indexterm zone="ch-system-shadow groupdel">
  274. <primary sortas="b-groupdel">groupdel</primary>
  275. </indexterm>
  276. </listitem>
  277. </varlistentry>
  278. <varlistentry id="groupmems">
  279. <term><command>groupmems</command></term>
  280. <listitem>
  281. <para>Allows a user to administer his/her own group membership list
  282. without the requirement of super user privileges.</para>
  283. <indexterm zone="ch-system-shadow groupmems">
  284. <primary sortas="b-groupmems">groupmems</primary>
  285. </indexterm>
  286. </listitem>
  287. </varlistentry>
  288. <varlistentry id="groupmod">
  289. <term><command>groupmod</command></term>
  290. <listitem>
  291. <para>Is used to modify the given group's name or GID</para>
  292. <indexterm zone="ch-system-shadow groupmod">
  293. <primary sortas="b-groupmod">groupmod</primary>
  294. </indexterm>
  295. </listitem>
  296. </varlistentry>
  297. <varlistentry id="grpck">
  298. <term><command>grpck</command></term>
  299. <listitem>
  300. <para>Verifies the integrity of the group files
  301. <filename>/etc/group</filename> and
  302. <filename>/etc/gshadow</filename></para>
  303. <indexterm zone="ch-system-shadow grpck">
  304. <primary sortas="b-grpck">grpck</primary>
  305. </indexterm>
  306. </listitem>
  307. </varlistentry>
  308. <varlistentry id="grpconv">
  309. <term><command>grpconv</command></term>
  310. <listitem>
  311. <para>Creates or updates the shadow group file from the normal
  312. group file</para>
  313. <indexterm zone="ch-system-shadow grpconv">
  314. <primary sortas="b-grpconv">grpconv</primary>
  315. </indexterm>
  316. </listitem>
  317. </varlistentry>
  318. <varlistentry id="grpunconv">
  319. <term><command>grpunconv</command></term>
  320. <listitem>
  321. <para>Updates <filename>/etc/group</filename> from
  322. <filename>/etc/gshadow</filename> and then deletes the latter</para>
  323. <indexterm zone="ch-system-shadow grpunconv">
  324. <primary sortas="b-grpunconv">grpunconv</primary>
  325. </indexterm>
  326. </listitem>
  327. </varlistentry>
  328. <varlistentry id="lastlog">
  329. <term><command>lastlog</command></term>
  330. <listitem>
  331. <para>Reports the most recent login of all users or of a
  332. given user</para>
  333. <indexterm zone="ch-system-shadow lastlog">
  334. <primary sortas="b-lastlog">lastlog</primary>
  335. </indexterm>
  336. </listitem>
  337. </varlistentry>
  338. <varlistentry id="login">
  339. <term><command>login</command></term>
  340. <listitem>
  341. <para>Is used by the system to let users sign on</para>
  342. <indexterm zone="ch-system-shadow login">
  343. <primary sortas="b-login">login</primary>
  344. </indexterm>
  345. </listitem>
  346. </varlistentry>
  347. <varlistentry id="logoutd">
  348. <term><command>logoutd</command></term>
  349. <listitem>
  350. <para>Is a daemon used to enforce restrictions on log-on time
  351. and ports</para>
  352. <indexterm zone="ch-system-shadow logoutd">
  353. <primary sortas="b-logoutd">logoutd</primary>
  354. </indexterm>
  355. </listitem>
  356. </varlistentry>
  357. <varlistentry id="newgidmap">
  358. <term><command>newgidmap</command></term>
  359. <listitem>
  360. <para>Is used to set the gid mapping of a user namespace</para>
  361. <indexterm zone="ch-system-shadow newgidmap">
  362. <primary sortas="b-newgidmap">newgidmap</primary>
  363. </indexterm>
  364. </listitem>
  365. </varlistentry>
  366. <varlistentry id="newgrp">
  367. <term><command>newgrp</command></term>
  368. <listitem>
  369. <para>Is used to change the current GID during a login session</para>
  370. <indexterm zone="ch-system-shadow newgrp">
  371. <primary sortas="b-newgrp">newgrp</primary>
  372. </indexterm>
  373. </listitem>
  374. </varlistentry>
  375. <varlistentry id="newuidmap">
  376. <term><command>newuidmap</command></term>
  377. <listitem>
  378. <para>Is used to set the uid mapping of a user namespace</para>
  379. <indexterm zone="ch-system-shadow newuidmap">
  380. <primary sortas="b-newuidmap">newuidmap</primary>
  381. </indexterm>
  382. </listitem>
  383. </varlistentry>
  384. <varlistentry id="newusers">
  385. <term><command>newusers</command></term>
  386. <listitem>
  387. <para>Is used to create or update an entire series of user
  388. accounts</para>
  389. <indexterm zone="ch-system-shadow newusers">
  390. <primary sortas="b-newusers">newusers</primary>
  391. </indexterm>
  392. </listitem>
  393. </varlistentry>
  394. <varlistentry id="nologin">
  395. <term><command>nologin</command></term>
  396. <listitem>
  397. <para>Displays a message that an account is not available; it is designed
  398. to be used as the default shell for accounts that have been
  399. disabled</para>
  400. <indexterm zone="ch-system-shadow nologin">
  401. <primary sortas="b-nologin">nologin</primary>
  402. </indexterm>
  403. </listitem>
  404. </varlistentry>
  405. <varlistentry id="passwd">
  406. <term><command>passwd</command></term>
  407. <listitem>
  408. <para>Is used to change the password for a user or group account</para>
  409. <indexterm zone="ch-system-shadow passwd">
  410. <primary sortas="b-passwd">passwd</primary>
  411. </indexterm>
  412. </listitem>
  413. </varlistentry>
  414. <varlistentry id="pwck">
  415. <term><command>pwck</command></term>
  416. <listitem>
  417. <para>Verifies the integrity of the password files
  418. <filename>/etc/passwd</filename> and
  419. <filename>/etc/shadow</filename></para>
  420. <indexterm zone="ch-system-shadow pwck">
  421. <primary sortas="b-pwck">pwck</primary>
  422. </indexterm>
  423. </listitem>
  424. </varlistentry>
  425. <varlistentry id="pwconv">
  426. <term><command>pwconv</command></term>
  427. <listitem>
  428. <para>Creates or updates the shadow password file from the normal
  429. password file</para>
  430. <indexterm zone="ch-system-shadow pwconv">
  431. <primary sortas="b-pwconv">pwconv</primary>
  432. </indexterm>
  433. </listitem>
  434. </varlistentry>
  435. <varlistentry id="pwunconv">
  436. <term><command>pwunconv</command></term>
  437. <listitem>
  438. <para>Updates <filename>/etc/passwd</filename> from
  439. <filename>/etc/shadow</filename> and then deletes the latter</para>
  440. <indexterm zone="ch-system-shadow pwunconv">
  441. <primary sortas="b-pwunconv">pwunconv</primary>
  442. </indexterm>
  443. </listitem>
  444. </varlistentry>
  445. <varlistentry id="sg">
  446. <term><command>sg</command></term>
  447. <listitem>
  448. <para>Executes a given command while the user's GID
  449. is set to that of the given group</para>
  450. <indexterm zone="ch-system-shadow sg">
  451. <primary sortas="b-sg">sg</primary>
  452. </indexterm>
  453. </listitem>
  454. </varlistentry>
  455. <varlistentry id="su">
  456. <term><command>su</command></term>
  457. <listitem>
  458. <para>Runs a shell with substitute user and group IDs</para>
  459. <indexterm zone="ch-system-shadow su">
  460. <primary sortas="b-su">su</primary>
  461. </indexterm>
  462. </listitem>
  463. </varlistentry>
  464. <varlistentry id="useradd">
  465. <term><command>useradd</command></term>
  466. <listitem>
  467. <para>Creates a new user with the given name, or updates the default
  468. new-user information</para>
  469. <indexterm zone="ch-system-shadow useradd">
  470. <primary sortas="b-useradd">useradd</primary>
  471. </indexterm>
  472. </listitem>
  473. </varlistentry>
  474. <varlistentry id="userdel">
  475. <term><command>userdel</command></term>
  476. <listitem>
  477. <para>Deletes the given user account</para>
  478. <indexterm zone="ch-system-shadow userdel">
  479. <primary sortas="b-userdel">userdel</primary>
  480. </indexterm>
  481. </listitem>
  482. </varlistentry>
  483. <varlistentry id="usermod">
  484. <term><command>usermod</command></term>
  485. <listitem>
  486. <para>Is used to modify the given user's login name, User
  487. Identification (UID), shell, initial group, home directory, etc.</para>
  488. <indexterm zone="ch-system-shadow usermod">
  489. <primary sortas="b-usermod">usermod</primary>
  490. </indexterm>
  491. </listitem>
  492. </varlistentry>
  493. <varlistentry id="vigr">
  494. <term><command>vigr</command></term>
  495. <listitem>
  496. <para>Edits the <filename>/etc/group</filename> or
  497. <filename>/etc/gshadow</filename> files</para>
  498. <indexterm zone="ch-system-shadow vigr">
  499. <primary sortas="b-vigr">vigr</primary>
  500. </indexterm>
  501. </listitem>
  502. </varlistentry>
  503. <varlistentry id="vipw">
  504. <term><command>vipw</command></term>
  505. <listitem>
  506. <para>Edits the <filename>/etc/passwd</filename> or
  507. <filename>/etc/shadow</filename> files</para>
  508. <indexterm zone="ch-system-shadow vipw">
  509. <primary sortas="b-vipw">vipw</primary>
  510. </indexterm>
  511. </listitem>
  512. </varlistentry>
  513. </variablelist>
  514. </sect2>
  515. </sect1>