Ubuntu 16.04 64 비트에 Google 어스를 설치할 수 없습니다


10

lsb-core 패키지가 설치되어 있는지 확인하십시오! Applications-> Accessories-> Terminal (Panel) 또는 Dash (new Unity desktop)에서 터미널을 열고 터미널에 다음 명령을 입력 (또는 복사하여 붙여 넣기)하십시오.

sudo apt-get 설치 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 어스 설치에 권장되는 모든 사항이 더 이상 Ubuntu 16.04에서 작동하지 않습니다. 누가 도울 수 있습니까?


안녕. 문제없이 설치할 수 있습니까?
엘리시움

답변:


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 어스 어글리의 글꼴 인 경우 다음 명령을 사용하여 msttcorefonts를 추가 할 수 있습니다.

sudo apt-get install msttcorefonts

여기에 이미지 설명을 입력하십시오


2
항상 같은 오류입니다. 오류 메시지와 함께 몇 초 후에 Google 어스가 충돌합니다. 충돌을 처리하는 동안 다른 충돌이 발생했습니다!
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.