拷贝下面内容到相应编辑器中,然后保存并关闭.
sudo chmod +x /usr/bin/thunderbird.sh
6、根据需要创建快捷方式 ,指向/usr/bin/thunderbird.sh即可。
二, 安装后无响应问题解决办法:
执行完上述操作后,在 应用程序--Internet--Thunderbird,就可以看到连接了,但是执行后无响应,在终端中执行命令: thunderbird.sh 提示出错:Segmentation fault (core dumped).
实际上很多程序都会出现这个问题,可以同样参考以下解决方法:
2.1 用管理员的身份编辑链接文件,本文中就是thunderbird.sh,在文件开头这样一串文字后:
代码:
#!/bin/sh
#
另起一行,添加:
GTK_IM_MODULE=scim-bridge
2.2 举例:
原来的thunderbird.sh
代码:
#!/bin/sh
#
# ***** BEGIN LICENSE BLOCK *****
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
#
# The contents of this file are subject to the Mozilla Public License Version
... ...
修改后的thunderbird.sh
代码:
#!/bin/sh
#
GTK_IM_MODULE=scim-bridge
# ***** BEGIN LICENSE BLOCK *****
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
#
# The contents of this file are subject to the Mozilla Public License Version
... ...
三, 导入老版本的帐户同邮件
3.1 安装好之后你可能会发现,打开Thunderbird后,原来的帐户邮件不见了需要重新设置一切... ...不要紧张,这是由于手动安装同APT安装对保存这些文件目录的定义不同造成的.
你的老版本的一切都安全的躺在 /home/username/.mozilla-thunderbird (username是指你的帐户名,每个人不同的哦),而手动版本却改到了 /home/username/.thunderbird 下,我们需要做得就是把两个文件夹里的内容互换一下.
3.2 操作方法:
这是我的方式,你的可以不同.高手们请忍耐,再一次刺痛了你们,请原谅我的菜,命令行的东西我是能躲就躲,呵呵!!!!!!
进入 /home/username/.thunderbird --------- Ctrl+A ------- 删除.
进入 /home/username/.mozilla-thunderbird --------- Ctrl+A ------- Ctrl+C 复制 ------- 回到 /home/username/.thunderbird ------- Ctrl+V 粘贴
删除 /home/username/.mozilla-thunderbird,不放心的话,先留着,没问题后再删不迟!!!!!
哈,喘口气先,原来命令行的好处就是可以简单的把我说的一堆废话用简单的一两句话代替,可惜,我不会!!!!!
3.3 打开Thunderbird吧,享受新版本的快感吧!
哈哈,终于完成了!好长的文章,希望通过本文给广大向我一样的朋友一点提示!!!! 原来ubuntu下安装软件还是很有趣的吗!!!!