Ubuntu下手动安装Thunderbird简体中文正式版

  Thunderbird官方没有给出详细的安装文档,虽说他强大到解压缩就可用,但是这最后的1%对广大菜鸟朋友来说,还是有些难度的,我有幸在Ubuntu下手动安装最新版的thunderbird成功,下面我将把我的安装过程同大家共享!!!

  1.打开Ubuntu终端,我们将要把它安装到 /opt 目录下:

  代码:

  cd /opt

  2.下载thunderbird,也可以自己下载最新版,然后拷贝到/opt下:

  链接如下:

  代码:

  sudo wget

  3.解压缩下载文件到/opt,解压缩文件夹名字为thunderbird

  代码:

  sudo tar -xvf thunderbird-2.0.0.6.tar.gz

  4. 更改文件夹所有者同访问权限:

  代码:

  sudo chown -R root:root /opt/thunderbird/

  sudo chmod -R 755 /opt/thunderbird/

  5.建立链接文件:

  代码:

  sudo gedit /usr/bin/thunderbird.sh

  6.拷贝一下内容到相应编辑器中,然后保存并关闭.

  代码:

  cd /opt/thunderbird/

  ./thunderbird

  7.使该文件具有可执行属性:

  代码:

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

  8. 建立快捷方式:

  代码:

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

  9. 拷贝一下内容到相应编辑器中,然后保存并关闭.

  代码:

  [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: 如果这步没有反应的请自己手动添加一下,我实验了n遍,在Internet菜单下就是没快捷方式,郁闷... ...最后手动解决.另外,在终端中输入thunderbird.sh也可以启动的.

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/28309.html