Answers:
您可以使用终端直接下载并安装它。
wget https://releases.mozilla.org/pub/mozilla.org/thunderbird/releases/24.3.0/linux-i686/en-US/thunderbird-24.3.0.tar.bz2 -O- | sudo tar xj -C /opt && sudo ln -s /opt/thunderbird/thunderbird /usr/bin/thunderbird
请注意,这还将在其中创建一个链接,/usr/bin/
以便您可以从终端启动Thunderbird,而无需指定其文件夹。修改该命令的以下部分以适合您的环境:
thunderbird-24.3.0.tar.bz2
是最新版本。您可以从Thunderbird网站上进行检查。输入密码以确认操作。
资料来源:安装thunderbird linux。
wget: invalid option -- 'C'
在尝试时得到了
这是有关如何安装最新 Thunderbird版本的分步说明。
首先,如果安装了Thunderbird版本,则需要将其删除。不用担心,您现有的帐户将会保留。如果应该保留Unity Desktop的启动器,我们将首先对其进行备份。稍后将其移至其原始位置。
cp /usr/share/applications/thunderbird.desktop ~
删除雷鸟:
sudo apt remove thunderbird
从Mozilla下载最新的Thunderbird版本。下载的文件是一个包含完整程序的存档。它不是可以与程序包管理器一起安装的程序包。以下步骤将程序放置在正确的位置。
提取档案:
tar xjf thunderbird-*.tar.bz2
将目录移动到新位置:
sudo mv thunderbird /opt/
在中创建符号链接/usr/bin
:
sudo ln -s /opt/thunderbird/thunderbird /usr/bin/thunderbird
为Unity Desktop添加启动器:
a)如果thunderbird.desktop
第一步已备份,则只需使用它即可。我们还将更新对该图标的引用。
sed -i "s/Icon=thunderbird/Icon=\/opt\/thunderbird\/chrome\/icons\/default\/default128.png/g" ~/thunderbird.desktop
再次激活启动器:
sudo mv ~/thunderbird.desktop /usr/share/applications
b)否则,我们将创建启动器文件:
sudo gedit /usr/share/applications/thunderbird.desktop
将以下行添加到thunderbird.desktop
:
[Desktop Entry]
Encoding=UTF-8
Name=Thunderbird Mail
Comment=Send and receive mail with Thunderbird
GenericName=Mail Client
Keywords=Email;E-mail;Newsgroup;Feed;RSS
Exec=thunderbird %u
Terminal=false
X-MultipleArgs=false
Type=Application
Icon=/opt/thunderbird/chrome/icons/default/default128.png
Categories=Application;Network;Email;
MimeType=x-scheme-handler/mailto;application/x-xpinstall;
StartupNotify=true
Actions=Compose;Contacts
[Desktop Action Compose]
Name=Compose New Message
Exec=thunderbird -compose
OnlyShowIn=Messaging Menu;Unity;
[Desktop Action Contacts]
Name=Contacts
Exec=thunderbird -addressbook
OnlyShowIn=Messaging Menu;Unity;
要安装雷鸟的最新稳定版本52.3.0,只需按键盘上的Ctrl+ Alt+ T打开终端。打开时,运行以下命令:
对于32位
wget http://ftp.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/en-US/thunderbird-52.3.0.tar.bz2
对于64位
wget http://ftp.mozilla.org/pub/thunderbird/releases/52.3.0/linux-x86_64/en-US/thunderbird-52.3.0.tar.bz2
然后,您执行以下操作:
tar -xjvf thunderbird-52.3.0.tar.bz2
cd thunderbird
sudo ln -s ~/thunderbird/thunderbird /usr/bin/thunderbird
sudo thunderbird
您也可以通过下载MAR文件来更新Thunderbird。单击以下载32位版本或64位版本。
有关如何使用MAR文件手动更新的完整说明,请参阅软件更新:手动安装MAR文件。
注意:我强烈建议您将个人资料(.thunderbird文件夹)复制到另一个文件夹,以防万一。
Firefox相关问题的公认答案也适用于Thunderbird:
Firefox的最新版本可在所有受支持的Ubuntu版本中作为安全更新使用,只需执行常规更新即可将其插入。
通常,在Mozilla发布公告后的几个小时内就可以使用它,有时甚至更快,这取决于存档生成器和本地镜像的速度等。
最重要的是,Mozilla安全团队的PPA始终为所有受支持的Ubuntu版本提供Thunderbird(和Firefox)的最新稳定版本。Mozilla团队将其用作包构建的过渡区域,这些包构建将在进行一些测试后最终出现在主存储库中。这意味着您可能会在主存储库之前几个小时甚至几天获得新版本,但是在被固定版本取代之前,我可能会遇到(通常是次要的)打包错误。
您可以使用以下命令进行设置并升级Thunderbird:
sudo add-apt-repository ppa:ubuntu-mozilla-security/ppa
sudo apt-get update
sudo apt-get upgrade