source: chapter08/libcap.xml@ 5e06d04

multilib-10.1
Last change on this file since 5e06d04 was 5e06d04, checked in by Thomas Trepl <thomas@…>, 3 years ago

Merge changes from trunk to multilib

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/multilib@12107 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 6.7 KB
RevLine 
[1fa2099]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
8<sect1 id="ch-system-libcap" role="wrap">
9 <?dbhtml filename="libcap.html"?>
10
11 <sect1info condition="script">
12 <productname>libcap</productname>
13 <productnumber>&libcap-version;</productnumber>
14 <address>&libcap-url;</address>
15 </sect1info>
16
17 <title>Libcap-&libcap-version;</title>
18
19 <indexterm zone="ch-system-libcap">
20 <primary sortas="a-Libcap">Libcap</primary>
21 </indexterm>
22
23 <sect2 role="package">
24 <title/>
25
26 <para>The Libcap package implements the user-space interfaces to the POSIX
27 1003.1e capabilities available in Linux kernels. These capabilities are a
28 partitioning of the all powerful root privilege into a set of distinct
29 privileges.</para>
30
31 <segmentedlist>
32 <segtitle>&buildtime;</segtitle>
33 <segtitle>&diskspace;</segtitle>
34
35 <seglistitem>
[37e35d2]36 <seg>&libcap-fin-sbu;</seg>
37 <seg>&libcap-fin-du;</seg>
[1fa2099]38 </seglistitem>
39 </segmentedlist>
40
41 </sect2>
42
43 <sect2 role="installation">
44 <title>Installation of Libcap</title>
45
[9f62bc3]46 <para>Prevent static libraries from being installed:</para>
[1fa2099]47
[9f62bc3]48<screen><userinput remap="pre">sed -i '/install -m.*STA/d' libcap/Makefile</userinput></screen>
[1fa2099]49
50 <para>Compile the package:</para>
51
[5e06d04]52<screen><userinput remap="make">make prefix=/usr lib=lib</userinput></screen>
[1fa2099]53
54 <variablelist>
55 <title>The meaning of the make option:</title>
56
57 <varlistentry>
58 <term><parameter>lib=lib</parameter></term>
59 <listitem>
[f8ea68b]60 <para>This parameter sets the library directory to
[5e06d04]61 <filename>/usr/lib</filename> rather than
62 <filename>/usr/lib64</filename> on x86_64. It has no effect on
[1fa2099]63 x86.</para>
64 </listitem>
65 </varlistentry>
66 </variablelist>
67
[f8ea68b]68 <para>To test the results, issue:</para>
[1fa2099]69
[f8ea68b]70<screen><userinput remap="test">make test</userinput></screen>
71
[5e06d04]72 <para>Install the package and make sure the essential libraries are in
73 the correct directory:</para>
[f8ea68b]74
[5e06d04]75<screen><userinput remap="install">make prefix=/usr lib=lib install
[9f62bc3]76for libname in cap psx; do
[5e06d04]77 mv -v /usr/lib/lib${libname}.so.* /lib
[9f62bc3]78 ln -sfv ../../lib/lib${libname}.so.2 /usr/lib/lib${libname}.so
[5e06d04]79 chmod -v 755 /lib/lib${libname}.so.&libcap-version;
[9f62bc3]80done</userinput></screen>
[1fa2099]81
82 </sect2>
83
[37e35d2]84 <!-- - - - - - - - - - -->
85 <!-- Multilib - 32bit -->
86 <!-- - - - - - - - - - -->
87
[ee1a413]88 <sect2 arch="ml_32,ml_all" role="installation">
[37e35d2]89 <title>Installation of Libcap - 32bit</title>
[8eb3fe4]90
91 <para>Clean previous build:</para>
92
93<screen><userinput remap="pre">make distclean</userinput></screen>
94
95 <para>Compile the package:</para>
96
97<screen><userinput remap="make">make CC="gcc -m32 -march=i686"</userinput></screen>
98
99 <para>Install the package:</para>
100
101<screen><userinput remap="install">make lib=lib32 prefix=$PWD/DESTDIR/usr -C libcap install
[37e35d2]102cp -Rv DESTDIR&usr-lib-m32;/* &usr-lib-m32;
103sed -e "s|^libdir=.*|libdir=&usr-lib-m32;|" -i &usr-lib-m32;/pkgconfig/lib{cap,psx}.pc
104chmod -v 755 &usr-lib-m32;/libcap.so.&libcap-version;
[8eb3fe4]105rm -rf DESTDIR</userinput></screen>
106
[37e35d2]107 </sect2><!-- m32 -->
[8eb3fe4]108
[37e35d2]109 <!-- - - - - - - - - - -->
110 <!-- Multilib - x32bit -->
111 <!-- - - - - - - - - - -->
112
[ee1a413]113 <sect2 arch="ml_x32,ml_all" role="installation">
[37e35d2]114 <title>Installation of Libcap - x32bit</title>
[8eb3fe4]115
116 <para>Clean previous build:</para>
117
118<screen><userinput remap="pre">make distclean</userinput></screen>
119
120 <para>Compile the package:</para>
121
[37e35d2]122<screen><userinput remap="make">make CC="gcc -mx32 -march=x86-64"</userinput></screen>
[8eb3fe4]123
124 <para>Install the package:</para>
125
126<screen><userinput remap="install">make lib=libx32 prefix=$PWD/DESTDIR/usr -C libcap install
[37e35d2]127cp -Rv DESTDIR&usr-lib-mx32;/* &usr-lib-mx32;
128sed -e "s|^libdir=.*|libdir=&usr-lib-mx32;|" -i &usr-lib-mx32;/pkgconfig/lib{cap,psx}.pc
129chmod -v 755 &usr-lib-mx32;/libcap.so.&libcap-version;
[8eb3fe4]130rm -rf DESTDIR</userinput></screen>
131
[37e35d2]132 </sect2><!-- mx32 -->
[8eb3fe4]133
[1fa2099]134 <sect2 id="contents-libcap" role="content">
135 <title>Contents of Libcap</title>
136
137 <segmentedlist>
138 <segtitle>Installed programs</segtitle>
139 <segtitle>Installed library</segtitle>
140
141 <seglistitem>
142 <seg>capsh, getcap, getpcaps, and setcap</seg>
[9f62bc3]143 <seg>libcap.so and libpsx.so</seg>
[1fa2099]144 </seglistitem>
145 </segmentedlist>
146
147 <variablelist>
148 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
149 <?dbfo list-presentation="list"?>
150 <?dbhtml list-presentation="table"?>
151
152 <varlistentry id="capsh">
153 <term><command>capsh</command></term>
154 <listitem>
155 <para>A shell wrapper to explore and constrain capability support</para>
156 <indexterm zone="ch-system-libcap capsh">
157 <primary sortas="b-capsh">capsh</primary>
158 </indexterm>
159 </listitem>
160 </varlistentry>
161
162 <varlistentry id="getcap">
163 <term><command>getcap</command></term>
164 <listitem>
165 <para>Examines file capabilities</para>
166 <indexterm zone="ch-system-libcap getcap">
167 <primary sortas="b-getcap">getcap</primary>
168 </indexterm>
169 </listitem>
170 </varlistentry>
171
172 <varlistentry id="getpcaps">
173 <term><command>getpcaps</command></term>
174 <listitem>
175 <para>Displays the capabilities on the queried process(es)</para>
176 <indexterm zone="ch-system-libcap getpcaps">
177 <primary sortas="b-getpcaps">getpcaps</primary>
178 </indexterm>
179 </listitem>
180 </varlistentry>
181
182 <varlistentry id="setcap">
183 <term><command>setcap</command></term>
184 <listitem>
185 <para>Sets file capabilities</para>
186 <indexterm zone="ch-system-libcap setcap">
187 <primary sortas="b-setcap">setcap</primary>
188 </indexterm>
189 </listitem>
190 </varlistentry>
191
192 <varlistentry id="libcap">
193 <term><filename class="libraryfile">libcap</filename></term>
194 <listitem>
195 <para>Contains the library functions for manipulating POSIX 1003.1e
196 capabilities</para>
197 <indexterm zone="ch-system-libcap libcap">
198 <primary sortas="c-libcap">libcap</primary>
199 </indexterm>
200 </listitem>
201 </varlistentry>
202
[f8ea68b]203 <varlistentry id="libpsx">
204 <term><filename class="libraryfile">libpsx</filename></term>
205 <listitem>
206 <para>Contains functions to support POSIX semantics for syscalls
207 associated with the pthread library</para>
208 <indexterm zone="ch-system-libcap libpsx">
209 <primary sortas="c-libpsx">libpsx</primary>
210 </indexterm>
211 </listitem>
212 </varlistentry>
213
[1fa2099]214 </variablelist>
215
216 </sect2>
217
218</sect1>
Note: See TracBrowser for help on using the repository browser.