-1

my friend and I got a VPS so we could run a teamspeak 3 client on it. We're pretty new to linux. Basically we did (not sure if this was the exact command):

sudo apt-get install-desktop

Then we ran some updates.

Then we downloaded the .run from teamspeak then do a command to change the perms and make our .run executable. Then we run a command to extract that .run into a folder (i forget the commands sorry.)

Now, in our TeamSpeak3 folder we should just have to execute a .sh or a client program. We get the error:

failed to execute child process <path> no such file or directory

Can anyone help us?

EDIT: We've followed these steps: How to install Teamspeak 3 client on ubuntu 12.04 lts 32 bit?

and AFTER those steps we get the error I mentioned above.

failed to execute child process <path> no such file or directory

3 Answers3

0

you can try:

cd <path to folder>
sudo chmod +x ./<filename.sh>
./<filename.sh>

for example, if the file was located in your downloads and the file is named run, the code would look like:

cd /home/kulofae/Downloads
sudo chmod +x ./run.sh  or sudo chmod +x run.sh 
./run.sh or run.sh
belay neh
  • 108
0

I'm not that familiar with this program, but I would recommend reading through their quick start guide: http://media.teamspeak.com/ts3_literature/TeamSpeak%203%20Server%20Quick%20Start.txt

According to the guide, you should download the tar file that corresponds to your version of Ubuntu (64 bit or 32 bit). Make sure you're installing the server. I'm not sure what you downloaded, but there is no file ending in .run in the server archive I see on their website. The file you download from them should be named either:

  • teamspeak3-server-linux_x86.tar.gz
  • teamspeak3-server-linux_amd64.tar.gz

Once you've downloaded that file, they instruct you to run the following commands:

$ tar xzf teamspeak3-server-linux_x86.tar.gz
$ cd teamspeak3-server-linux_x86
$ ./ts3server_minimal_runscript.sh

The first command extracts the files from the archive, the second moves into that folder, and the third command is a script that runs the installation.

You shouldn't need to do anything with permissions - the .sh file in that archive is already executable.

You should also make sure you have libstdc++ 6 installed, which this depends on. Run:

sudo apt-get install libstdc++6

Which will either install that package or tell you you are already on the newest version available for 12.04.

drkokandy
  • 1,072
0

First download your package

wget dl.4players.de/ts/releases/3.0.13.3/teamspeak3-server_linux_amd64-3.0.13.3.tar.bz2

Extract it

tar jxf teamspeak3-server_linux_amd64-3.0.13.3.tar.bz2

Now change to that extracted directory

cd ~/teamspeak3-server_linux_amd64

Now you can run the server start script

./ts3server_startscript.sh start

Hope this helps

kint
  • 27