What's a VPS (Virtual Private Server) and why do you want one?
There are MANY to choose from but, I went with ChunkHost
They offer basic VPS services with easy sign-up & multiple payment options.
Their most modest offer comes in @ $60USD a Year. For $5/month, users receive:
(No official project ties but, I plan on making regular contributions toward the project)
If you use this referral code:
I'll send you 2 SBD!
To redeem the offer, find me in chat and we'll walk through a quick verification process!
Using ssh (putty is handy if using Windows)
$ ssh root@yourIP
Setup Non-Privledged User
sudo adduser username; sudo usermod -aG sudo username
Enable Unattended Security Updates
sudo apt-get install -y unattended-upgrades apt-listchanges
sudo rm /etc/apt/apt.conf.d/20auto-upgrades
l1="APT::Periodic::Update-Package-Lists \"1\";"
l2="APT::Periodic::Unattended-Upgrade \"1\";"
echo $l1 | sudo tee -a /etc/apt/apt.conf.d/20auto-upgrades
echo $l2 | sudo tee -a /etc/apt/apt.conf.d/20auto-upgrades
Scheduled Daily Updates
echo '30 00 * * * root (apt-get update && apt-get -y upgrade) > /dev/null' | sudo tee -a /etc/crontab
Weekly Reboot
echo '01 00 * * 0 root (apt-get update && apt-get -y upgrade) > /dev/null /sbin/shutdown -r ' | sudo tee -a /etc/crontab
Do the best job hardening your time/money allow!
All questions, comments, corrections, love and hate are welcome!