etcshells.xml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!DOCTYPE part 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-config-shells" xreflabel="Creating the /etc/shells File">
  8. <?dbhtml filename="etcshells.html"?>
  9. <sect1info>
  10. <othername>$LastChangedBy: randy $</othername>
  11. <date>$Date: 2007-04-04 14:42:53 -0500 (Wed, 04 Apr 2007) $</date>
  12. </sect1info>
  13. <title>Creating the /etc/shells File</title>
  14. <indexterm zone="ch-config-shells">
  15. <primary sortas="e-etc-shells">/etc/shells</primary>
  16. </indexterm>
  17. <para>The <filename>shells</filename> file contains a list of
  18. login shells on the system. Applications use this file to determine
  19. whether a shell is valid. For each shell a single line should be
  20. present, consisting of the shell's path, relative to the root of the
  21. directory structure (/).</para>
  22. <para>For example, this file is consulted by <command>chsh</command>
  23. to determine whether an unprivileged user may change the login shell for her
  24. own account. If the command name is not listed, the user will be denied of
  25. change.</para>
  26. <para>It is a requirement for applications such as
  27. <application>GDM</application> which does not populate the
  28. face browser if it can't find <filename>/etc/shells</filename>, or
  29. FTP daemons which traditionally disallow access to users
  30. with shells not included in this file.</para>
  31. <screen role="root"><userinput>cat &gt; /etc/shells &lt;&lt; "EOF"
  32. <literal># Begin /etc/shells
  33. /bin/sh
  34. /bin/bash
  35. # End /etc/shells</literal>
  36. EOF</userinput></screen>
  37. </sect1>