Skip to content

Instantly share code, notes, and snippets.

@MrUnknownDE
Last active April 15, 2020 18:17
Show Gist options
  • Save MrUnknownDE/3a81906263e3ea53b9f9238b234b17c0 to your computer and use it in GitHub Desktop.
Save MrUnknownDE/3a81906263e3ea53b9f9238b234b17c0 to your computer and use it in GitHub Desktop.
a little Gist for Ts3AudioBot User
#####################################
# #
# #
# Ts3AudioBot #
# Install-Doc #
# #
# Debian 10 -> Zeile 17 #
# Ubuntu 19.04 -> Zeile 51 #
# #
# #
#####################################
#
# Debian 10
#
## Install DOTNET-3.1
apt install apt-transport-https gpg
wget -O- https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.asc.gpg
sudo mv microsoft.asc.gpg /etc/apt/trusted.gpg.d/
wget https://packages.microsoft.com/config/debian/10/prod.list
sudo mv prod.list /etc/apt/sources.list.d/microsoft-prod.list
sudo chown root:root /etc/apt/trusted.gpg.d/microsoft.asc.gpg
sudo chown root:root /etc/apt/sources.list.d/microsoft-prod.list
apt update
apt install dotnet-sdk-2.2 dotnet-sdk-3.1
## Install Opus and FFMPEG
apt install libopus-dev ffmpeg -y
## Install Youtube-DL
sudo curl -L https://yt-dl.org/downloads/latest/youtube-dl -o /usr/local/bin/youtube-dl
sudo chmod a+rx /usr/local/bin/youtube-dl
## Install Ts3AudioBot
wget -O Bot.zip https://splamy.de/api/nightly/ts3ab/develop/download
apt install unzip -y && unzip Bot.zip -d Bot && cd Bot/
## Running Ts3AudioBot
dotnet TS3AudioBot.dll
#
# Ubuntu 18.04
#
## Install DOTNET-3.1
wget https://packages.microsoft.com/config/ubuntu/18.04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb
sudo dpkg -i packages-microsoft-prod.deb
add-apt-repository universe
apt update
apt install apt-transport-https
apt update
apt install dotnet-sdk-2.2 dotnet-sdk-3.1
## Install Opus and FFMPEG
apt install libopus-dev ffmpeg -y
## Install Youtube-DL
sudo curl -L https://yt-dl.org/downloads/latest/youtube-dl -o /usr/local/bin/youtube-dl
sudo chmod a+rx /usr/local/bin/youtube-dl
##Install Ts3AudioBot
wget -O Bot.zip https://splamy.de/api/nightly/ts3ab/develop/download
apt install unzip -y && unzip Bot.zip -d Bot && cd Bot/
## Running Ts3AudioBot
dotnet TS3AudioBot.dll
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment