Page 1 of 2 12 LastLast
Results 1 to 10 of 13

Thread: Teamspeak 3 Installation

  1. #1
    Join Date
    Feb 2010
    Beans
    3

    Lightbulb Teamspeak 3 Installation

    Hey there

    I am having trouble installing the file TeamSpeak3-Client-linux_x86-33.0.0-beta17.run

    I try clicking on it , the error message i get is 'Please check that you are not trying to open a binary file.'

    I am very unfamiliar with ubuntu so I appreciate your patients! Thanks!

    I have been missing a series of important meetings because of this problem.
    Please help!

  2. #2
    Join Date
    Jun 2006
    Location
    Timisoara, Romania
    Beans
    156
    Distro
    Ubuntu 9.04 Jaunty Jackalope

    Re: Teamspeak 3 Installation

    You will have to run it from a terminal. Go to applications-->accessories-->terminal and type in the following:

    Code:
    cd ~/Desktop
    sh TeamSpeak3-Client-linux_x86-33.0.0-beta17.run
    Assuming that the file is on your Desktop of course. It will then ask you to agree to a license. Press enter to view the license, and then press "q" to quit the licence viewer. Type in yes to agree to the license (if you DO agree of course) and a new folder should be present on your desktop.

    In that folder you should see:

    ts3client_runscript.sh

    Just double click that, and you should be good to go.

  3. #3
    Join Date
    Feb 2010
    Beans
    1

    Re: Teamspeak 3 Installation

    Unfortunately (as often in Ubuntu) there is a problem with sound. I either can hear teamspeak or game sound, not both. I don't want to set up sound again after I finally somehow managed to talk using skype (after a few hours of googling). :'(

  4. #4
    Join Date
    Apr 2010
    Beans
    48

    Re: Teamspeak 3 Installation

    good post thanks!

  5. #5
    Join Date
    Mar 2009
    Beans
    554
    Distro
    Ubuntu 11.04 Natty Narwhal

    Re: Teamspeak 3 Installation

    Quote Originally Posted by cK` View Post
    good post thanks!
    random much?


    to diavel
    what game are you running alongside?
    Someday we'll hit the human carrying capacity. And the band will just play on. -Me

    I'm trying PHP, so my code can probably be labelled "bad and insecure"

  6. #6
    Join Date
    Aug 2010
    Beans
    1

    Re: Teamspeak 3 Installation

    Hi, I followed Denver's instructions exactly (I think), except substituting the newer version numbers. While in terminal it comes back saying that it can not open it ?
    cd ~/Desktop
    sh TeamSpeak3-Client-Linux_x86-3.0.0-beta29.run
    I also re-downloaded the file direct from teamspeak
    Suggestions ? Please ? Thanks, Bill
    Last edited by wrcflier; September 13th, 2010 at 05:25 AM.

  7. #7
    Join Date
    Sep 2009
    Beans
    467

    Re: Teamspeak 3 Installation

    first of all.
    Code:
    chmod u+x TeamSpeak3-Client-Linux_x86-3.0.0-beta29.run
    ./TeamSpeak3-Client-Linux_x86-3.0.0-beta29.run
    it will extract it after you accept the license.
    Just hand me my pitchfork and torch.

  8. #8
    Join Date
    Sep 2009
    Beans
    467

    Re: Teamspeak 3 Installation

    what i did was rename the folder to TeamSpeak3 after it extracted then

    sudo mv TeamSpeak3 /usr/share

    and created a startup file in /usr/bin called teamspeak with this script

    Code:
    #!/bin/bash
    
    export QT_PLUGIN_PATH=.
    export LD_LIBRARY_PATH=".:$LD_LIBRARY_PATH"
    
    cd /usr/share/TeamSpeak3/
    
    if [ -e ts3client_linux_x86 ]; then
            ./ts3client_linux_x86 $@
    else
            ./ts3client_linux_amd64 $@
    fi
    did sudo chmod 755 /usr/bin/teamspeak

    and whenever you type teamspeak in console it will open it, or you can create a menu app
    Just hand me my pitchfork and torch.

  9. #9
    Join Date
    Sep 2009
    Beans
    467

    Re: Teamspeak 3 Installation

    also my sound works perfect in Ubuntu.
    Just hand me my pitchfork and torch.

  10. #10
    Join Date
    Oct 2009
    Beans
    46

    Re: Teamspeak 3 Installation

    Hey this worked for me. Thanks!

Page 1 of 2 12 LastLast

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •