28cb629eea7fec7cab8e37267829875edcabb413
[spider.git] / html / installation-1.html
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
2 <HTML>
3 <HEAD>
4  <META NAME="GENERATOR" CONTENT="SGML-Tools 1.0.9">
5  <TITLE>The DXSpider Installation Manual v1.49: Linux Installation </TITLE>
6  <LINK HREF="installation-2.html" REL=next>
7
8  <LINK HREF="installation.html#toc1" REL=contents>
9 <link rel=stylesheet href="style.css" type="text/css" title="default stylesheet">
10 </HEAD>
11 <BODY>
12 <A HREF="installation-2.html">Next</A>
13 Previous
14 <A HREF="installation.html#toc1">Contents</A>
15 <HR>
16 <H2><A NAME="s1">1. Linux Installation </A></H2>
17
18 <H2><A NAME="ss1.1">1.1 Introduction</A>
19 </H2>
20
21 <P>This section describes the installation of DX Spider v1.47 on a 
22 <A HREF="http://www.redhat.com">RedHat</A> Linux Distribution.
23 Wherever possible I will try to include differences for other distributions.  
24 I do not intend to try and cover the installation of Linux or the setup 
25 of the AX25 utilities.  If you need help on this then read Iains original 
26 installation guide that comes with the Spider distribution.
27 <P>
28 <P>I am assuming a general knowledge of Linux and its commands.  You should 
29 know how to use <EM>tar</EM> and how to edit files using your favourite editor.
30 <P>
31 <P>The crucial ingredient for all of this is 
32 <A HREF="http://www.perl.org">Perl</A>.  Earlier versions of
33 Spider required perl 5.004, however it is now <I>STRONGLY</I> recommended
34 that you use at least version 5.005_03 as this is the version being used
35 in the development of Spider.
36 <P>
37 <P>In addition to the standard Red Hat distribution you will require the 
38 following modules from 
39 <A HREF="http://www.cpan.org/CPAN.html">http://www.cpan.org/CPAN.html</A> , please note however that with later versions of perl, some of these
40 modules may be included with the distribution.  Get the modules anyway and try
41 to install as below.  If they complain, they are probably already a part of your
42 perl distribution.
43 <P>
44 <P>
45 <UL>
46 <LI> 
47 <A HREF="http://www.cpan.org/modules/by-module/Data/Data-Dumper-2.10.tar.gz">Data-Dumper-2.10.tar.gz</A></LI>
48 <LI> 
49 <A HREF="http://www.cpan.org/modules/by-module/Date/TimeDate-1.10.tar.gz">TimeDate-1.10.tar.gz</A></LI>
50 <LI> 
51 <A HREF="http://www.cpan.org/modules/by-module/IO/IO-1.20.tar.gz">IO-1.20.tar.gz (for perl 5.00403 and lower)</A></LI>
52 <LI> 
53 <A HREF="http://www.cpan.org/modules/by-module/Net/Net-Telnet-3.02.tar.gz">Net-Telnet-3.02.tar.gz</A></LI>
54 <LI> 
55 <A HREF="http://www.cpan.org/modules/by-module/Curses/Curses-1.06.tar.gz">Curses-1.06.tar.gz</A></LI>
56 <LI> 
57 <A HREF="http://www.cpan.org/modules/by-module/Time/Time-HiRes-01.20.tar.gz">Time-HiRes-01.20.tar.gz</A></LI>
58 </UL>
59 <P>
60 <P>Copy the CPAN modules listed above to a convenient place on your computer. One good 
61 place would be /usr/local/packages, and the instructions which follow will assume that 
62 that's where you have put them.
63 <P>
64 <P>Log in as 'root', and make sure you're at '/root' before you continue. Here are exactly the commands you must issue next: -
65 <P>
66 <PRE>
67 # tar xvfz /usr/local/packages/Data-Dumper-2.10.tar.gz
68 # cd Data-Dumper-2.10
69 # perl Makefile.PL
70 # make test
71 # make install
72 # cd ..
73 #
74 # tar xvfz /usr/local/packages/TimeDate-1.10.tar.gz
75 # cd TimeDate-1.10
76 # perl Makefile.PL
77 # make test
78 # make install
79 # cd ..
80 #
81 # tar xvfz /usr/local/packages/IO-1.20.tar.gz
82 # cd IO-1.20
83 # perl Makefile.PL
84 # make test
85 # make install UNINST=1
86 # cd ..
87 #
88 # tar xvfz /usr/local/packages/Net-Telnet-3.02.tar.gz
89 # cd Net-Telnet-3.02
90 # perl Makefile.PL
91 # make test
92 # make install
93 # cd ..
94 #
95 # tar xvfz /usr/local/packages/Curses-1.06.tar.gz
96 # cd Curses-1.06
97 # perl Makefile.PL
98 # make test
99 # make install
100 # cd ..
101 #
102 # tar xvfz /usr/local/packages/Time-HiRes-01.20.tar.gz 
103 # cd Time-HiRes-01.20
104 # perl Makefile.PL
105 # make test
106 # make install
107 # cd ..
108 </PRE>
109 <P>
110 <P>Do not fall into the trap of thinking they're all the same, just because they 
111 nearly are! Pay particular attention to the instructions of <EM>IO</EM>, above.
112 <P>
113 <P>
114 <H2><A NAME="ss1.2">1.2 Preparation</A>
115 </H2>
116
117 <P>I will assume that you have already downloaded the latest tarball of 
118 the DXSpider software and are ready to install it. I am assuming version 
119 1.47 for this section but of course you would use the latest version.
120 <P>
121 <P>Login as root and create a user to run the cluster under.  <B><I>UNDER 
122 NO CIRCUMSTANCES USE ROOT AS THIS USER!</I></B>.  I am going to use 
123 the name <EM>sysop</EM>.  You can call it anything you wish.  Depending 
124 on your security requirements you may wish to use an existing user, 
125 however this is your own choice.
126 <P>
127 <BLOCKQUOTE><CODE>
128 <PRE>
129 # adduser -m sysop
130 </PRE>
131 </CODE></BLOCKQUOTE>
132 <P>
133 <P>For SUSE distributions, the command would be ..
134 <P>
135 <BLOCKQUOTE><CODE>
136 <PRE>
137 # useradd -m sysop
138 </PRE>
139 </CODE></BLOCKQUOTE>
140 <P>
141 <P>Now set a password for the user ...
142 <P>
143 <BLOCKQUOTE><CODE>
144 <PRE>
145 # passwd sysop
146 # New UNIX password:
147 # Retype new UNIX password:
148 passwd: all authentication tokens updated successfully
149 </PRE>
150 </CODE></BLOCKQUOTE>
151 <P>
152 <H2><A NAME="ss1.3">1.3 Installing the software</A>
153 </H2>
154
155 <P>Now to unpack the DX Spider distribution, set symbolic links and group 
156 permissions.  Copy the tarball to /home/sysop and do the following.
157 <P>
158 <BLOCKQUOTE><CODE>
159 <PRE>
160 # cd ~sysop
161 # tar xvfz spider-1.47.tar.gz
162 # ln -s ~sysop/spider /spider
163 # groupadd -g 251 spider       (or another number)
164 </PRE>
165 </CODE></BLOCKQUOTE>
166 <P>
167 <P>If you do not have the command <EM>groupadd</EM> available to you simply 
168 add a line in /etc/group by hand.
169 <P>
170 <BLOCKQUOTE><CODE>
171 <PRE>
172 # vi /etc/group                (or your favorite editor)
173 </PRE>
174 </CODE></BLOCKQUOTE>
175 <P>
176 <P>You also need to add some others to the group, including your own callsign 
177 (this will be used as an alias) and root.  The finished line in /etc/group 
178 should look something like this
179 <P><CODE>spider:x:251:sysop,g0vgs,root</CODE>
180 <P>
181 <P>The next step is to set the permissions on the Spider directory tree and files ....
182 <P>
183 <BLOCKQUOTE><CODE>
184 <PRE>
185 # chown -R sysop.spider spider
186 # find . -type d -exec chmod 2775 {} \;
187 # find . -type f -exec chmod 775 {} \;
188 </PRE>
189 </CODE></BLOCKQUOTE>
190 <P>
191 <P>This last step allows various users of the group <EM>spider</EM> to have 
192 write access to all the directories.  This is not really needed just yet 
193 but will be useful when web interfaces start to appear.
194 <P>
195 <P>Finally, you need to fix the permissions on the ax25_call and netrom_call 
196 programs.  Check where they are with the <EM>locate</EM> command and alter 
197 the permissions with the <EM>chmod</EM> command like this ..
198 <P>
199 <BLOCKQUOTE><CODE>
200 <PRE>
201 # chown root ax25_call netrom_call
202 # chmod 4775 ax25_call netrom_call
203 </PRE>
204 </CODE></BLOCKQUOTE>
205 <P>
206 <H2><A NAME="ss1.4">1.4 Setting callsigns etc</A>
207 </H2>
208
209 <P>Now login to your machine as the user you created earlier.  In my case that 
210 user is called <EM>sysop</EM>.  Once logged in, issue the following commands ....
211 <P>
212 <BLOCKQUOTE><CODE>
213 <PRE>
214 $ cd /spider
215 $ mkdir local
216 $ mkdir local_cmd
217 $ cp perl/DXVars.pm.issue local/DXVars.pm
218 $ cd local
219 $ vi DXVars.pm (or your favourite editor)
220 </PRE>
221 </CODE></BLOCKQUOTE>
222 <P>
223 <P>Using the distributed DXVars.pm as a a template, set your cluster callsign, 
224 sysop callsign and other user info to suit your own environment. 
225 <P>
226 <BLOCKQUOTE><CODE>
227 <PRE>
228 $mycall = "GB7DJK";     
229 </PRE>
230 </CODE></BLOCKQUOTE>
231 <P>
232 <P>This is the call sign of your cluster.  If you use an SSID then include it here
233 also.
234 <P>
235 <BLOCKQUOTE><CODE>
236 <PRE>
237 $myalias = "G1TLH";
238 </PRE>
239 </CODE></BLOCKQUOTE>
240 <P>
241 <P>This is the sysop user callsign, normally your own.
242 <P>
243 <P><B>PLEASE USE CAPITAL LETTERS FOR CALLSIGNS</B>
244 <P>
245 <P>Note that this a perl file which will be parsed and executed as part of the 
246 cluster. If you get it wrong then perl will complain when you start the cluster 
247 process.  It is important only to alter the text of any section.  Some of the 
248 lines look a little odd.  Take this line for example ....
249 <P><CODE>$myemail = "ianmaude\@btinternet.com";</CODE>
250 <P>
251 <P>There appears to be an extra slash in there.  However this has to be there 
252 for the file to work so leave it in.
253 <P>
254 <P>DON'T alter any file in /spider/perl, they are overwritten with every
255 release. Any files or commands you place in /spider/local or /spider/local_cmd 
256 will automagically be used in preference to the ones in /spider/perl EVEN 
257 while the cluster is running!
258 <P>
259 <P>Save the new file and change directory to ../perl ....
260 <P>
261 <BLOCKQUOTE><CODE>
262 <PRE>
263 $ cd ../perl
264 </PRE>
265 </CODE></BLOCKQUOTE>
266 <P>
267 <P>Now type the following command which creates the basic user file with you as 
268 the sysop.
269 <P>
270 <BLOCKQUOTE><CODE>
271 <PRE>
272 $ ./create_sysop.pl
273 </PRE>
274 </CODE></BLOCKQUOTE>
275 <P>
276 <H2><A NAME="ss1.5">1.5 The client program</A>
277 </H2>
278
279 <P>In earlier versions of Spider, all the processes were Perl scripts.  This
280 was fine but with a lot of users your computer memory would soon be used up.
281 To combat this a new client was written in "C".  This client only works for
282 <EM>incoming</EM> connects at the moment.  Before you can use it though it
283 has to be "made".  CD to /spider/src and type <EM>make</EM>.  You
284 should see the output on your screen and hopefully now have a small C program
285 called <EM>client</EM>.  Leave it in this directory.
286 <P>
287 <P>
288 <H2><A NAME="ss1.6">1.6 Starting up for the first time</A>
289 </H2>
290
291 <P>We can now bring spider up for the first time and see if all is well or not!  
292 It should look something like this ...
293 <P>
294 <BLOCKQUOTE><CODE>
295 <PRE>
296 $ ./cluster.pl
297 DXSpider DX Cluster Version 1.47
298 Copyright (c) 1998 Dirk Koopman G1TLH
299 loading prefixes ...
300 loading band data ...
301 loading user file system ...
302 starting listener ...
303 reading existing message headers
304 reading cron jobs
305 orft we jolly well go ...
306 </PRE>
307 </CODE></BLOCKQUOTE>
308 <P>
309 <P>If all is well then login on another term or console as <EM>sysop</EM> and 
310 cd to /spider/src.  Now issue the following command ...
311 <P>
312 <BLOCKQUOTE><CODE>
313 <PRE>
314 $ ./client
315 </PRE>
316 </CODE></BLOCKQUOTE>
317 <P>
318 <P>This should log you into the cluster as the sysop under the alias callsign we 
319 set earlier.  In this case the callsign is G0VGS.  The cluster callsign is set 
320 in the DXVars.pm file in /spider/local.  In this case we will assume that this 
321 was set as GB7MBC.  You should therefore see this when you login ....
322 <P>
323 <BLOCKQUOTE><CODE>
324 <PRE>
325 G0VGS de GB7MBC 19-Nov-1999 2150Z >
326 </PRE>
327 </CODE></BLOCKQUOTE>
328 <P>
329 <P>If you do, congratulations!  If not, look over the instructions again, you 
330 have probably missed something out.  You can shut spider down again with the 
331 command ....
332 <P>
333 <BLOCKQUOTE><CODE>
334 <PRE>
335 shutdown
336 </PRE>
337 </CODE></BLOCKQUOTE>
338 <P>
339 <P>and both the cluster and the client should return to Linux prompts.
340 <P>
341 <P>
342 <HR>
343 <A HREF="installation-2.html">Next</A>
344 Previous
345 <A HREF="installation.html#toc1">Contents</A>
346 </BODY>
347 </HTML>