1
0
mirror of https://github.com/tiyn/wiki.git synced 2025-04-19 22:17:45 +02:00

Compare commits

...

2 Commits

Author SHA1 Message Date
e414f0ce82 teamspeak: added ts5 2023-10-03 03:09:30 +02:00
71d092d1ec teamspeak: added sound pack installation guide 2023-10-03 02:24:36 +02:00
3 changed files with 63 additions and 32 deletions

View File

@ -1,9 +1,9 @@
# teamspeak
This is a [Docker](/wiki/docker.md) container for a
[teamspeak3](../teamspeak3.md) server.
[Teamspeak3](/wiki/teamspeak.md) server.
The official container and documentation was made by
[teamspeak](https://hub.docker.com/_/teamspeak).
[Teamspeak](https://hub.docker.com/_/teamspeak).
## Set-up

61
wiki/teamspeak.md Normal file
View File

@ -0,0 +1,61 @@
# Teamspeak
[Teamspeak](https://www.teamspeak.com) is a voice-over-IP service.
There are 2 versions currently maintained.
Teamspeak3 is the older version.
Teampeak5 or just short Teamspeak is the newer version that is not completely released yet.
Teamspeak3 servers are also used by Teamspeak5.
## Setup
Teamspeak consists of two parts: [a client](#client) and [a server](#server).
### Client
Teamspeak3 is available for [Windows](/wiki/windows.md) on the
[Teamspeak website](https://www.teamspeak.de/download/).
On most [Linux](/wiki/linux.md) distributions it can be installed with the `teamspeak3` package.
Teamspeak5 is available for Windows on the
[Teamspeak website](https://teamspeak.com/de/downloads/#ts5).
On most Linux distributions it can be installed with the `teamspeak` package.
### Server
The server software can be setup via [Docker](/wiki/docker.md) with the
[teamspeak image](./docker/teamspeak.md).
This image can setup a Teamspeak3 server.
## Usage
This section addresses various features of Teamspeak3.
### Link Teamspeak3 to a subdomain
To link Teamspeak3 to one of your subdomains you need to add a
[DNS SRV-record](./dns.md#srv-record):
```txt
type: SRV
name: ts3 (or alternative subdomain)
service: _ts3
proto: UDP
TTL: <configure to your liking>
class: IN
priority: 0
weight: 5
port: 9987 (or your teamspeak3 port)
target: ts3.<domain>.<TLD>
```
### Installing a Sound Pack
Sound packs can be found on the
[myTeamspeak website](https://www.myteamspeak.com/?search=&type=SOUNDPACK).
They are often available as a `.ts3_soundpack` file.
This file is similar to a `.zip` archive and can be unpacked the same way.
Afterwards the folder containing the audio files (`.wav` files) needs to be inserted into the sound
folder of teamspeak.
For Teamspeak3 on [Linux](/wiki/linux.md) systems this folder can be found at
`/opt/teamspeak3/sound`.
For Teamspeak5 on Linux the folder is available at `/opt/teamspeak/html/client_ui/sound`.
Following this the sound pack is available after the next (re-)start of teamspeak.

View File

@ -1,30 +0,0 @@
# Teamspeak3
[Teamspeak3](https://www.teamspeak.com) is a voice-over-IP service.
## Setup
The software can be setup via [Docker](/wiki/docker.md) with the
[teamspeak image](./docker/teamspeak.md).
## Usage
This section addresses various features of Teamspeak3.
### Link Teamspeak3 to a subdomain
To link Teamspeak3 to one of your subdomains you need to add a
[DNS SRV-record](./dns.md#srv-record):
```txt
type: SRV
name: ts3 (or alternative subdomain)
service: _ts3
proto: UDP
TTL: <configure to your liking>
class: IN
priority: 0
weight: 5
port: 9987 (or your teamspeak3 port)
target: ts3.<domain>.<TLD>
```