<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>teamspeak Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/teamspeak/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Fri, 02 Jul 2021 16:56:34 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.8.12</generator>
	<item>
		<title>How to install TeamSpeak Server on Ubuntu 20.04?</title>
		<link>https://www.osradar.com/teamspeak-server-ubuntu/</link>
					<comments>https://www.osradar.com/teamspeak-server-ubuntu/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Tue, 06 Jul 2021 02:53:00 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[focal]]></category>
		<category><![CDATA[Focal Fossa]]></category>
		<category><![CDATA[teamspeak]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[ubuntu]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=31111</guid>

					<description><![CDATA[<p>Hello, friends. In this post, you will learn how to install TeamSpeak Server on Ubuntu 20.04 Ready? Let’s get to it. In Ubuntu every day there are more and more complete applications that enrich the ecosystem. Proof of this is the existence of TeamSpeak for Ubuntu. In a nutshell, TeamSpeak is a voice-over IP chat [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/teamspeak-server-ubuntu/">How to install TeamSpeak Server on Ubuntu 20.04?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="has-line-data">Hello, friends. In this post, you will learn how to install TeamSpeak Server on Ubuntu 20.04 Ready? Let’s get to it.</p>



<p class="has-line-data">In Ubuntu every day there are more and more complete applications that enrich the ecosystem. Proof of this is the existence of TeamSpeak for Ubuntu.</p>



<p class="has-line-data">In a nutshell, <strong><a href="https://www.teamspeak.com" target="_blank" rel="noreferrer noopener">TeamSpeak </a>is a voice-over IP chat software, it allows users to talk in a chat channel with other users, just like a traditional conference call</strong>. To do this, clients have to connect to a server. This is what we are going to do.</p>



<p class="has-line-data">The main advantage is that you can manage the created instance yourself. Think about the advantages of this. So let’s go for it.</p>



<h2 class="code-line"><a id="Install_TeamSpeak_Server_on_Ubuntu_2004_8"></a>Install TeamSpeak Server on Ubuntu 20.04</h2>



<p class="has-line-data">Before we start, the server must be up to date so that we don’t have problems during the process.</p>



<p class="has-line-data">So, connect to <a href="https://www.osradar.com/manages-ssh-connections-from-windows-10-with-putty/" target="_blank" rel="noreferrer noopener">SSH </a>and proceed to upgrade.</p>



<pre class="wp-block-preformatted">sudo apt update
sudo apt upgrade</pre>



<p class="has-line-data">After this, log in as the root user.</p>



<pre class="wp-block-preformatted">sudo -i</pre>



<p class="has-line-data">Now we can get started.</p>



<p class="has-line-data">The first thing we need to do is create a new system user which is where TeamSpeak will work. This new user can be called whatever you want and does not need to be logged into the system.</p>



<pre class="wp-block-preformatted">adduser --disabled-login teamspeak</pre>



<p class="has-line-data">You will be asked a few questions requesting information about the new user. Nothing complicated.</p>



<p class="has-line-data">Now, log in to the newly created user.</p>



<pre class="wp-block-preformatted">su - teamspeak</pre>



<p class="has-line-data">Now, with the help of the <code>wget</code> command, we can download TeamSpeak for Linux.</p>



<pre class="wp-block-preformatted">wget https://files.teamspeak-services.com/releases/server/3.13.5/teamspeak3-server_linux_amd64-3.13.5.tar.bz2
--2021-07-01 18:21:02--  https://files.teamspeak-services.com/releases/server/3.13.5/teamspeak3-server_linux_amd64-3.13.5.tar.bz2
Resolving files.teamspeak-services.com (files.teamspeak-services.com)... 151.139.128.11
Connecting to files.teamspeak-services.com (files.teamspeak-services.com)|151.139.128.11|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 9950540 (9.5M) [application/x-tar]
Saving to: ‘teamspeak3-server_linux_amd64-3.13.5.tar.bz2’

teamspeak3-server_linux_amd64-3.13.5.tar. 100%[=====================================================================================>]   9.49M  --.-KB/s    in 0.07s

2021-07-01 18:21:02 (136 MB/s) - ‘teamspeak3-server_linux_amd64-3.13.5.tar.bz2’ saved [9950540/9950540]</pre>



<p class="has-line-data">Once the download is complete, we can unzip it.</p>



<pre class="wp-block-preformatted">tar xvfj teamspeak3-server_linux_amd64-3.13.5.tar.bz2</pre>



<p class="has-line-data">Now it is a good idea to copy the generated files directly into the <code>Home</code> folder of the user-created for TeamSpeak.</p>



<pre class="wp-block-preformatted">cp teamspeak3-server_linux_amd64/* -R /home/teamspeak/</pre>



<p class="has-line-data">Also, it is advisable to delete the downloaded file, as you will not need it.</p>



<pre class="wp-block-preformatted">rm -rf teamspeak3-server_linux_amd64 teamspeak3-server_linux_amd64-3.13.5.tar.bz2</pre>



<p class="has-line-data">After this, create a new empty file corresponding to the license.</p>



<pre class="wp-block-preformatted">touch .ts3server_license_accepted</pre>



<p class="has-line-data">Now, TeamSpeak is installed, but we can’t use it yet.</p>



<h2 class="code-line"><a id="Configuring_TeamSpeak_Server_before_the_first_use_55"></a>Configuring TeamSpeak Server before the first use</h2>



<p class="has-line-data">With TeamSpeak installed, the process of preparing for the first use begins.</p>



<p class="has-line-data">First, exit the TeamSpeak user and return it to the root user.</p>



<pre class="wp-block-preformatted">exit</pre>



<p class="has-line-data">The best way to manage TeamSpeak is to manage it as a systemd service. This can be done by creating a new entry in the system.</p>



<pre class="wp-block-preformatted">nano /lib/systemd/system/system/ts3server.service</pre>



<p class="has-line-data">And add the following</p>



<pre class="wp-block-preformatted">[Unit]
Description=Teamspeak Service
Wants=network.target

[Service]
WorkingDirectory=/home/teamspeak
User=teamspeak
ExecStart=/home/teamspeak/ts3server_minimal_runscript.sh
ExecStop=/home/teamspeak/ts3server_startscript.sh stop
ExecReload=/home/teamspeak/ts3server_startscript.sh restart
Restart=always
RestartSec=15

[Install]
WantedBy=multi-user.target</pre>



<p class="has-line-data">Save your changes and close the text editor.</p>



<p class="has-line-data">Refresh the list of system services, by running the following command</p>



<pre class="wp-block-preformatted">systemctl daemon-reload</pre>



<p class="has-line-data">Then, start the application service.</p>



<pre class="wp-block-preformatted">systemctl start ts3server</pre>



<p class="has-line-data">It is advisable to check the status of the service to see if it is active.</p>



<pre class="wp-block-preformatted">systemctl status ts3server
● ts3server.service - Teamspeak Service
     Loaded: loaded (/lib/systemd/system/ts3server.service; disabled; vendor preset: enabled)
     Active: active (running) since Thu 2021-07-01 18:26:58 CEST; 58s ago
   Main PID: 1532 (ts3server)
      Tasks: 21 (limit: 4566)
     Memory: 22.3M
     CGroup: /system.slice/ts3server.service
             └─1532 ./ts3server

Jul 01 18:26:59 osradar ts3server_minimal_runscript.sh[1532]:       serveradmin rights for your virtualserver. please
Jul 01 18:26:59 osradar ts3server_minimal_runscript.sh[1532]:       also check the doc/privilegekey_guide.txt for details.
Jul 01 18:26:59 osradar ts3server_minimal_runscript.sh[1532]:        token=R7CJUImlePrDrwdlfpMD4H7hOPgRb2NVZitTYGAp
Jul 01 18:26:59 osradar ts3server_minimal_runscript.sh[1532]: ------------------------------------------------------------------
Jul 01 18:26:59 osradar ts3server_minimal_runscript.sh[1532]: 2021-07-01 16:26:59.044066|INFO    |Query         |   |listening for query on 0.0.0.0:10011, [::]:10011
Jul 01 18:26:59 osradar ts3server_minimal_runscript.sh[1532]: 2021-07-01 16:26:59.044230|INFO    |              |   |creating QUERY_SSH_RSA_HOST_KEY file: ssh_host_rsa>Jul 01 18:26:59 osradar ts3server_minimal_runscript.sh[1532]: 2021-07-01 16:26:59.204450|INFO    |              |   |myTeamSpeak identifier revocation list was downloa>Jul 01 18:26:59 osradar ts3server_minimal_runscript.sh[1532]: 2021-07-01 16:26:59.472278|INFO    |Query         |   |listening for ssh query on 0.0.0.0:10022, [::]:100>Jul 01 18:26:59 osradar ts3server_minimal_runscript.sh[1532]: 2021-07-01 16:26:59.472459|INFO    |Query         |   |listening for http query on 0.0.0.0:10080, [::]:10>Jul 01 18:26:59 osradar ts3server_minimal_runscript.sh[1532]: 2021-07-01 16:26:59.472614|INFO    |CIDRManager   |   |updated query_ip_allowlist ips: 127.0.0.1/32, :</pre>



<p class="has-line-data">So, everything is working properly.</p>



<h3 class="code-line"><a id="Defining_a_new_access_password_91"></a>Defining a new access password</h3>



<p class="has-line-data">It is important to define a new password that takes care of adding an extra layer of security.</p>



<p class="has-line-data">So, stop running the service</p>



<pre class="wp-block-preformatted">systemctl stop ts3server</pre>



<p class="has-line-data">Log the user <code>teamspeak</code> back in.</p>



<pre class="wp-block-preformatted">su - teamspeak</pre>



<p class="has-line-data">To set a password, just start the service manually and add the <code>serveradmin_password</code> parameter along with a strong password.</p>



<pre class="wp-block-preformatted">./ts3server_startscript.sh start serveradmin_password=password</pre>



<p class="has-line-data"><strong>Replace <code>password</code> with a stronger password</strong>.</p>



<p class="has-line-data">Sample Output</p>



<pre class="wp-block-preformatted">Starting the TeamSpeak 3 server
TeamSpeak 3 server started, for details please view the log file</pre>



<p class="has-line-data">Now stop it manually</p>



<pre class="wp-block-preformatted">./ts3server_startscript.sh stop
Stopping the TeamSpeak 3 server .
done</pre>



<p class="has-line-data">Change to root user again</p>



<pre class="wp-block-preformatted">exit</pre>



<p class="has-line-data">And now start the TeamSpeak service.</p>



<pre class="wp-block-preformatted">systemctl start ts3server</pre>



<h2 class="code-line"><a id="Enabling_the_TeamSpeak_web_interface_125"></a>Enabling the TeamSpeak web interface</h2>



<p class="has-line-data">Also, it is advisable to enable the TeamSpeak web interface so that you can manage TeamSpeak faster and more comfortably.</p>



<p class="has-line-data">To do so, install <a href="https://www.osradar.com/install-lamp-stack-on-fedora-34/" target="_blank" rel="noreferrer noopener">Apache and PHP</a> along with the <code>unzip</code> package.</p>



<pre class="wp-block-preformatted">apt-get install apache2 php libapache2-mod-php unzip</pre>



<p class="has-line-data">Then, access the Apache Root document folder.</p>



<pre class="wp-block-preformatted">cd /var/www/html</pre>



<p class="has-line-data">And from there, proceed to download the web interface. Again, we will do it with the <code>wget</code> command.</p>



<pre class="wp-block-preformatted">wget https://www.bennetrichter.de/downloads/ts3wi.zip</pre>



<p class="has-line-data">Since it’s lightweight, the download shouldn’t take long. When it is finished, you have to unzip it.</p>



<pre class="wp-block-preformatted">unzip ts3wi.zip</pre>



<p class="has-line-data">Then, to avoid problems with running on the web, make the folder belong to Apache.</p>



<pre class="wp-block-preformatted">chown -R www-data:www-data /var/www/html/ts3wi</pre>



<p class="has-line-data">And now in a text file called <code>query_ip_allowlist.txt</code> inside the <code>teamspeak</code> user’s home folder add the IP of the server and the client that will be able to access it.</p>



<pre class="wp-block-preformatted">nano /home/teamspeak/query_ip_allowlist.txt
your ip server
ip client</pre>



<p class="has-line-data">Save your changes and close the editor.</p>



<p class="has-line-data">To apply the changes, restart the Apache and TeamSpeak services.</p>



<pre class="wp-block-preformatted">systemctl restart apache2
systemctl restart ts3server</pre>



<p class="has-line-data">It is now accessible from a client and a web browser via the address <code>http://your-server-ip/ts3wi</code> where you will see the Login screen.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="511" src="https://www.osradar.com/wp-content/uploads/2021/07/2-1024x511.png" alt="2.- Login Screen" class="wp-image-31113" srcset="https://www.osradar.com/wp-content/uploads/2021/07/2-1024x511.png 1024w, https://www.osradar.com/wp-content/uploads/2021/07/2-300x150.png 300w, https://www.osradar.com/wp-content/uploads/2021/07/2-768x383.png 768w, https://www.osradar.com/wp-content/uploads/2021/07/2-696x347.png 696w, https://www.osradar.com/wp-content/uploads/2021/07/2-1068x533.png 1068w, https://www.osradar.com/wp-content/uploads/2021/07/2.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>1.- Login Screen</figcaption></figure>



<p class="has-line-data">After logging in with the username <code>serveradmin</code> and the password you defined, you will see the administration panel.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="511" src="https://www.osradar.com/wp-content/uploads/2021/07/3-1024x511.png" alt="2.- TeamSpeak Server on Ubuntu 20.04" class="wp-image-31114" srcset="https://www.osradar.com/wp-content/uploads/2021/07/3-1024x511.png 1024w, https://www.osradar.com/wp-content/uploads/2021/07/3-300x150.png 300w, https://www.osradar.com/wp-content/uploads/2021/07/3-768x383.png 768w, https://www.osradar.com/wp-content/uploads/2021/07/3-696x347.png 696w, https://www.osradar.com/wp-content/uploads/2021/07/3-1068x533.png 1068w, https://www.osradar.com/wp-content/uploads/2021/07/3.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>2.- TeamSpeak Server on Ubuntu 20.04</figcaption></figure>



<p class="has-line-data">So, TeamSpeak is ready. Enjoy it.</p>



<h2 class="code-line"><a id="Conclusion_169"></a>Conclusion</h2>



<p class="has-line-data">In this post, you have learned how to install your own TeamSpeak instance on your server. This way, you will have full control over what happens and it is interesting for your internal use.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/teamspeak-server-ubuntu/">How to install TeamSpeak Server on Ubuntu 20.04?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/teamspeak-server-ubuntu/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Install TeamSpeak on Linux</title>
		<link>https://www.osradar.com/how-to-install-teamspeak-on-linux/</link>
					<comments>https://www.osradar.com/how-to-install-teamspeak-on-linux/#respond</comments>
		
		<dc:creator><![CDATA[Mel]]></dc:creator>
		<pubDate>Thu, 12 Apr 2018 05:25:04 +0000</pubDate>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[install teamspeak]]></category>
		<category><![CDATA[teamspeak]]></category>
		<category><![CDATA[teamspeak linux]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=2473</guid>

					<description><![CDATA[<p>If you’re a gamer, you already heard about TeamSpeak, right? It’s one of the most popular platforms for video chat among gamers. The voice quality is crystal clear, endless customization options and other facilities make TeamSpeak truly the powerhouse of voice communication. For multiplayer gamers, it’s like a must-have tool at hand. TeamSpeak is easily [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-teamspeak-on-linux/">How to Install TeamSpeak on Linux</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>If you’re a gamer, you already heard about TeamSpeak, right? It’s one of the most popular platforms for video chat among gamers. The voice quality is crystal clear, endless customization options and other facilities make TeamSpeak truly the powerhouse of voice communication. For multiplayer gamers, it’s like a must-have tool at hand.</p>
<p>TeamSpeak is easily available on Windows platform. However, the software isn’t easily available on the Linux. Don’t worry, as it’s available on the major Linux platforms. Here’s how to install TeamSpeak on them.</p>
<ul>
<li>
<h3>Ubuntu + Ubuntu-based distros</h3>
</li>
</ul>
<p>If you’re running Ubuntu or Ubuntu-based distro, installing TeamSpeak is really easy. Just follow these simple steps.</p>
<ul>
<li>Open Terminal.</li>
<li>Add the following repository to your system.</li>
</ul>
<pre>sudo add-apt-repository ppa:materieller/teamspeak3</pre>
<p><img loading="lazy" class="alignnone size-full wp-image-2478" src="https://www.osradar.com/wp-content/uploads/2018/04/teamspeak-add-repository.png" alt="" width="791" height="421" srcset="https://www.osradar.com/wp-content/uploads/2018/04/teamspeak-add-repository.png 791w, https://www.osradar.com/wp-content/uploads/2018/04/teamspeak-add-repository-300x160.png 300w, https://www.osradar.com/wp-content/uploads/2018/04/teamspeak-add-repository-768x409.png 768w, https://www.osradar.com/wp-content/uploads/2018/04/teamspeak-add-repository-696x370.png 696w, https://www.osradar.com/wp-content/uploads/2018/04/teamspeak-add-repository-789x420.png 789w" sizes="(max-width: 791px) 100vw, 791px" /></p>
<ul>
<li>Run the commands:</li>
</ul>
<pre>sudo apt update
sudo apt install teamspeak3-client</pre>
<p><img loading="lazy" class="size-full wp-image-2479 aligncenter" src="https://www.osradar.com/wp-content/uploads/2018/04/teamspeak-install-client.png" alt="" width="1366" height="671" srcset="https://www.osradar.com/wp-content/uploads/2018/04/teamspeak-install-client.png 1366w, https://www.osradar.com/wp-content/uploads/2018/04/teamspeak-install-client-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2018/04/teamspeak-install-client-768x377.png 768w, https://www.osradar.com/wp-content/uploads/2018/04/teamspeak-install-client-1024x503.png 1024w, https://www.osradar.com/wp-content/uploads/2018/04/teamspeak-install-client-324x160.png 324w, https://www.osradar.com/wp-content/uploads/2018/04/teamspeak-install-client-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2018/04/teamspeak-install-client-696x342.png 696w, https://www.osradar.com/wp-content/uploads/2018/04/teamspeak-install-client-1068x525.png 1068w, https://www.osradar.com/wp-content/uploads/2018/04/teamspeak-install-client-855x420.png 855w" sizes="(max-width: 1366px) 100vw, 1366px" /></p>
<p>Done! TeamSpeak is installed on your system. Enjoy it!</p>
<p>For uninstalling TeamSpeak, run the following command in the terminal.</p>
<pre>sudo apt remove teamspeak3-client</pre>
<ul>
<li>
<h3>Debian</h3>
</li>
</ul>
<p>Although Debian and Ubuntu are quite similar, there’s no official TeamSpeak package for Debian. For having TeamSpeak, you have to build it from the source. It’s a bit tricky but doable.</p>
<ul>
<li>First, install Git in the system.</li>
</ul>
<pre>sudo apt-get install git</pre>
<ul>
<li>Grab the latest code of TeamSpeak3 client.</li>
</ul>
<pre>git clone https://github.com/Dh0mp5eur/TeamSpeak3-Client.git</pre>
<ul>
<li>Move the working directory into the TeamSpeak folder.</li>
</ul>
<pre>cd TeamSpeak3-Client</pre>
<ul>
<li>Start building the package.</li>
</ul>
<pre>sh package.sh</pre>
<p>Note that there will be 2 DEB packages – for 32-bit and 64-bit. Install the one you need. Run the following command:</p>
<pre>sudo dpkg -i teamspeak3-client_amd64.deb [For Debian 64-bit]
sudo dpkg -i teamspeak3-client_i386.deb  [For Debian 32-bit]</pre>
<p>For uninstalling TeamSpeak3, use this command:</p>
<pre>sudo apt-get remove teamspeak3-client</pre>
<ul>
<li>
<h3>Arch Linux</h3>
</li>
</ul>
<p>TeamSpeak is in the Arch repository by default. Run the command in terminal:</p>
<pre>sudo pacman -S teamspeak3</pre>
<ul>
<li>
<h3>OpenSUSE</h3>
</li>
</ul>
<p>TeamSpeak is already available in the OpenSUSE software collection. However, it’s only for OpenSUSE Leap 42.3 edition (currently).</p>
<ul>
<li>Go to <a href="https://software.opensuse.org/package/teamspeak3-client">OpenSUSE TeamSpeak</a> page.</li>
</ul>
<p><img loading="lazy" class="size-full wp-image-2475 aligncenter" src="https://www.osradar.com/wp-content/uploads/2018/04/opensuse-teamspeak-page.png" alt="" width="949" height="599" srcset="https://www.osradar.com/wp-content/uploads/2018/04/opensuse-teamspeak-page.png 949w, https://www.osradar.com/wp-content/uploads/2018/04/opensuse-teamspeak-page-300x189.png 300w, https://www.osradar.com/wp-content/uploads/2018/04/opensuse-teamspeak-page-768x485.png 768w, https://www.osradar.com/wp-content/uploads/2018/04/opensuse-teamspeak-page-696x439.png 696w, https://www.osradar.com/wp-content/uploads/2018/04/opensuse-teamspeak-page-665x420.png 665w" sizes="(max-width: 949px) 100vw, 949px" /></p>
<ul>
<li>Click on “Show community packages”.</li>
</ul>
<p><img loading="lazy" class="size-full wp-image-2476 aligncenter" src="https://www.osradar.com/wp-content/uploads/2018/04/opensuse-download-teamspeak.png" alt="" width="901" height="186" srcset="https://www.osradar.com/wp-content/uploads/2018/04/opensuse-download-teamspeak.png 901w, https://www.osradar.com/wp-content/uploads/2018/04/opensuse-download-teamspeak-300x62.png 300w, https://www.osradar.com/wp-content/uploads/2018/04/opensuse-download-teamspeak-768x159.png 768w, https://www.osradar.com/wp-content/uploads/2018/04/opensuse-download-teamspeak-696x144.png 696w" sizes="(max-width: 901px) 100vw, 901px" /></p>
<ul>
<li>Click on “1 Click Install”.</li>
</ul>
<ul>
<li>
<h3>Other Linux distros</h3>
</li>
</ul>
<p>If your distro wasn’t stated above, you have to follow the alternate method. Note that this method also works on all Linux distros.</p>
<ul>
<li><a href="https://www.teamspeak.com/en/downloads">Go to TeamSpeak Downloads page</a>.</li>
<li>Look for Linux section.</li>
</ul>
<p><img loading="lazy" class="size-full wp-image-2474 aligncenter" src="https://www.osradar.com/wp-content/uploads/2018/04/teamspeak-run-file.png" alt="" width="1135" height="241" srcset="https://www.osradar.com/wp-content/uploads/2018/04/teamspeak-run-file.png 1135w, https://www.osradar.com/wp-content/uploads/2018/04/teamspeak-run-file-300x64.png 300w, https://www.osradar.com/wp-content/uploads/2018/04/teamspeak-run-file-768x163.png 768w, https://www.osradar.com/wp-content/uploads/2018/04/teamspeak-run-file-1024x217.png 1024w, https://www.osradar.com/wp-content/uploads/2018/04/teamspeak-run-file-696x148.png 696w, https://www.osradar.com/wp-content/uploads/2018/04/teamspeak-run-file-1068x227.png 1068w" sizes="(max-width: 1135px) 100vw, 1135px" /></p>
<ul>
<li>Download the appropriate .RUN file.</li>
<li>Change the working directory.</li>
</ul>
<pre>cd ~/Downloads</pre>
<ul>
<li>Update the file permission.</li>
</ul>
<pre>sudo chmod +x TeamSpeak3-Client-linux_amd64-3.1.8.run</pre>
<ul>
<li>Start the installation:</li>
</ul>
<pre> sh TeamSpeak3-Client-linux_amd64-3.1.8.run</pre>
<p>Now, follow the on-screen instructions to complete the process.</p>
<p>Enjoy a full team collaboration with TeamSpeak!</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-teamspeak-on-linux/">How to Install TeamSpeak on Linux</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/how-to-install-teamspeak-on-linux/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
