web-dev-qa-db-ja.com

Ubuntu 16.04 64ビットにGoogle Earthをインストールできません

Lsb-coreパッケージがインストールされていることを確認してください!アプリケーション->アクセサリ->ターミナル(パネル)またはダッシュ(新しいUnityデスクトップ)からターミナルを開き、ターミナルに次のコマンドを入力(またはコピーアンドペースト)します。

Sudo apt-get install lsb-core

64ビットユーザー:32ビットパッケージをインストールする場合は、代わりにこれを使用する必要があります

Sudo apt-get install libc6-i386 libglib2.0-0:i386 libsm6:i386\libglu1-mesa:i386 libgl1-mesa-glx:i386 libxext6:i386\libxrender1:i386 libx11-6:i386 libfontconfig1:i386 lsb-core

古いUbuntuバージョン用のGoogle Earthのインストールに推奨されるこれらのすべては、Ubuntu 16.04では動作しません。誰が助けることができますか?

10
Ulrich

これを試すことができますgnome Ubuntu LTS 16.04でこれを行うことができました

wget -O google-earth.sh http://drive.noobslab.com/data/apps/google-earth/google-earth.sh
chmod +x google-earth.sh;Sudo ./google-earth.sh

Google EarthのフォントがUい場合、次のコマンドを使用してmsttcorefontsを追加できます。

Sudo apt-get install msttcorefonts

enter image description here

5
iki tamanyira

64ビットシステムの場合

Sudo apt --yes install lsb-core

cd /tmp
mkdir google-earth && cd google-earth
wget https://dl.google.com/dl/earth/client/current/google-earth-stable_current_AMD64.deb
Sudo dpkg -i google-earth-stable*.deb

# Step to show Panoramio pictures
cd /opt/google/earth/free/
Sudo wget https://googledrive.com/Host/0B2F__nkihfiNalQzN0ZmcjBPTGs/ge7.1.1.1580-0.x86_64-new-qt-libs-debian7-ubuntu12.tar.xz
Sudo tar xvf ge7.1.1.1580-0.x86_64-new-qt-libs-debian7-ubuntu12.tar.xz

32ビットシステムの場合

Sudo apt --yes install lsb-core

cd /tmp
mkdir google-earth && cd google-earth
wget https://dl.google.com/dl/earth/client/current/google-earth-stable_current_i386.deb
Sudo dpkg -i google-earth-stable*.deb

参照

http://blog.pztop.com/2016/04/28/Install-Google-Earth-on-Ubuntu-16-04/

2