ubuntu下手動安裝Thunderbird簡體中文正式版
掃描二維碼
隨時(shí)隨地手機(jī)看文章
Thunderbird官方?jīng)]有給出詳細(xì)的安裝文檔,雖說他強(qiáng)大到解壓縮就可用,但是這最后的1%對廣大菜鳥朋友來說,還是有些難度的,我有幸安裝最新版的thunderbird成功,下面我將把我的安裝過程同大家共享!!!
1.打開終端,我們將要把它安裝到 /opt 目錄下:
代碼:
cd /opt
2.下載thunderbird,也可以自己下載最新版,然后拷貝到/opt下:
鏈接如下:http://releases.mozilla.org/pub/mozilla.org/thunderbird/releases/2.0.0.6/linux-i686/zh-CN/thunderbird-2.0.0.6.tar.gz
代碼:
sudo wget http://releases.mozilla.org/pub/mozilla.org/thunderbird/releases/2.0.0.6/linux-i686/zh-CN/thunderbird-2.0.0.6.tar.gz
3.解壓縮下載文件到/opt,解壓縮文件夾名字為thunderbird
代碼:
sudo tar -xvf thunderbird-2.0.0.6.tar.gz
4. 更改文件夾所有者同訪問權(quán)限:
代碼:
sudo chown -R root:root /opt/thunderbird/
sudo chmod -R 755 /opt/thunderbird/
5.建立鏈接文件:
代碼:
sudo gedit /usr/bin/thunderbird.sh
6.拷貝一下內(nèi)容到相應(yīng)編輯器中,然后保存并關(guān)閉.
代碼:
cd /opt/thunderbird/
./thunderbird
7.使該文件具有可執(zhí)行屬性:
代碼:
sudo chmod +x /usr/bin/thunderbird.sh
8. 建立快捷方式:
代碼:
sudo gedit /usr/share/applications/thunderbird.desktop
9. 拷貝一下內(nèi)容到相應(yīng)編輯器中,然后保存并關(guān)閉.
代碼:
[Desktop Entry]
Name=Thunderbird
Comment=Read/Write Mail/News with Mozilla Thunderbird
Exec=thunderbird.sh
Icon=/opt/Thunderbird/chrome/icons/default/default.xpm
Terminal=false
Type=Application
Categories=Application;Network;
ps: 如果這步?jīng)]有反應(yīng)的請自己手動添加一下,我實(shí)驗(yàn)了n遍,在Internet菜單下就是沒快捷方式,郁悶... ...最后手動解決.另外,在終端中輸入thunderbird.sh也可以啟動的.
執(zhí)行完上述操作后,在 應(yīng)用程序--Internet--Thunderbird,就可以看到連接了,但是執(zhí)行后無響應(yīng),在終端中執(zhí)行命令: thunderbird.sh 提示出錯(cuò):Segmentation fault (core dumped).
實(shí)際上很多程序都會出現(xiàn)這個(gè)問題,可以同樣參考以下解決方法:
1.用管理員的身份編輯鏈接文件,本文中就是thunderbird.sh,在文件開頭這樣一串文字后:
代碼:
#!/bin/sh
#
另起一行,添加: GTK_IM_MODULE=scim-bridge
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
... ...
◆導(dǎo)入老版本的帳戶同郵件
1.安裝好之后你可能會發(fā)現(xiàn),打開Thunderbird后,原來的帳戶郵件不見了需要重新設(shè)置一切... ...不要緊張,這是由于手動安裝同APT安裝對保存這些文件目錄的定義不同造成的.
你的老版本的一切都安全的躺在 /home/username/.mozilla-thunderbird (username是指你的帳戶名,每個(gè)人不同的哦),而手動版本卻改到了 /home/username/.thunderbird 下,我們需要做得就是把兩個(gè)文件夾里的內(nèi)容互換一下.
2. 操作方法:
這是我的方式,你的可以不同.高手們請忍耐,再一次刺痛了你們,請?jiān)徫业牟?命令行的東西我是能躲就躲,呵呵!!!!!!
進(jìn)入 /home/username/.thunderbird --------- Ctrl+A ------- 刪除.
進(jìn)入 /home/username/.mozilla-thunderbird --------- Ctrl+A ------- Ctrl+C 復(fù)制 ------- 回到 /home/username/.thunderbird ------- Ctrl+V 粘貼
刪除 /home/username/.mozilla-thunderbird,不放心的話,先留著,沒問題后再刪不遲!!!!!
哈,喘口氣先,原來命令行的好處就是可以簡單的把我說的一堆廢話用簡單的一兩句話代替,可惜,我不會!!!!!
3. 打開Thunderbird吧,享受新版本的快感吧!
哈哈,終于完成了!好長的文章,希望通過本文給廣大向我一樣的朋友一點(diǎn)提示!!!! 原來ubuntu下安裝軟件還是很有趣的嗎!!!!