acl.xml 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  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 --libexecdir=/usr/lib</userinput></screen>
  45. <para>Compile the package:</para>
  46. <screen><userinput remap="make">make</userinput></screen>
  47. <para>The Acl tests need to be run on a filesystem that supports access
  48. controls after <application>Coreutils</application> has been built with the
  49. Acl libraries. If desired, return to this package and run <command>make -j1
  50. tests</command> after <application>Coreutils</application> has been built
  51. later in this chapter.</para>
  52. <para>Install the package:</para>
  53. <screen><userinput remap="install">make install install-dev install-lib
  54. chmod -v 755 /usr/lib/libacl.so</userinput></screen>
  55. <para>The shared library needs to be moved to
  56. <filename class="directory">/lib</filename>, and as a result the
  57. <filename class="extension">.so</filename> file in
  58. <filename class="directory">/usr/lib</filename> will need to be recreated:</para>
  59. <screen><userinput remap="install">mv -v /usr/lib/libacl.so.* /lib
  60. ln -sfv ../../lib/$(readlink /usr/lib/libacl.so) /usr/lib/libacl.so</userinput></screen>
  61. </sect2>
  62. <sect2 id="contents-acl" role="content">
  63. <title>Contents of Acl</title>
  64. <segmentedlist>
  65. <segtitle>Installed programs</segtitle>
  66. <segtitle>Installed library</segtitle>
  67. <segtitle>Installed directories</segtitle>
  68. <seglistitem>
  69. <seg>chacl, getfacl, and setacl</seg>
  70. <seg>libacl.{a,so}</seg>
  71. <seg>/usr/include/acl, /usr/share/doc/acl-&acl-version;</seg>
  72. </seglistitem>
  73. </segmentedlist>
  74. <variablelist>
  75. <bridgehead renderas="sect3">Short Descriptions</bridgehead>
  76. <?dbfo list-presentation="list"?>
  77. <?dbhtml list-presentation="table"?>
  78. <varlistentry id="chacl">
  79. <term><command>chacl</command></term>
  80. <listitem>
  81. <para>Changes the access control list of a file
  82. or directory.</para>
  83. <indexterm zone="ch-system-acl chacl">
  84. <primary sortas="b-chacl">chacl</primary>
  85. </indexterm>
  86. </listitem>
  87. </varlistentry>
  88. <varlistentry id="getfacl">
  89. <term><command>getfacl</command></term>
  90. <listitem>
  91. <para>Gets file access control lists.</para>
  92. <indexterm zone="ch-system-acl getfacl">
  93. <primary sortas="b-getfacl">getfacl</primary>
  94. </indexterm>
  95. </listitem>
  96. </varlistentry>
  97. <varlistentry id="setacl">
  98. <term><command>setacl</command></term>
  99. <listitem>
  100. <para>Sets file access control lists.</para>
  101. <indexterm zone="ch-system-acl setacl">
  102. <primary sortas="b-setacl">setacl</primary>
  103. </indexterm>
  104. </listitem>
  105. </varlistentry>
  106. <varlistentry id="libacl">
  107. <term><filename class="libraryfile">libacl</filename></term>
  108. <listitem>
  109. <para>Contains the <application>Acl</application> API functions.</para>
  110. <indexterm zone="ch-system-acl libacl">
  111. <primary sortas="c-libacl">libacl</primary>
  112. </indexterm>
  113. </listitem>
  114. </varlistentry>
  115. </variablelist>
  116. </sect2>
  117. </sect1>