acl.xml 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  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-acl" role="wrap">
  8. <?dbhtml filename="acl.html"?>
  9. <sect1info condition="script">
  10. <productname>acl</productname>
  11. <productnumber>&acl-version;</productnumber>
  12. <address>&acl-url;</address>
  13. </sect1info>
  14. <title>Acl-&acl-version;</title>
  15. <indexterm zone="ch-system-acl">
  16. <primary sortas="a-Acl">Acl</primary>
  17. </indexterm>
  18. <sect2 role="package">
  19. <title/>
  20. <para>The Acl package contains utilities to administer Access Control Lists,
  21. which are used to define more fine-grained discretionary access rights for
  22. files and directories.</para>
  23. <segmentedlist>
  24. <segtitle>&buildtime;</segtitle>
  25. <segtitle>&diskspace;</segtitle>
  26. <seglistitem>
  27. <seg>&acl-ch6-sbu;</seg>
  28. <seg>&acl-ch6-du;</seg>
  29. </seglistitem>
  30. </segmentedlist>
  31. </sect2>
  32. <sect2 role="installation">
  33. <title>Installation of Acl</title>
  34. <para>Modify the documentation directory so that it is a versioned
  35. directory:</para>
  36. <screen><userinput remap="pre">sed -i -e 's|/@pkg_name@|&amp;-@pkg_version@|' include/builddefs.in</userinput></screen>
  37. <para>Fix some broken tests:</para>
  38. <screen><userinput remap="pre">sed -i "s:| sed.*::g" test/{sbits-restore,cp,misc}.test</userinput></screen>
  39. <para>Additionally, fix a bug that causes <command>getfacl -e</command>
  40. to segfault on overly long group name:</para>
  41. <screen><userinput remap="pre">sed -i -e "/TABS-1;/a if (x > (TABS-1)) x = (TABS-1);" \
  42. libacl/__acl_to_any_text.c</userinput></screen>
  43. <para>Prepare Acl for compilation:</para>
  44. <screen><userinput remap="configure">./configure --prefix=/usr \
  45. --bindir=/bin \
  46. --disable-static \
  47. --libexecdir=/usr/lib</userinput></screen>
  48. <para>Compile the package:</para>
  49. <screen><userinput remap="make">make</userinput></screen>
  50. <para>The Acl tests need to be run on a filesystem that supports access
  51. controls after <application>Coreutils</application> has been built with the
  52. Acl libraries. If desired, return to this package and run <command>make -j1
  53. tests</command> after <application>Coreutils</application> has been built
  54. later in this chapter.</para>
  55. <para>Install the package:</para>
  56. <screen><userinput remap="install">make install install-dev install-lib
  57. chmod -v 755 /usr/lib/libacl.so</userinput></screen>
  58. <para>The shared library needs to be moved to
  59. <filename class="directory">/lib</filename>, and as a result the
  60. <filename class="extension">.so</filename> file in
  61. <filename class="directory">/usr/lib</filename> will need to be recreated:</para>
  62. <screen><userinput remap="install">mv -v /usr/lib/libacl.so.* /lib
  63. ln -sfv ../../lib/$(readlink /usr/lib/libacl.so) /usr/lib/libacl.so</userinput></screen>
  64. </sect2>
  65. <sect2 id="contents-acl" role="content">
  66. <title>Contents of Acl</title>
  67. <segmentedlist>
  68. <segtitle>Installed programs</segtitle>
  69. <segtitle>Installed library</segtitle>
  70. <segtitle>Installed directories</segtitle>
  71. <seglistitem>
  72. <seg>chacl, getfacl, and setacl</seg>
  73. <seg>libacl.so</seg>
  74. <seg>/usr/include/acl and /usr/share/doc/acl-&acl-version;</seg>
  75. </seglistitem>
  76. </segmentedlist>
  77. <variablelist>
  78. <bridgehead renderas="sect3">Short Descriptions</bridgehead>
  79. <?dbfo list-presentation="list"?>
  80. <?dbhtml list-presentation="table"?>
  81. <varlistentry id="chacl">
  82. <term><command>chacl</command></term>
  83. <listitem>
  84. <para>Changes the access control list of a file
  85. or directory</para>
  86. <indexterm zone="ch-system-acl chacl">
  87. <primary sortas="b-chacl">chacl</primary>
  88. </indexterm>
  89. </listitem>
  90. </varlistentry>
  91. <varlistentry id="getfacl">
  92. <term><command>getfacl</command></term>
  93. <listitem>
  94. <para>Gets file access control lists</para>
  95. <indexterm zone="ch-system-acl getfacl">
  96. <primary sortas="b-getfacl">getfacl</primary>
  97. </indexterm>
  98. </listitem>
  99. </varlistentry>
  100. <varlistentry id="setacl">
  101. <term><command>setacl</command></term>
  102. <listitem>
  103. <para>Sets file access control lists</para>
  104. <indexterm zone="ch-system-acl setacl">
  105. <primary sortas="b-setacl">setacl</primary>
  106. </indexterm>
  107. </listitem>
  108. </varlistentry>
  109. <varlistentry id="libacl">
  110. <term><filename class="libraryfile">libacl</filename></term>
  111. <listitem>
  112. <para>Contains the library functions for manipulating Access Control Lists</para>
  113. <indexterm zone="ch-system-acl libacl">
  114. <primary sortas="c-libacl">libacl</primary>
  115. </indexterm>
  116. </listitem>
  117. </varlistentry>
  118. </variablelist>
  119. </sect2>
  120. </sect1>