New convert from Windows 10 to Ubuntu so be gentle with me!!!
I do work in IT support but have no experience with Linux other than just installing Ubuntu.
I am trying to install Teamviewer for Linux as I'm in UK and my girlfriend is on Windows 10 machine in USA and I need to remote onto her machine.
I have successfully downloaded the .deb 15.5.3 package from https://download.teamviewer.com/download/linux/teamviewer_amd64.deb
I have opened the terminal and ran
$ cd /home/pete/Downloads
~/Downloads$ sudo apt install ./teamviewer_15.5.3_amd64.deb
but it returns the following errors...
Reading package lists... Done
Building dependency tree
Reading state information... Done
You might want to run 'apt --fix-broken install' to correct these.
The following packages have unmet dependencies.
messengerfordesktop : Depends: libappindicator1 but it is not installed or
libappindicator but it is not installable or
libappindicator-gtk3 but it is not installable
Depends: gconf2
Depends: gconf-service
Depends: python
Recommends: hunspell
Recommends: git
E: Unmet dependencies. Try 'apt --fix-broken install' with no packages (or specify a solution).
I have tried apt --fix-broken install
but get the following errors
$ apt --fix-broken install
E: Could not open lock file /var/lib/dpkg/lock-frontend - open (13: Permission denied)
E: Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend), are you root?
HELP!!!
Thanks
Kind regards
Pete
messengerfordesktop
andteamviewer
are not the same application. What was real output ofsudo apt install ./teamviewer_15.5.3_amd64.deb
? – N0rbert May 02 '20 at 19:13apt --fix-broken install
as root. Note the lack ofsudo
in front of it. – vidarlo May 02 '20 at 19:31