Monday, April 29, 2024
 Popular · Latest · Hot · Upcoming
0
rated 0 times [  0] [ 0]  / answers: 1 / hits: 3899  / 2 Years ago, wed, july 13, 2022, 7:27:19

Trying to run a teamspeak client, getting:



./ts3client_linux_x86: error while loading shared libraries: libgthread-2.0.so.0: cannot open shared object file: No such file or directory


libgthread doesn't seem to be included in glibc anymore, I can't change versions of the package - too much depends on it, anywhere I can get my mitts on this file/build this file?


More From » glibc

 Answers
6

Recomended method, from the repositories



You don't need for anything TeamSpeak from the download pages. The package is included in Ubuntu multiverse repository. Just make sure that you have the repository activated and type in a terminal:



sudo apt-get install teamspeak-client


You might need to clean previous installations of the client. If you run into more problems you might need to report a bug.



Own your own risk, 3rd party repository



From the TeamSpeak forums, twprogrammers offered a method to install TeamSpeak 3 using his repositories.



NOTICE: Under no circumstance you should add and install software from anybody you don't trust. If you are aware of the risks please continue reading. I'm in no way responsible of the possible damage to your system.



The instructions offered by twprogrammers couldn't be more clear:




  1. Adding the repository to the sources:



    sudo sh -c "echo 'deb http://apt.twprogrammers.com linux net' >> /etc/apt/sources.list.d/twprogrammers.list"


    With this we have created our list file for apt.


  2. Adding the GPG key to your trusted keyring:



    sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 1BCCE0BF


    In the official site they use keyserver.twprogrammers.com as keyserver, but it could be down any time, so I will be using Ubuntu's.


  3. Update your package list and install TeamSpeack 3:



    sudo apt-get update
    sudo apt-get install ts3-client


    Notice that the name of the package is ts3-client. That's all.



[#29605] Friday, July 15, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
eighethod

Total Points: 358
Total Questions: 112
Total Answers: 119

Location: Cayman Islands
Member since Fri, Mar 4, 2022
2 Years ago
;