1

I have installed TeamSpeak 3 on ubuntu according to this manual.

After typing

sh ts3client_runscript.sh

I get

ts3client_runscript.sh: 3: ts3client_runscript.sh: Bad substitution
QCoreApplication::applicationDirPath: Please instantiate the QApplication object first

and this error from the GUI

Unable to load CA certificate

How can I fix this? I also tried to start windows version from wine, but I got an exception.

Gryu
  • 8,002
  • 9
  • 37
  • 53

1 Answers1

1

I checked certificate installation, and realized that I only had to type

sudo apt-get remove ca-certificate
sudo apt-get update
sudo apt-get install ca-certificate
phrogg
  • 115