作者:chinakr(<
http://www.edu-map/chinakr>)
日期:2008年1月13日
Skype是一个跨平台的网络电话软件,具有超强的网络适应能力,能够通过文字聊天、语音聊天和视频聊天让用户进行沟通,同时还提供了付费的PC to Phone的功能。
在网上找到一篇介绍Skype安装的文章,其中提到了一个Skype官方提供的Debian源。
把这一行源信息添加到“系统→系统管理→软件源→第三方软件”,然后就可以直接从软件源安装Skype了。
通过apt-cache show命令可以看到软件源中提供的Skype版本还是1.4.0.118-1,这个版本是不支持视频聊天的。因此需要手动安装Skype 2.0。
google“skype 2.0 ubuntu download”,很容易找到官方的下载链接“Download Skype for Linux”。其中提供了Ubuntu 7.04和Debian适用的deb包。不过在我机器上,这两个包安装的Skype运行都会出现Core dump错误。下载运行“Dynamic Static”包skype-2.0.0.27.tar.bz2也是同样的结果。
在网上google了一圈,换了好几个关键字也没有什么头绪。blogspot和wordpress的博客都访问不了(被盾了)。不过经历了一番失败后终有斩获。
google“skype 2.0 ubuntu core dump”的第一个链接就是宝贝呀,
点击进入。
文中提到:
引用:
It seems to be a combination of having an existing profile setup when the EULA is displayed.
I also got the core dump, so then I moved my ~/.Skye directory and it started up fine (including EULA).
So I moved the ~/.Skype directory back, and edited ~/.Skype/shared.xml, I changed
Code:
<Installed>1</Installed>
to
Code:
<Installed>2</Installed>
that got rid of the EULA and Skype worked fine after that.
按照文中提到的办法,修改~/.Skype/shared.xml这个配置文件就搞定了:D
$ cd ~./Skype
$ sudo gedit shared.xml
搜索“installed”,把“<Installed>1</Installed>”修改为“<Installed>2</Installed>”
上面的EULA实际上就是用户授权协议,没想到这个小东西竟然能带来这样的困扰:P
把上面的内容写出来,希望对和我一样希望完全在Linux桌面操作系统上实现办公等用途的朋友们有所帮助!
(欢迎转载,转载请注明作者和出处)