Windows 10 reached EOS (end of support) on October 14, 2025. If you are on Windows 10, see this article.

搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

了解更多
封存

Install a TB tar "xz" file, based on installation instruction does not work.

dave

The TB Solutions only provide information for a tar "bz2" file. I downloaded a "xz" file (thunderbird-140.0.tar.xz), how do I install this?

Thanks for any help or solution.

I wish to update my current version of 128.12.0esr within my Ubuntu 24.04.2 LTS OS.

The TB Solutions only provide information for a tar "bz2" file. I downloaded a "xz" file (thunderbird-140.0.tar.xz), how do I install this? Thanks for any help or solution. I wish to update my current version of 128.12.0esr within my Ubuntu 24.04.2 LTS OS.

所有回覆 (3)

The tar -xf thunderbird-140.0.tar.xz command is all you need to extract .tar.xz files on most Linux distributions.

Thanks for getting back, how do I expand it to a new folder called Thunderbird. What it does is it expands inside of my Download folder. Again, thanks for the command , just need to open in its own created folder.

dave

You could chain some Bash commands together with the tar command: mkdir /home/$USER/Downloads/Thunderbird && cd $_ && tar -xf /home/$USER/Downloads/thunderbird-140.0.tar.xz This will create a new folder called Thunderbird in your Downloads folder, cd into it, and then extract the tar file's contents into that folder.