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


10

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では機能しなくなりました。誰が助けることができますか?


こんにちは。問題なくインストールできましたか?
Elysium

回答:


5

これを試すことができます私は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のフォントが醜い場合は、次のコマンドを使用してmsttcorefontsを追加できます。

sudo apt-get install msttcorefonts

ここに画像の説明を入力してください


2
いつもと同じエラー。Google Earthが数秒後にクラッシュし、次のエラーメッセージが表示されます:クラッシュの処理中に別のクラッシュが発生しました!
Ulrich

2

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/

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.