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

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_0 v5_0-pre1 v5_1 v5_1-pre1 xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since d50ef4c5 was d50ef4c5, checked in by Larry Lawrence <larry@…>, 21 years ago

more gnome, DJ's patch, Igor's patch

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

  • Property mode set to 100644
File size: 3.1 KB
Line 
1<sect2>
2<title>Configuring nfs-utils</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 ncpfs.
12The permissions on this file should be set to 600, for obvious security
13reasons. 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<para><screen># Begin example <filename>~/.nwclient</filename> config file
19
20Server1/User1 Password
21Server2/User1
22Server2/Guest1 -
23
24# End example .nwclient config file</screen></para>
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 ncpfs tools. If no password is supplied, the client utilities will
33ask for a password when it is needed. If no password is needed, for
34instance when using a guest account, a single '-' should be put in
35place of a password.</para>
36
37<para>It should be noted that the ncpmount is not intended to mount
38individual volumes because each mountpoint 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 IPX protocol at boot, you can create the
44following scripts. These scripts assume IPX will be set up on eth0
45and the network frame type is 802.2. You should confirm that these
46are the correct settings and adjust as necessary.</para>
47
48<para><screen>cat &gt; /etc/sysconfig/network-devices/ifup-ipx0 &lt;&lt; "EOF"
49#!/bin/sh
50# Begin /etc/sysconfig/network-devices/ifup-ipx0
51
52source /etc/sysconfig/rc || exit
53source $rc_functions || exit
54
55echo "Setting up the IPX protocol on eth0..."
56/bin/ipx_interface add eth0 802.2 &amp;&amp;
57/bin/ipx_configure --auto_interface=on --auto_primary=on
58evaluate_retval
59
60# End /etc/sysconfig/network-devices/ifup-ipx0
61EOF
62cat &gt; /etc/sysconfig/network-devices/ifdown-ipx0 &lt;&lt; "EOF"
63#!/bin/sh
64# Begin /etc/sysconfig/network-devices/ifdown-ipx0
65
66source /etc/sysconfig/rc || exit
67source $rc_functions || exit
68
69echo "Stoping IPX on the eth0 interface..."
70/bin/ipx_configure --auto_interface=off --auto_primary=off &amp;&amp;
71/bin/ipx_interface del eth0 802.2
72evaluate_retval
73
74# End /etc/sysconfig/network-devices/ifdown-ipx0
75EOF
76echo "ONBOOT=yes" &gt; /etc/sysconfig/network-devices/ifconfig.ipx0
77chmod 755 /etc/sysconfig/network-devices/ifup-ipx0
78chmod 755 /etc/sysconfig/network-devices/ifdown-ipx0</screen></para>
79
80</sect3>
81
82</sect2>
83
Note: See TracBrowser for help on using the repository browser.