Insight: Install TeamViewer In Ubuntu From Command
Teamviewer is one of the most popular remote desktop sharing application. Without explaining much more about Teamviewer, let’s jump into the content of this post. In this tutorial, we will show you the steps to install team-viewer in Ubuntu from command line.
Install TeamViewer In Ubuntu From Command
Open your terminal and run the following commands to download the teamviewer’s repository key.
cd /tmp && wget https://download.teamviewer.com/download/linux/signature/TeamViewer2017.asc sudo apt-key add TeamViewer2017.asc
Now add the repository key with the help of following commands:
sudo sh -c 'echo "deb http://linux.teamviewer.com/deb stable main" >> /etc/apt/sources.list.d/teamviewer.list' sudo sh -c 'echo "deb http://linux.teamviewer.com/deb preview main" >> /etc/apt/sources.list.d/teamviewer.list'
Finally, It’s time to install TeamViewer with the commands below:
sudo apt update sudo apt install teamviewer
It’s done 🙂