自拍偷在线精品自拍偷,亚洲欧美中文日韩v在线观看不卡

Ubuntu下安裝Thunderbird

運(yùn)維 系統(tǒng)運(yùn)維
如何在Ubuntu下安裝Thunderbird 呢?Thunderbird的官方網(wǎng)站上沒有給出詳細(xì)的文檔。但是對于第一次接觸安裝Thunderbird的人們來說,還是有一定難度的。本文用最簡潔地方法介紹了Ubuntu下Thunderbird的安裝方法。

  Thunderbird官方?jīng)]有給出詳細(xì)的安裝文檔,雖說他強(qiáng)大到解壓縮就可用,但是這***的1%對廣大菜鳥朋友來說,還是有些難度的,我有幸在Ubuntu下安裝***版的thunderbird成功,下面我將把我的安裝過程同大家共享!!!

  1.打開終端,我們將要把它安裝到 /opt 目錄下:

  代碼:

  cd /opt

  2.下載thunderbird,也可以自己下載***版,然后拷貝到/opt下:

  代碼:

  1.   sudo wget  

  3.解壓縮下載文件到/opt,解壓縮文件夾名字為thunderbird

  代碼:

  1.   sudo tar -xvf thunderbird-2.0.0.6.tar.gz  

  4. 更改文件夾所有者同訪問權(quán)限:

  代碼:

  1.   sudo chown -R root:root /opt/thunderbird/  
  2.  
  3.   sudo chmod -R 755 /opt/thunderbird/  

  5.建立鏈接文件:

  代碼:

  1.   sudo gedit /usr/bin/thunderbird.sh  

  6.拷貝一下內(nèi)容到相應(yīng)編輯器中,然后保存并關(guān)閉.

  代碼:

  1.   cd /opt/thunderbird/  
  2.  
  3.   ./thunderbird 

  7.使該文件具有可執(zhí)行屬性:

  代碼:

  1.   sudo chmod +x /usr/bin/thunderbird.sh 

  8. 建立快捷方式:

  代碼:

  1.   sudo gedit /usr/share/applications/thunderbird.desktop 

  9. 拷貝一下內(nèi)容到相應(yīng)編輯器中,然后保存并關(guān)閉.

  代碼:

  1.   [Desktop Entry]  
  2.  
  3.   Name=Thunderbird 
  4.  
  5.   Comment=Read/Write Mail/News with Mozilla Thunderbird  
  6.  
  7.   Exec=thunderbird.sh  
  8.  
  9.   Icon=/opt/Thunderbird/chrome/icons/default/default.xpm  
  10.  
  11.   Terminal=false 
  12.  
  13.   Type=Application 
  14.  
  15.   Categories=Application;Network; 

  ps: 如果這步?jīng)]有反應(yīng)的請自己手動添加一下,我實(shí)驗(yàn)了n遍,在Internet菜單下就是沒快捷方式,郁悶..!***手動解決.另外,在終端中輸入thunderbird.sh也可以啟動的。

  ◆安裝后無響應(yīng)問題解決辦法:

  執(zhí)行完上述操作后,在 應(yīng)用程序--Internet--Thunderbird,就可以看到連接了,但是執(zhí)行后無響應(yīng),在終端中執(zhí)行命令: thunderbird.sh 提示出錯(cuò):Segmentation fault (core dumped).

  實(shí)際上很多程序都會出現(xiàn)這個(gè)問題,可以同樣參考以下解決方法:

  1.用管理員的身份編輯鏈接文件,本文中就是thunderbird.sh,在文件開頭這樣一串文字后:

  代碼:

  

  1. #!/bin/sh 
  2. #

  另起一行,添加: GTK_IM_MODULE=scim-bridge

  2. 舉例:

  原來的thunderbird.sh

  代碼:

  1.   #!/bin/sh  
  2.  
  3.   #  
  4.  
  5.   # ***** BEGIN LICENSE BLOCK *****  
  6.  
  7.   # Version: MPL 1.1/GPL 2.0/LGPL 2.1  
  8.  
  9.   #  
  10.  
  11.   # The contents of this file are subject to the Mozilla Public License Version 

  修改后的thunderbird.sh

  代碼:

  1.   #!/bin/sh  
  2.  
  3.   #  
  4.  
  5.   GTK_IM_MODULE=scim-bridge  
  6.  
  7.   # ***** BEGIN LICENSE BLOCK *****  
  8.  
  9.   # Version: MPL 1.1/GPL 2.0/LGPL 2.1  
  10.  
  11.   #  
  12.  
  13.   # 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下安裝Thunderbird還是很有趣的。

【編輯推薦】

  1. Thunderbird若干漏洞
  2. 如何在SUSE安裝firefox和thunderbird兩個(gè)版本
  3. Thunderbird 郵件導(dǎo)入導(dǎo)出的方法
  4. Thunderbird的安裝方法
  5. Red Hat對thunderbird發(fā)布升級
  6. Thunderbird 命令行 URL 殼命令注入漏洞
責(zé)任編輯:zhaolei 來源: 網(wǎng)絡(luò)轉(zhuǎn)載
相關(guān)推薦

2011-01-19 09:43:24

UbuntuThunderbird

2011-01-21 17:12:48

ThunderbirdIMAP

2011-01-21 14:03:35

Thunderbird安裝

2011-01-19 11:00:39

UbuntuThunderbird

2011-01-18 17:35:08

Thunderbird安裝方法

2011-02-25 14:35:06

ubuntuproftp安裝

2011-03-14 13:07:23

Ubuntu安裝LAMP

2011-03-03 14:47:35

2011-03-03 14:47:35

2011-03-03 09:04:25

2011-01-21 14:54:29

Thunderbird快捷鍵

2011-01-19 10:30:20

UbuntuThunderbird

2011-01-21 17:51:52

2016-01-04 13:52:12

UbuntuSwift安裝

2009-06-15 09:01:19

安裝Jboss

2011-07-14 13:28:24

2011-03-10 08:59:04

Ubuntu安裝LAMP

2011-02-21 16:00:41

UbuntuGFTP安裝

2011-02-21 17:17:05

UbuntuZimbra安裝

2011-03-03 11:06:44

Ubuntu安裝ProFTPD
點(diǎn)贊
收藏

51CTO技術(shù)棧公眾號