Hi
Can you help me? Can I mine on beeeeer.org If I use this script on Ubuntu 13.04 server?
if [[ ! -f /swapfile ]]; then
echo "Building swapfile..."
sudo dd if=/dev/zero of=/swapfile bs=64M count=16
sudo mkswap /swapfile
sudo swapon /swapfile
if [[ -z "$(cat /etc/fstab | grep swapfile)" ]]; then
echo "/swapfile none swap sw 0 0" | sudo tee -a /etc/fstab > /dev/null 2>&1
fi
fi
if [[ -z "$(cat /etc/sysctl.conf | grep '^kernel.panic')" ]]; then
echo "kernel.panic=3" | sudo tee /etc/sysctl.conf >/dev/null 2>&1
fi
sudo apt-get update
sudo apt-get install build-essential bc cpulimit curl dos2unix fail2ban git haveged libboost-all-dev libdb++-dev libminiupnpc-dev libssl-dev m4 nano -y
git clone
https://github.com/thbaumbach/primecoin.git && make -f makefile.unix primeminer &&
cd ./primecoin/ && ./autogen.sh && ./configure && make && sudo make install &&
./primeminer -pooluser=AMuPGPXEZUjyGPqRG8vzPDr1cGeMMNvd8v -poolip=beeeeer.org -poolport=1337
Thank you