source: networking/netprogs/cifsutils.xml@ 3310eeb1

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 3310eeb1 was 3310eeb1, checked in by DJ Lucas <dj@…>, 6 years ago

Update to samba-4.7.5. Fixes #10353.
Tags for NT related packages.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@19901 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 8.2 KB
Line 
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 <!ENTITY cifsutils-download-http "https://www.samba.org/ftp/linux-cifs/cifs-utils/cifs-utils-&cifsutils-version;.tar.bz2">
8 <!ENTITY cifsutils-download-ftp " ">
9 <!ENTITY cifsutils-md5sum "af3ae1d27aca624c4daac5bf3eb0d4c1">
10 <!ENTITY cifsutils-size "356 KB">
11 <!ENTITY cifsutils-buildsize "3.1 MB">
12 <!ENTITY cifsutils-time "less than 0.1 SBU">
13]>
14
15<sect1 id="cifsutils" xreflabel="cifs-utils-&cifsutils-version;">
16 <?dbhtml filename="cifsutils.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>cifs-utils-&cifsutils-version;</title>
24
25 <indexterm zone="cifsutils">
26 <primary sortas="a-cifsutils">cifs-utils</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to cifs-utils</title>
31
32 <para>The <application>cifs-utils</application> provides a means for
33 mounting SMB/CIFS shares on a Linux system.</para>
34
35 &lfs82_checked;
36
37 <bridgehead renderas="sect3">Package Information</bridgehead>
38 <itemizedlist spacing="compact">
39 <listitem>
40 <para>Download (HTTP): <ulink url="&cifsutils-download-http;"/></para>
41 </listitem>
42 <listitem>
43 <para>Download (FTP): <ulink url="&cifsutils-download-ftp;"/></para>
44 </listitem>
45 <listitem>
46 <para>Download MD5 sum: &cifsutils-md5sum;</para>
47 </listitem>
48 <listitem>
49 <para>Download size: &cifsutils-size;</para>
50 </listitem>
51 <listitem>
52 <para>Estimated disk space required: &cifsutils-buildsize;</para>
53 </listitem>
54 <listitem>
55 <para>Estimated build time: &cifsutils-time;</para>
56 </listitem>
57 </itemizedlist>
58
59 <bridgehead renderas="sect3">cifs-utils Dependencies</bridgehead>
60
61 <bridgehead renderas="sect4">Required</bridgehead>
62 <para role="required">
63 <xref linkend="talloc"/>
64 </para>
65
66 <bridgehead renderas="sect4">Optional</bridgehead>
67 <para role="optional">
68 <xref linkend="keyutils"/> (required to build PAM module),
69 <xref linkend="linux-pam"/>,
70 <xref linkend="mitkrb"/>,
71 <xref linkend="samba"/>, and
72 <ulink url="http://people.redhat.com/sgrubb/libcap-ng/">libcap-ng</ulink> or
73 <xref linkend="libcap-pam"/>
74 </para>
75
76 <para condition="html" role="usernotes">User Notes:
77 <ulink url="&blfs-wiki;/cifsutils"/></para>
78
79 </sect2>
80
81 <sect2 role="kernel" id="cifsutils-kernel">
82 <title>Kernel Configuration</title>
83
84 <para>
85 Enable the following options in the kernel configuration and recompile the
86 kernel if necessary:
87 </para>
88
89<screen><literal>File systems ---&gt;
90 [*] Network File Systems ---&gt; [CONFIG_NETWORK_FILESYSTEMS]
91 &lt;*/M&gt; CIFS support (advanced network filesystem, SMBFS successor) [CONFIG_CIFS]</literal></screen>
92
93 <indexterm zone="cifsutils cifsutils-kernel">
94 <primary sortas="d-cifsutils">cifs-utils</primary>
95 </indexterm>
96
97 </sect2>
98
99 <sect2 role="installation">
100 <title>Installation of cifs-utils</title>
101
102 <para>Install <application>cifs-utils</application> by running the following
103 commands:</para>
104
105<screen revision="sysv"><userinput>autoreconf -fiv &amp;&amp;
106./configure --prefix=/usr \
107 --disable-pam \
108 --disable-systemd &amp;&amp;
109make</userinput></screen>
110
111<screen revision="systemd"><userinput>autoreconf -fiv &amp;&amp;
112./configure --prefix=/usr \
113 --disable-pam &amp;&amp;
114make</userinput></screen>
115
116 <para>This package does not come with a test suite.</para>
117
118 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
119
120<screen role="root"><userinput>make install</userinput></screen>
121
122 </sect2>
123
124 <sect2 role="commands">
125 <title>Command Explanations</title>
126
127 <para><parameter>--disable-pam</parameter>: Do not build PAM support.
128 Remove it and use <option>--with-pamdir</option> (see below),
129 if <xref linkend="linux-pam"/> is installed and you wish
130 PAM support.</para>
131
132 <para revision="sysv"><parameter>--disable-systemd</parameter>:
133 Disable systemd specific behavior for
134 <command>mount.cifs</command>. Remove it for systems running with
135 systemd.</para>
136
137 <para><option>--with-pamdir=/lib/security</option>: Install the PAM
138 module in
139 <filename class="directory">/lib/security</filename>.</para>
140
141 </sect2>
142
143 <sect2 role="content">
144 <title>Contents</title>
145
146 <segmentedlist>
147 <segtitle>Installed Programs</segtitle>
148 <segtitle>Installed Library</segtitle>
149 <segtitle>Installed Directory</segtitle>
150
151 <seglistitem>
152 <seg> getcifsacl, mount.cifs and setcifsacl;
153 optional: cifs.idmap, cifs.upcall and cifscreds</seg>
154 <seg>/usr/lib/cifs-utils/idmapwb.so and optionally
155 PAM module /lib/security/pam_cifscreds.so</seg>
156 <seg>/usr/lib/cifs-utils</seg>
157 </seglistitem>
158 </segmentedlist>
159
160 <variablelist>
161 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
162 <?dbfo list-presentation="list"?>
163 <?dbhtml list-presentation="table"?>
164
165 <varlistentry id="cifs.idmap">
166 <term><command>cifs.idmap</command></term>
167 <listitem>
168 <para>is a userspace helper program for the linux CIFS client
169 filesystem. There are a number of activities that the kernel cannot
170 easily do itself. This program is a callout program that does these
171 things for the kernel and then returns the result. It is not intended
172 to be run from the command-line.</para>
173 <indexterm zone="cifsutils cifs.idmap">
174 <primary sortas="b-cifs.idmap">cifs.idmap</primary>
175 </indexterm>
176 </listitem>
177 </varlistentry>
178
179 <varlistentry id="cifs.upcall">
180 <term><command>cifs.upcall</command></term>
181 <listitem>
182 <para>is a userspace helper program for the linux CIFS client
183 filesystem. It is intended to be run when the kernel calls
184 request-key for a particular key type. It is not intended to be
185 run from the command-line.</para>
186 <indexterm zone="cifsutils cifs.upcall">
187 <primary sortas="b-cifs.upcall">cifs.upcall</primary>
188 </indexterm>
189 </listitem>
190 </varlistentry>
191
192 <varlistentry id="cifscreds">
193 <term><command>cifscreds</command></term>
194 <listitem>
195 <para>is a tool for managing credentials (username and password)
196 for the purpose of establishing sessions in multiuser mounts.</para>
197 <indexterm zone="cifsutils cifscreds">
198 <primary sortas="b-cifscreds">cifscreds</primary>
199 </indexterm>
200 </listitem>
201 </varlistentry>
202
203 <varlistentry id="getcifsacl">
204 <term><command>getcifsacl</command></term>
205 <listitem>
206 <para>is a userspace helper to display an ACL in a security
207 descriptor for Common Internet File System (CIFS).</para>
208 <indexterm zone="cifsutils getcifsacl">
209 <primary sortas="b-getcifsacl">getcifsacl</primary>
210 </indexterm>
211 </listitem>
212 </varlistentry>
213
214 <varlistentry id="mount.cifs">
215 <term><command>mount.cifs</command></term>
216 <listitem>
217 <para>mounts a Linux CIFS filesystem. It is usually invoked
218 indirectly by the mount(8) command when using the "-t cifs" option.
219 </para>
220 <indexterm zone="cifsutils mount.cifs">
221 <primary sortas="b-mount.cifs">mount.cifs</primary>
222 </indexterm>
223 </listitem>
224 </varlistentry>
225
226 <varlistentry id="setcifsacl">
227 <term><command>setcifsacl</command></term>
228 <listitem>
229 <para>is intended to alter an ACL of a security descriptor for a file
230 system object.</para>
231 <indexterm zone="cifsutils setcifsacl">
232 <primary sortas="b-setcifsacl">setcifsacl</primary>
233 </indexterm>
234 </listitem>
235 </varlistentry>
236
237 </variablelist>
238
239 </sect2>
240
241</sect1>
Note: See TracBrowser for help on using the repository browser.