解决ubuntu 11.04 google earth 6 乱码

基本上 Google earth 6 在 EzGo8 、Ubuntu 下会有下列问题:
1. 刚安装好 Google earth 6 可能会无法执行, 或执行根本没反应, 必须安装相对应的链接库。
2. Google earth 6 无法正常显示中文, 会变成方形的虚线格子, 因为 Google earth 6 内建的链接库有问题, 必须更换。
3. 即使解决了中文显示的问题, 却可能还有执行完 Google earth 6 没多久就直接自行关闭, 或是无法输入中文的问题。

解决方法如下:进入终端机窗口, 依序执行下列指令~
1. 先更新软件来源
sudo apt-get update
2. 安装下列软件包
sudo apt-get install lsb-core libfreeimage3 libqt4-webkit
3. 移除 Google earth 6 自行安装有问题的4个 libQt*.* 档案!
sudo rm /opt/google/earth/free/libQt*.*
4. 更改 Google earth 6 的程序执行脚本 :
sudo gedit /opt/google/earth/free/googleearth
寻找脚本的最后一行应该是这样的:
LD_LIBRARY_PATH=.:$LD_LIBRARY_PATH ./googleearth-bin “$@”
请在它的前一行插入底下这一句:
export LD_PRELOAD=/usr/lib/libfreeimage.so.3

 

你可能感兴趣的:(Ubuntu)