source: archive/ncpfs.xml

trunk
Last change on this file was 3f2db3a6, checked in by Pierre Labastie <pierre.labastie@…>, 17 months ago

Remove sect1info tags

They only contain a date tag that is nowhere used.

  • Property mode set to 100644
File size: 8.5 KB
RevLine 
[d47e7ea9]1<?xml version="1.0" encoding="ISO-8859-1"?>
[6732c094]2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
[d47e7ea9]4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
[0aeb696]7 <!-- Inserted as a reminder to do this. The mention of a test suite
8 is usually right before the root user installation commands. Please
9 delete these 12 (including one blank) lines after you are done.-->
10
11 <!-- Use one of the two mentions below about a test suite,
12 delete the line that is not applicable. Of course, if the
13 test suite uses syntax other than "make check", revise the
14 line to reflect the actual syntax to run the test suite -->
15
16 <!-- <para>This package does not come with a test suite.</para> -->
17 <!-- <para>To test the results, issue: <command>make check</command>.</para> -->
18
[d47e7ea9]19 <!ENTITY ncpfs-download-http "http://platan.vc.cvut.cz/ftp/pub/linux/ncpfs/ncpfs-&ncpfs-version;.tar.gz">
20 <!ENTITY ncpfs-download-ftp "ftp://platan.vc.cvut.cz/pub/linux/ncpfs/ncpfs-&ncpfs-version;.tar.gz">
[f5f7f9d]21 <!ENTITY ncpfs-md5sum "5fd2ec0680ba7e66df142637e17a5ac9">
[d47e7ea9]22 <!ENTITY ncpfs-size "1.6 MB">
23 <!ENTITY ncpfs-buildsize "30 MB">
24 <!ENTITY ncpfs-time "0.52 SBU">
25]>
26
[547df0bc]27<sect1 id="ncpfs" xreflabel="NCPFS-&ncpfs-version;">
[d93dcd2]28 <?dbhtml filename="ncpfs.html"?>
[bab92281]29
30
[d93dcd2]31 <title>NCPFS-&ncpfs-version;</title>
[bab92281]32
[d93dcd2]33 <indexterm zone="ncpfs">
34 <primary sortas="a-NCPFS">NCPFS</primary>
35 </indexterm>
[bab92281]36
[d93dcd2]37 <sect2 role="package">
38 <title>Introduction to NCPFS</title>
39
40 <para>The <application>NCPFS</application> package
41 contains client and administration tools for use with Novell
42 networks.</para>
[bab92281]43
[d93dcd2]44 <bridgehead renderas="sect3">Package Information</bridgehead>
45 <itemizedlist spacing="compact">
46 <listitem>
47 <para>Download (HTTP): <ulink url="&ncpfs-download-http;"/></para>
48 </listitem>
49 <listitem>
50 <para>Download (FTP): <ulink url="&ncpfs-download-ftp;"/></para>
51 </listitem>
52 <listitem>
53 <para>Download MD5 sum: &ncpfs-md5sum;</para>
54 </listitem>
55 <listitem>
56 <para>Download size: &ncpfs-size;</para>
57 </listitem>
58 <listitem>
59 <para>Estimated disk space required: &ncpfs-buildsize;</para>
60 </listitem>
61 <listitem>
[2174baa]62 <para>Estimated build time: &ncpfs-time;</para>
63 </listitem>
[d93dcd2]64 </itemizedlist>
[bab92281]65
[d93dcd2]66 <bridgehead renderas="sect3">NCPFS Dependencies</bridgehead>
[bab92281]67
[d93dcd2]68 <bridgehead renderas="sect4">Optional</bridgehead>
[4dbbf634]69 <para role="optional"><xref linkend="linux-pam"/> and <xref linkend="php"/></para>
[bab92281]70
[061ec9d]71 <para condition="html" role="usernotes">User Notes:
72 <ulink url="&blfs-wiki;/ncpfs"/></para>
73
[d93dcd2]74 </sect2>
[bab92281]75
[d93dcd2]76 <sect2 role="installation">
77 <title>Installation of NCPFS</title>
78
[17e6d48]79 <para>Install <application>NCPFS</application> by running
[d93dcd2]80 the following commands:</para>
[d47e7ea9]81
82<screen><userinput>./configure --prefix="" --includedir=/usr/include \
83 --mandir=/usr/share/man --datadir=/usr/share &amp;&amp;
84make &amp;&amp;
85make install &amp;&amp;
86make install-dev</userinput></screen>
[bab92281]87
[d93dcd2]88 </sect2>
[bab92281]89
[d93dcd2]90 <sect2 role="commands">
91 <title>Command Explanations</title>
92
93 <para><parameter>--prefix=""</parameter>:
[339fbfb9]94 Installs binaries on the root partition so that they are available at
[d93dcd2]95 boot time. This may not be ideal for all systems. If
96 <filename class="directory">/usr</filename> is mounted locally,
97 <parameter>--prefix=/usr</parameter> may be a better option.</para>
[bab92281]98
[339fbfb9]99 <para><parameter>--includedir=/usr/include</parameter>: Tells
100 <command>configure</command> to look in
101 <filename class="directory">/usr/include</filename> for header
102 files. It also tells <command>make</command> to install
103 <application>NCPFS</application>'s headers here.</para>
[bab92281]104
[339fbfb9]105 <para><parameter>--mandir=/usr/share/man</parameter>: Installs the man
[d93dcd2]106 pages in the correct location.</para>
[bab92281]107
[339fbfb9]108 <para><parameter>--datadir=/usr/share</parameter>: Correctly installs the
[d93dcd2]109 locale files to <filename class="directory">/usr/share</filename>.</para>
[bab92281]110
[d93dcd2]111 <note>
[17e6d48]112 <para>If you do not need to use the IPX protocol, or you use a different
113 IPX package, you can optionally pass <option>--disable-ipx</option> and/or
[bab92281]114 <option>--disable-ipx-tools</option> to the <command>configure</command>
[d93dcd2]115 script to disable these options.</para>
116 </note>
[bab92281]117
[d93dcd2]118 </sect2>
[bab92281]119
[d93dcd2]120 <sect2 role="configuration">
121 <title>Configuring NCPFS</title>
[bab92281]122
[d93dcd2]123 <sect3 id="ncpfs-config">
124 <title>Config Files</title>
[bab92281]125
[d93dcd2]126 <para><filename>~/.nwclient</filename></para>
[bab92281]127
[d93dcd2]128 <indexterm zone="ncpfs ncpfs-config">
129 <primary sortas="e-AA.nwclient">~/.nwclient</primary>
130 </indexterm>
[bab92281]131
[d93dcd2]132 </sect3>
[bab92281]133
[d93dcd2]134 <sect3>
135 <title>Configuration Information</title>
136
[17e6d48]137 <para>A config file <filename>~/.nwclient</filename> should be placed in the
138 home directory of each user that intends to use
139 <application>NCPFS</application>. The permissions on this file should be set
140 to 600, for obvious security reasons. The configuration file should contain
141 a single line per server that the user will use. Each line should contain
[d93dcd2]142 the server name, the user name, and optionally the password. Below is a
143 sample <filename>.nwclient</filename> file.</para>
144
145<screen><literal># Begin example ~/.nwclient config file
[d47e7ea9]146
147Server1/User1 Password
[17e6d48]148Server2/User1
[d47e7ea9]149Server2/Guest1 -
150
[d93dcd2]151# End example .nwclient config file</literal></screen>
152
153 <para>The syntax for the <filename>.nwclient</filename> file is simple,
154 <literal>server_name/user_name password</literal>. Be extremely
155 careful when creating or editing this file as the client utilities are
156 very picky about syntax. There should always be a space immediately
[17e6d48]157 after the username. If this space is substituted by a tab or multiple
158 spaces, you will not get the expected results when attempting to use
159 the <application>NCPFS</application> tools. If no password is supplied,
160 the client utilities will ask for a password when it is needed. If no
161 password is needed, for instance when using a guest account, a single '-'
[d93dcd2]162 should be put in place of a password.</para>
[bab92281]163
[339fbfb9]164 <para>It should be noted that <command>ncpmount</command>
[17e6d48]165 is not intended to mount individual volumes because each mount point
166 creates a separate client connection to the Novell server. Mounting
167 each individual volume separately would be unwise, as mounting all
168 volumes on a server under one mount point uses only one client
[d93dcd2]169 connection.</para>
[bab92281]170
[d93dcd2]171 </sect3>
[bab92281]172
[d93dcd2]173 <sect3 id="ncpfs-init">
174 <title>Boot Script</title>
[bab92281]175
[d93dcd2]176 <para>If you need to set up the IPX protocol at boot, you can install the
[bab92281]177 <filename>/etc/sysconfig/network-devices/services/ipx</filename>
[17e6d48]178 network service script included with the
[5254d12]179 <xref linkend="bootscripts"/> package.</para>
[bab92281]180
181 <indexterm zone="ncpfs ncpfs-init">
[d93dcd2]182 <primary sortas="f-ncpfs">ncpfs (IPX service script)</primary>
[bab92281]183 </indexterm>
[d93dcd2]184
185<screen><userinput>make install-service-ipx</userinput></screen>
186
[17e6d48]187 <para>Next install the
[d93dcd2]188 <filename>/etc/sysconfig/network-devices/ifconfig.eth0/ipx</filename>
189 configuration file with the following commands:</para>
190
[e3353b3]191<screen role="root"><userinput>install -v -d /etc/sysconfig/network-devices/ifconfig.eth0 &amp;&amp;
[d93dcd2]192cat &gt; /etc/sysconfig/network-devices/ifconfig.eth0/ipx &lt;&lt; "EOF"
193<literal>ONBOOT="yes"
[afa198d]194SERVICE="ipx"
[061ec9d]195FRAME="<replaceable>&lt;802.2&gt;</replaceable>"</literal>
[d93dcd2]196EOF</userinput></screen>
[bab92281]197
[d93dcd2]198 </sect3>
[bab92281]199
[d93dcd2]200 </sect2>
[bab92281]201
[d93dcd2]202 <sect2 role="content">
203 <title>Contents</title>
[bab92281]204
[d93dcd2]205 <segmentedlist>
206 <segtitle>Client Utilities</segtitle>
207 <segtitle>Server Admin Utilities</segtitle>
208 <segtitle>IPX Interface Utilities</segtitle>
[339fbfb9]209 <segtitle>Other Utilities</segtitle>
[d93dcd2]210 <segtitle>Installed Libraries</segtitle>
211 <segtitle>Installed Directories</segtitle>
[bab92281]212
[d93dcd2]213 <seglistitem>
[17e6d48]214 <seg>ncpmount, ncpumountt, nprintt, nsendt, nwpasswdt,
[d93dcd2]215 nwsfindt, pqlistt, pqrmt, pqstatt, and slist</seg>
[17e6d48]216 <seg>ncopyt, nwbocreatet, nwbolst, nwbopropst, nwbormt,
217 nwbpaddt, nwbpcreatet, nwbprmt, nwbpsett, nwbpvaluest,
218 nwdirt, nwdpvaluest, nwfsctrlt, nwfsinfot, nwfstimet, nwgrantt,
219 nwpurget, nwrevoket, nwrightst, nwtrusteet, nwtrustee2t,
[d93dcd2]220 nwuserlistt, and nwvolinfo</seg>
[17e6d48]221 <seg>ipx_cmdt, ipx_configuret, ipx_interfacet, ipx_internal_nett,
[d93dcd2]222 and ipx_route</seg>
223 <seg>ncpmap and nwauth</seg>
224 <seg>None</seg>
225 <seg>None</seg>
226 </seglistitem>
227 </segmentedlist>
228
229 </sect2>
[d9d389b5]230
231</sect1>
Note: See TracBrowser for help on using the repository browser.