Posts

Showing posts from November, 2017

Update firefox in Ubuntu from tar.bz2

Before the days of .deb packages, installing or updating a program in Ubuntu used to highly cumbersome and confusing, even for a novice techie. Nowadays, installation using .deb packages have become as convenient as installing an app from its APK. However, if the situation arises where .deb package is not available and you are forced to install using tarball (.tar.bz2 compressed file), follow the commands below to manually perform some of the essential steps auto-executed during installation using a package. Below example illustrates manually updating firefox using its tarball. If you want to install a program instead of updating it, remove the "rm" steps from below procedure. Download the latest version of Firefox from here . For this example, we'll assume your downloaded firefox .tar.bz2 file is in "~/Downloads" directory Open terminal using Ctrl+Shift+T and input the following commands     $ cd Downloads     $ tar xvjf <filename>.tar.bz2