wget http://installit.googlecode.com/hg/install.teamviewer.sh -O - | bash -
#!/bin/bash
# install required libs
sudo apt-get install -y libc6-i386 lib32asound2 lib32z1 ia32-libs
if [ "$(uname -m)" == "x86_64" ]; then
# 64 bit
URL=http://www.teamviewer.com/download/version_8x/teamviewer_linux_x64.deb
else
# 32 bit
URL=http://www.teamviewer.com/download/version_8x/teamviewer_linux.deb
fi
# download
wget ${URL} -P /tmp
# install
sudo dpkg -i /tmp/teamviewer_linux*.deb
# clean up
rm /tmp/teamviewer_linux*.deb
# remove auto service start
# sudo rm /etc/init/teamviewerd.conf
1
Comments
SSH Teamviewer config
Hi there,
Thanks a lot for the web page, it's just wonderful.
I've installed teamviewer on a remote machine through an SSH connection (impossible to get there; it's in a different country). Anybody knows how to connect now to that machine with teamviewer? Don't know how to obtain the parameters...
Thanks again!