source: basicnet/netprogs/ncpfs/ncpfs-config.xml@ b5ea3492

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.0 6.1 6.2 6.2.0 6.2.0-rc1 6.2.0-rc2 6.3 6.3-rc1 6.3-rc2 6.3-rc3 7.10 7.4 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb v5_1 v5_1-pre1 xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since b5ea3492 was b5ea3492, checked in by Tushar Teredesai <tushar@…>, 20 years ago

The march to lfs-bootscripts begins

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

  • Property mode set to 100644
File size: 2.8 KB
Line 
1<sect2>
2<title>Configuring <application>NCPFS</application></title>
3
4<sect3><title>Config files</title>
5<para><filename>~/.nwclient</filename></para>
6</sect3>
7
8<sect3><title>Configuration Information</title>
9
10<para>A config file <filename>~/.nwclient</filename> should be placed
11in the home directory of each user that intends to use <application>ncpfs
12</application>. The permissions on this file should be set to 600, for obvious
13security reasons. The configuration file should contain a single line
14per server that the user will use. Each line should contain
15the server name, the user name, and optionally the password. Below is a
16sample <filename>.nwclient</filename> file.</para>
17
18<screen><userinput># Begin example <filename>~/.nwclient</filename> config file
19
20Server1/User1 Password
21Server2/User1
22Server2/Guest1 -
23
24# End example .nwclient config file</userinput></screen>
25
26<para>The syntax for the <filename>.nwclient</filename> file is simple,
27<userinput>server_name/user_name password</userinput>. Be extremely
28careful when creating or editing this file as the client utilities are
29very picky about syntax. There should always be a space immediately
30after the username. If this space is substituted by a tab or multiple
31spaces, you will not get the expected results when attempting to use
32the <application>NCPFS</application> tools. If no password is supplied,
33the client utilities will ask for a password when it is needed. If no
34password is needed, for instance when using a guest account, a single '-'
35should be put in place of a password.</para>
36
37<para>It should be noted that the ncpmount is not intended to mount
38individual volumes because each mount point creates a separate client
39connection to the Novell server. Mounting each individual volume
40separately would be unwise, as mounting all volumes on a server
41under one mount point uses only one client connection.</para>
42
43<para>If you need to set up the <acronym>IPX</acronym> protocol at boot,
44you can install the
45<filename>/etc/sysconfig/network-devices/services/ipx</filename>
46network service script included with the
47<xref linkend="intro-important-bootscripts"/> package.</para>
48
49<screen><userinput><command>make install-service-ipx</command></userinput></screen>
50
51<para>Next install the configurations script,
52<filename>ifconfig.ipx0</filename>. The configuration assumes
53<acronym>IPX</acronym> will be set up on
54<emphasis role="strong">eth0</emphasis>
55and the network frame type is 802.2. You should confirm that these are
56the correct settings and adjust as necessary.</para>
57
58<para><emphasis>Note</emphasis>: This will overwrite any existing file.</para>
59
60<screen><userinput><command>cat &gt; /etc/sysconfig/network-devices/ifconfig.ipx0 &lt;&lt; "EOF"</command>
61ONBOOT=yes
62SERVICE=ipx
63IPXDEV=eth0
64FRAME=802.2
65<command>EOF</command></userinput></screen>
66
67</sect3>
68
69</sect2>
Note: See TracBrowser for help on using the repository browser.