This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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 |