Chinaunix首页 | 论坛 | 博客
  • 博客访问: 118540
  • 博文数量: 28
  • 博客积分: 1648
  • 博客等级: 上尉
  • 技术积分: 325
  • 用 户 组: 普通用户
  • 注册时间: 2006-03-06 12:50
文章分类
文章存档

2014年(1)

2013年(1)

2012年(7)

2011年(14)

2010年(4)

2007年(1)

我的朋友

分类: LINUX

2010-11-23 14:02:53

I got execute Google-Earth in my Acer Aspire One with Linpus Linux following *tweak* steps described in these two webs:
http://acerone110.blogspot.com/2010/04/google-chrome-en-linpus.html
https://lists.sdsc.edu/pipermail/npaci-rocks-discussion/2010-January/044751.html
I am going to describe commands executed step by step (NOTE: As I said before, they are extracted from links posted before, but I have described them step by step in order to make it easy for non linux experts like me):
// Change to root user
$sudo -s
// Move to Google Earth installation folder
#cd /opt/google-earth
// Create a temporally folder to download libstdc++ library
#mkdir -pm 777 temp
#cd temp                  
// Load RPM packages repositories
#rpm -vU \
\
// Download libstdc++ library RPM package
#wget
// Extract package
#rpm2cpio libstdc++-4.3.2-7.i386.rpm | cpio -idv
// The extraction creates the ./usr/lib folder that contains libstdc++.so.6.0.10 and a softlink, libstdc++.so.6 files
// Move to new ./usr/lib folder
#cd usr/lib
// Copy libstdc++.so.6.0.10 into /opt/google-earth folder
#cp libstdc++.so.6 /opt/google-earth
// Move to /opt/google-earth folder
#cd /opt/google-earth
// Create a softlink
#ln -s libstdc++.so.6.0.10 libstdc++.so.6
// Now Google Earth should work. We just only have to try to execute it
#./google-earth
I hope this post helps to non linux experts like me. Thanks to other webs where I
阅读(1233) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~