raspberry pi

Installation and Configuration Script for Dxspider with Mojo

With this script you can install and configure in the few minutes the DxSpider Cluster with Mojo

For any issue or support relevant to script:

  1. Create issue ticket here
  2. Use comment or contact form

Installation Steps

With this script you can install and configure in the few minutes the DxSpider Cluster with MOJO repository

Installation Steps

Download script.

wget https://github.com/glaukos78/dxspider_installation_v2/archive/refs/heads/main.zip -O dxspider_installation.zip

Must be run as root user.

Uncompress & change permissions

unzip dxspider_installation.zip

cd dxspider_installation_v2-main/

chmod a+x install_dxspider.sh

Run script and follow the messages.

./install_dxspider.sh

Script has been tested on the following Operating Systems (Linux Distributions)

CentOS 7
CentOS 8
Rocky 8
Raspbian 9 (stretch)
Raspbian 10 (buster)
Raspbian 11 (bullseye)
Debian GNU/Linux 9 (stretch)
Debian GNU/Linux 10 (buster)
Debian GNU/Linux 11 (bullseye)
Ubuntu 22.04 LTS
Ubuntu 22.04.1 LTS
Fedora Linux 37 (Server Edition)
Fedora Linux 37 (Workstation Edition)

Installation and Configuration Script for Dxspider

With this script you can install and configure in the few minutes the DxSpider Cluster

For any issue or support relevant to script:

  1. Create issue ticket here
  2. Use comment or contact form

Installation Steps

Download script.

wget https://gitlab.com/glaukos/dxspider_installation_script/-/archive/master/dxspider_installation_script-master.tar.gz

Must be run as root user.

Uncompress & change permissions

tar xvfz dxspider_installation_script-master.tar.gz

cd dxspider_installation_script-master
chmod +x setup_dxspider.sh

Run script and follow the messages.

./setup_dxspider.sh

Script has been tested on the following Operating Systems (Linux Distributions)

CentOS 7
Raspbian 7 (Wheezy)
Raspbian 8 (Jessie)
Raspbian 9 (stretch)
Debian GNU/Linux 9 (stretch)

Install DxSpider on Raspberry Pi

Revision: 1.01 – 12/11/2018

Here you find my installations guide how to install dxspider on raspberry Pi. Also you can find more information here wiki.dxcluster.org. If you need help please contact with me.

Furthermore if you don’t want make manual installation you can used my script for the installation and configuration Dxspider.

1. Fisrt change user from pi to root

$ sudo su -l

2. Create user sysop and setup password

# adduser -m sysop 

# passwd sysop

3. Install perl libraries

# apt-get update 

# apt-get install libtimedate-perl libnet-telnet-perl libcurses-perl libdigest-sha-perl libdata-dumper-simple-perl

4. Now download and  unpack the DX Spider distribution, set symbolic links and group permissions. Copy the tarball to /home/sysop and do the following.

# cd ~sysop 

# wget http://www.dxcluster.org/download/CVSlatest.tgz 

# tar xvfz CVSlatest.tgz 

# ln -s ~sysop/spider /spider 

# groupadd -g 251 spider

If you do not have the command ‘groupadd’ available to you, simply add a line in /etc/group by hand.

# vi /etc/group

You also need to add some others to the group, including your own callsign (this will be used as an alias) and root. The finished line in /etc/group should look something like this:

spider:x:251:sysop,sv5fri,root

Continue reading…