forked from erikdubois/Ultimate-Linux-Mint-18.2-Cinnamon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install-teamviewer-v1.sh
executable file
·28 lines (22 loc) · 1.14 KB
/
install-teamviewer-v1.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/bin/bash
#
##################################################################################################################
# Written to be used on 64 bits computers
# Author : Erik Dubois
# Website : http://www.erikdubois.be
##################################################################################################################
##################################################################################################################
#
# DO NOT JUST RUN THIS. EXAMINE AND JUDGE. RUN AT YOUR OWN RISK.
#
##################################################################################################################
# Downloading and installing latest teamviewer
rm /tmp/teamviewer_i386.deb
wget https://download.teamviewer.com/download/teamviewer_i386.deb -O /tmp/teamviewer_i386.deb
sudo apt install -y libjpeg62:i386
sudo dpkg -i /tmp/teamviewer_i386.deb
rm /tmp/teamviewer_i386.deb
sudo apt-get -f install
echo "################################################################"
echo "############## teamviewer installed #################"
echo "################################################################"