Install Thunderbird on Linux
Revision Information
- Revision id: 252385
- Created:
- Creator: Marcelo Ghelman
- Comment: Installing for just one user, formatting, and more
- Reviewed: No
- Ready for localization: No
Revision Source
Revision Content
This article explains how to download and install Thunderbird on a Linux.
Table of Contents
Installing from your distribution package manager (Recommended)
To install Thunderbird using your distribution package manager, please refer to your Linux distribution's documentation.
This method is the recommended way because it ensures Thunderbird and all the required libraries are installed and configured optimally for your distribution. However, there may be a small delay between the official release of a new version of Thunderbird and the moment when your distribution updates the version it distributes. Your distribution may also distribute it without the Thunderbird branding.
Installing from Snap
To install Thunderbird from Snap, install Snap on your computer. Once Snap is installed, go to the Thunderbird Snapcraft's Store page, click the button and follow the instructions.
Installing Thunderbird manually
Installing for all users (advanced)
- To install Thunderbird with this method, you must be able to login as root or execute
sudo
commands. - This installation will have priority over the Thunderbird version installed through your package manager.
- Go to the Thunderbird's download page and click on the button.
- Open a terminal and go to the folder where your download has been saved. For example:
cd ~/Downloads
- Extract the contents of the downloaded file:
tar xjf thunderbird-*.tar.bz2
- Move the uncompressed Thunderbird folder to /opt (as root, or preceded by
sudo
):mv thunderbird /opt
- Find out where your distribution stores system files, to know which paths to use in the following steps:
which firefox | sed 's/firefox//'
- The result may be
/usr/bin/
or/usr/local/bin/
.
- The result may be
find /usr -name firefox.desktop | sed 's/firefox.desktop//'
- The result may be
/usr/share/applications/
or/usr/local/share/applications/
.
- The result may be
- Create a symlink to the Thunderbird executable (as root, or preceded by
sudo
):rm -f /usr/bin/thunderbird; ln -s /opt/thunderbird/thunderbird /usr/bin/thunderbird
orrm -f /usr/local/bin/thunderbird; ln -s /opt/thunderbird/thunderbird /usr/local/bin/thunderbird
- Download a copy of the desktop file (as root, or preceded by
sudo
):wget https://raw.githubusercontent.com/mozilla/sumo-kb/main/installing-thunderbird-linux/thunderbird.desktop -P /usr/share/applications
orwget https://raw.githubusercontent.com/mozilla/sumo-kb/main/installing-thunderbird-linux/thunderbird.desktop -P /usr/local/share/applications
- Alternatively, if
wget
is not installed on your computer, go to the URL mentioned above, right-click on the page to open the contextual menu and select . After you download the file, move it to /usr/share/applications or /usr/local/share/applications.
- Verify that the installation was successful: Open Thunderbird, click the menu button
, click and select . In the Application Basics section of the Troubleshooting Information page, the value of the Application Binary entry should be
/opt/thunderbird/thunderbird-bin
Installing for just one user (easier)
- Go to the Thunderbird's download page and click on the button.
- Open a terminal and go to the folder where your download has been saved. For example:
cd ~/Downloads
- Extract the contents of the downloaded file:
tar xjf thunderbird-*.tar.bz2
- Create a launcher on the Desktop:
ln -s ~/Downloads/thunderbird/thunderbird ~/Desktop
- You can also right-click on the Desktop and select. Fill in Name Thunderbird. Select next to Command and choose ~/Downloads/thunderbird/thunderbird