About Blog Posts Contact Us RPi Image FlashDrive mini HPC Resources

Index of all Pages

About
Blog Posts
Contact Us
Current Unknowns and Testing
Flash Drive
Creating an flashdrive image: step-by-step
Carpentries Offline
Building a mini HPC
Setting up the miniHPC login node
The Original Team
Resources for Offline Data Science
SD Card Image for Raspberry Pi
Creating an SD card imgae: step-by-step


HOWTO: Setting up a CarpenPi workshop
Setting up a Raspberry Pi
Easybuild/lmod notes

docs

Setting up the miniHPC login node

(Work in progress)

sudo apt-get update
sudo apt-get full-upgrade
sudo apt-get install -y nfs-kernel-server lmod ansible slurm munge nmap \ 
nfs-common net-tools build-essential htop net-tools screen vim python3-pip \
dnsmasq slurm-wlm
echo pixie001 | sudo tee -a /etc/hostname
interface eth0
static ip_address=192.168.0.1/24
static routers=192.168.0.1
static domain_name_servers=192.168.0.1
interface=eth0
bind-dynamic
domain-needed
bogus-priv
dhcp-range=192.168.0.1,192.168.0.100,255.255.255.0,12h
/sharedfs    192.168.0.0/24(rw,sync,no_root_squash,no_subtree_check)
/modules     192.168.0.0/24(rw,sync,no_root_squash,no_subtree_check)
127.0.0.1	localhost
::1		localhost ip6-localhost ip6-loopback
ff02::1		ip6-allnodes
ff02::2		ip6-allrouters

127.0.1.1	pixie001

192.168.0.2	pixie002
192.168.0.3	pixie003
192.168.0.4	pixie004
192.168.0.5	pixie005
sudo mkdir /sharedfs
sudo chown nobody.nogroup -R /sharedfs
sudo chmod 777 -R /sharedfs