0

I would like to install Google Earth Pro on Ubuntu Linux 16.04 LTS. I can download the .DEB file from here. This is the correct file for my processor. I can open the file in the Ubuntu software manager and choose to install the software. No Google Earth Pro is available when I open the Dash. How do I install Google Earth Pro?

After running sudo apt-get update && sudo apt-get -f install I get the following errors.

Err:16 http://ppa.launchpad.net/ubuntugis/ubuntugis-unstable/ubuntu *codename*/main Sources                                  
  404  Not Found

Err:26 http://ppa.launchpad.net/ferramroberto/linuxfreedomlucid/ubuntu xenial/main amd64 Packages                            
  404  Not Found

Err:33 http://ppa.launchpad.net/openambit/ppa/ubuntu xenial/main amd64 Packages                                              
  404  Not Found

W: GPG error: http://qgis.org/debian xenial InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY CAEB3DC3BDF7FB45

E: Failed to fetch http://ppa.launchpad.net/ubuntugis/ubuntugis-unstable/ubuntu/dists/*codename*/main/source/Sources  404  Not Found

E: Failed to fetch http://ppa.launchpad.net/ferramroberto/linuxfreedomlucid/ubuntu/dists/xenial/main/binary-amd64/Packages  404  Not Found

E: Failed to fetch http://ppa.launchpad.net/openambit/ppa/ubuntu/dists/xenial/main/binary-amd64/Packages  404  Not Found
E: Some index files failed to download. They have been ignored, or old ones used instead.
muru
  • 197,895
  • 55
  • 485
  • 740
GBG
  • 300
  • Open a terminal and type sudo apt-get update && sudo apt-get -f install and post any errors. – Panther Sep 14 '17 at 20:59
  • @bodhi.zazen. I have added the terminal errors to my question. – GBG Sep 14 '17 at 21:18
  • Well all those 404 errors mean there is no package available. The first one "Err:16 http://ppa.launchpad.net/ubuntugis/ubuntugis-unstable/ubuntu codename/main Sources 404 Not Found" is a typo, "codename" should read xenial. – Panther Sep 14 '17 at 21:30
  • The public key error tells you the key to use "W: GPG error: http://qgis.org/debian xenial InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY CAEB3DC3BDF7FB45" See https://askubuntu.com/questions/13065/how-do-i-fix-the-gpg-error-no-pubkey – Panther Sep 14 '17 at 21:35
  • Technically the GPG key is a waning, you can install software without the key. Fix your repos and try again. – Panther Sep 14 '17 at 21:36

1 Answers1

0

16.04 64-bit Procedure:

  1. Download the following packages using your browser

http://ftp.us.debian.org/debian/pool/main/l/lsb/lsb-security_4.1+Debian13+nmu1_amd64.deb http://ftp.us.debian.org/debian/pool/main/l/lsb/lsb-invalid-mta_4.1+Debian13+nmu1_all.deb http://ftp.us.debian.org/debian/pool/main/l/lsb/lsb-core_4.1+Debian13+nmu1_amd64.deb

  1. Open Terminal and navigate to the Downloads folder (cd Downloads)
  2. Install all 3 packages

    sudo dpkg -i lsb-security_4.1+Debian13+nmu1_amd64.deb

    sudo dpkg -i lsb-invalid-mta_4.1+Debian13+nmu1_all.deb

    sudo dpkg -i lsb-core_4.1+Debian13+nmu1_amd64.deb

  3. Fix dependency issues

sudo apt-get install -f 5. Reboot 6. Download and install Google Earth x64 .deb package

Here's the link to the download: http://www.google.com/earth/download/ge/agree.html

Note: Make certain you download the 64 bit version

Open Terminal, change folders to 'Downloads' and install (sudo dpkg -i [name of .deb file])

gatorback
  • 5,785
  • 9
  • 40
  • 65