Skip to content

Instantly share code, notes, and snippets.

View jesusvallejo's full-sized avatar

Jesús Vallejo jesusvallejo

View GitHub Profile
@catchsudheera
catchsudheera / gist:68bcb4747e7e4127cd1162112791c99e
Created December 31, 2024 12:00
Upgrade ubuntu server from EOL version "Lunar" to latest
sudo sed -i 's|http://ports.ubuntu.com/ubuntu-ports|http://old-releases.ubuntu.com/ubuntu|g' /etc/apt/sources.list
sudo apt update && sudo apt upgrade -y
sudo sed -i 's|lunar|mantic|g' /etc/apt/sources.list
sudo apt update && sudo apt upgrade -y
# Had to fix the installs for libc6
sudo apt --fix-broken install
sudo apt dist-upgrade
@lotfio
lotfio / Teamspeak 3 server on debian 9 with auto restart and fail2ban
Last active March 31, 2020 19:21
Teamspeak 3 server on debian 9 with auto restart and fail2ban
# create a ts3 user
adduser --disabled-login ts3
# Get the latest TeamSpeak 3 server files for 64-bit Linux.
wget http://dl.4players.de/ts/releases/3.1.1/teamspeak3-server_linux_amd64-3.2.3.tar.bz2
# Extract the archive.
cd /opt