How to install TeamViewer on Raspberry Pi 4 running Ubuntu Mate 20.04 64bit armV8
Hi, I have bought a new Raspberry Pi 4 4GB varient and installed Ubuntu Mate 20.04 (Focal Fossa) arm64 (64bit) OS. And I want to install TeamViewer in it, Can anyone please help me how to install TeamViewer on an armV8 64 bit linux Operating system
Comments
-
I have the same question. Any help out there?
0 -
I'm using a Rock64 with armbian but it should be similar/identical. Here are my notes:
# install teamviewer
sudo dpkg --add-architecture armhf
sudo apt-get update
sudo apt-get install libqt5gui5 libqt5qml5 libqt5quick5 libqt5webkit5 libqt5qml5 libqt5core5a qml-module-qtquick-controls qml-module-qtquick2 libqt5widgets5
sudo apt-get install libxtst6:armhf
sudo apt-get -f install
start teamviewer with:
download .deb from https://www.teamviewer.com/en/download/linux/
sudo dpkg -i teamviewer....deb
# now open /etc/apt/sources.list.d/teamviewer.list and make sure it specifies the armhf architecture:
deb [arch=armhf] http://...
#If you run into problems try the 'sudo apt-get -f install' again.1 -
Thanks Kris8,
I confirm it works, I just needed to run "sudo apt --fix-broken install" to fix and then "sudo dpkg -i teamviewer....deb" again.
I'm running Ubuntu 20.10 64bit on Raspberry Pi4B 8GB
0 -
Question. What if the TeamViewer.list does not have the [arch=armhf]?
0