Google Earth 6已经在昨天发布了。Google Earth 6的新特性:虚拟地球将更富真实感,整合街景和3D树木,此外历史照片也更易于浏览。Google Earth早在2008年便加入了街景,但v6版实现了全面整合,用户可以直接从外太空飞到家门口。地球如果没有树林将是一个十分荒凉无趣的地方,在加入了数千3D建筑物后,Google正与环保组织合作,让用户可以看到一片绿色,了解森林所受到的威胁。
然而,在Linux中安装它是那么的困难,总是有这样那样的错误。这里有一篇文章介绍在Ubuntu 10.10 Linux中如何正确安装和运行Google Earth 6。
以上图片上传到红联Linux系统教程频道中。
1、到Google官网网站(http://www.google.com/earth/download/ge/agree.html)下载最新版 Google Earth 6 (.bin) 存放在你的home/linux目录下打开终端,输入如下命令:
cd
chmod +x GoogleEarthLinux.bin
./GoogleEarthLinux.bin --target /tmp/ge
这时你会得到如下错误(或者类似的错误):
Verifying archive integrity... All good.
Uncompressing Google Earth for GNU/Linux 6.0.0.1735..............................................................
setup.data/setup.xml:1: parser error : Document is empty
^
setup.data/setup.xml:1: parser error : Start tag expected, '<' not found
^
Couldn't load 'setup.data/setup.xml'
linux@linux-Aspire-3680:~$
不用担心,我们用下面的命令修复它:
cd /tmp/ge/setup.data/bin/Linux/x86/
mv setup.gtk setup.gtk2
cd /tmp/ge
sudo ./setup.sh
出现:
exec: 50: ./googleearth-bin: not found
或:
googleearth: command not found
在安装 Google Earth 6之前,需要先安装 lsb-core. 在 Ubuntu中, 通过如下命令安装
sudo apt-get install lsb-core
然后重新运行
cd /tmp/ge
sudo ./setup.sh
这样就能搞定了。