Install old version of package Firefox-ESR on Ubuntu
I would like to install Firefox v52 ESR on Ubuntu 16.04 in order to access a legacy Java applet. The current version Firefox 60 ESR no longer allows me to do that.
In effect, I would like to apt-get install firefox-esr=52.5.3esr+build1-0ubuntu0.16.04.1
from deb http://ppa.launchpad.net/mozillateam/ppa/ubuntu xenial main
, but the version is apparently no longer available from this PPA.
How can I get hold of an older version of an Ubuntu package in a case like this?
ubuntu firefox firefox-extensions apt
add a comment |
I would like to install Firefox v52 ESR on Ubuntu 16.04 in order to access a legacy Java applet. The current version Firefox 60 ESR no longer allows me to do that.
In effect, I would like to apt-get install firefox-esr=52.5.3esr+build1-0ubuntu0.16.04.1
from deb http://ppa.launchpad.net/mozillateam/ppa/ubuntu xenial main
, but the version is apparently no longer available from this PPA.
How can I get hold of an older version of an Ubuntu package in a case like this?
ubuntu firefox firefox-extensions apt
add a comment |
I would like to install Firefox v52 ESR on Ubuntu 16.04 in order to access a legacy Java applet. The current version Firefox 60 ESR no longer allows me to do that.
In effect, I would like to apt-get install firefox-esr=52.5.3esr+build1-0ubuntu0.16.04.1
from deb http://ppa.launchpad.net/mozillateam/ppa/ubuntu xenial main
, but the version is apparently no longer available from this PPA.
How can I get hold of an older version of an Ubuntu package in a case like this?
ubuntu firefox firefox-extensions apt
I would like to install Firefox v52 ESR on Ubuntu 16.04 in order to access a legacy Java applet. The current version Firefox 60 ESR no longer allows me to do that.
In effect, I would like to apt-get install firefox-esr=52.5.3esr+build1-0ubuntu0.16.04.1
from deb http://ppa.launchpad.net/mozillateam/ppa/ubuntu xenial main
, but the version is apparently no longer available from this PPA.
How can I get hold of an older version of an Ubuntu package in a case like this?
ubuntu firefox firefox-extensions apt
ubuntu firefox firefox-extensions apt
edited Jan 9 at 11:43
fixer1234
18.8k144982
18.8k144982
asked Jan 9 at 9:54
rookie099rookie099
1133
1133
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
See this Mozilla article about installing an old version. They go through a page of reasons why it's a bad idea because it is insecure, and a host of alternatives. They even recommend going to a competitive browser rather than downgrade.
Verify that your legacy add-on is still available and supported (many add-on developers dropped legacy support and either re-coded for the new standard or threw in the towel).
Just to toss this out there, there are some Firefox spin-offs that still support the legacy add-ons but are maintained so as not to be sitting ducks for exploits. The popular options are Waterfox, Pale Moon, and Basilisk. There is some basic coverage of these options here
Assuming you know all of the risks and are still intent on sticking with an old Firefox, read the part in the first link about disabling automatic updates. I had my system locked into v52 ESR for the same reason as you, and thought I had disabled updates. However, when ESR updated to v60, it ignored my settings and updated anyway. After you download it and before you install it, disconnect from the Internet until you get it installed and have turned off automatic updates. Keep the downloaded package so you can reinstall, just in case.
You will likely need to get this in the form of a tarball from Mozilla. The directory of previous releases is here. You mention v52.5.3 ESR. It isn't clear if you need that specific version or that was just what Ubuntu previously had in their repository. Mozilla offers every minor release of v52, the final one being v52.9.0 ESR. That would be the most "up-to-date" version.
It is a trivial installation and doesn't use the package manager. The instructions from Mozilla are here. These are the basic steps:
- Download Firefox from the Firefox download page to your home directory.
- Open a Terminal and go to your home directory:
cd ~
- Extract the contents of the downloaded file:
tar xjf firefox-*.tar.bz2
- Close Firefox if it's open.
To start Firefox, run the firefox script in the firefox folder:
~/firefox/firefox
Firefox should now start. You can then create an icon on your desktop to run this command.
If your system menu doesn't launch the new installation, edit the menu. Go to the Firefox entry and point it to the new installation start script.
If the icon in the system tray or desktop still points to the previous installation, you can delete those icons and create new ones from the menu entry.
add a comment |
This is extension of fixer1234's answer with some shell scripts.
There are two main URL to download Firefox package directly. These can be also viewed from a browser.
- http://ftp.mozilla.org/pub/firefox/releases/
- http://download-installer.cdn.mozilla.net/pub/firefox/releases/
First download the package with wget
or curl
then extract that tarball package with tar
command. Here is a sample shell script:
#!/bin/bash
Version='52.0esr'
Arch='linux-x86_64'
Lang='en-US'
File='firefox-52.0esr.tar.bz2'
cd ~
wget http://ftp.mozilla.org/pub/firefox/releases/$Version/$Arch/$Lang/$File
tar --extract --bzip2 --file=$File
cd firefox
./firefox
This installation procedure may overwrite previous installed Firefox profile. Also the Firefox binary may not be visible in any desktop manager menu. Firefox depends on some libraries, check/install those with apt-get install libgtk-3-0 libdbus-glib-1-2 libxt6
command before executing Firefox.
Ah, yes. Support for the CLI users! Just a couple of observations for readers. 1. The packaged versions are different for deb and rpm based distros, so Arch would use a different package than Ubuntu, and some people may be used to seeing that. In the script, Arch is just a variable name. For the tarballs, all Linux distros use the same tarball (although there are different ones for different computer architectures; thex86_64
is for 64 bit systems). Also note the need to specify the desired minor release number in the second line; (cont'd)
– fixer1234
Jan 10 at 11:21
52.0 was the first v52 release, the last was 52.9.0. So recognize that the script might need some minor tweaking, hence sample script. 2. The libraries mentioned in the last paragraph should already be there if Firefox was previously installed. 3. To avoid any risk of your profile being overwritten, you can temporarily rename the existing directory. The profiles are in/home/username/.mozilla/firefox/profile_folders
. Rename thatfirefox
directory to something likefirefox_old
. After installation, you can reuse the the current folder.
– fixer1234
Jan 10 at 11:21
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1392211%2finstall-old-version-of-package-firefox-esr-on-ubuntu%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
See this Mozilla article about installing an old version. They go through a page of reasons why it's a bad idea because it is insecure, and a host of alternatives. They even recommend going to a competitive browser rather than downgrade.
Verify that your legacy add-on is still available and supported (many add-on developers dropped legacy support and either re-coded for the new standard or threw in the towel).
Just to toss this out there, there are some Firefox spin-offs that still support the legacy add-ons but are maintained so as not to be sitting ducks for exploits. The popular options are Waterfox, Pale Moon, and Basilisk. There is some basic coverage of these options here
Assuming you know all of the risks and are still intent on sticking with an old Firefox, read the part in the first link about disabling automatic updates. I had my system locked into v52 ESR for the same reason as you, and thought I had disabled updates. However, when ESR updated to v60, it ignored my settings and updated anyway. After you download it and before you install it, disconnect from the Internet until you get it installed and have turned off automatic updates. Keep the downloaded package so you can reinstall, just in case.
You will likely need to get this in the form of a tarball from Mozilla. The directory of previous releases is here. You mention v52.5.3 ESR. It isn't clear if you need that specific version or that was just what Ubuntu previously had in their repository. Mozilla offers every minor release of v52, the final one being v52.9.0 ESR. That would be the most "up-to-date" version.
It is a trivial installation and doesn't use the package manager. The instructions from Mozilla are here. These are the basic steps:
- Download Firefox from the Firefox download page to your home directory.
- Open a Terminal and go to your home directory:
cd ~
- Extract the contents of the downloaded file:
tar xjf firefox-*.tar.bz2
- Close Firefox if it's open.
To start Firefox, run the firefox script in the firefox folder:
~/firefox/firefox
Firefox should now start. You can then create an icon on your desktop to run this command.
If your system menu doesn't launch the new installation, edit the menu. Go to the Firefox entry and point it to the new installation start script.
If the icon in the system tray or desktop still points to the previous installation, you can delete those icons and create new ones from the menu entry.
add a comment |
See this Mozilla article about installing an old version. They go through a page of reasons why it's a bad idea because it is insecure, and a host of alternatives. They even recommend going to a competitive browser rather than downgrade.
Verify that your legacy add-on is still available and supported (many add-on developers dropped legacy support and either re-coded for the new standard or threw in the towel).
Just to toss this out there, there are some Firefox spin-offs that still support the legacy add-ons but are maintained so as not to be sitting ducks for exploits. The popular options are Waterfox, Pale Moon, and Basilisk. There is some basic coverage of these options here
Assuming you know all of the risks and are still intent on sticking with an old Firefox, read the part in the first link about disabling automatic updates. I had my system locked into v52 ESR for the same reason as you, and thought I had disabled updates. However, when ESR updated to v60, it ignored my settings and updated anyway. After you download it and before you install it, disconnect from the Internet until you get it installed and have turned off automatic updates. Keep the downloaded package so you can reinstall, just in case.
You will likely need to get this in the form of a tarball from Mozilla. The directory of previous releases is here. You mention v52.5.3 ESR. It isn't clear if you need that specific version or that was just what Ubuntu previously had in their repository. Mozilla offers every minor release of v52, the final one being v52.9.0 ESR. That would be the most "up-to-date" version.
It is a trivial installation and doesn't use the package manager. The instructions from Mozilla are here. These are the basic steps:
- Download Firefox from the Firefox download page to your home directory.
- Open a Terminal and go to your home directory:
cd ~
- Extract the contents of the downloaded file:
tar xjf firefox-*.tar.bz2
- Close Firefox if it's open.
To start Firefox, run the firefox script in the firefox folder:
~/firefox/firefox
Firefox should now start. You can then create an icon on your desktop to run this command.
If your system menu doesn't launch the new installation, edit the menu. Go to the Firefox entry and point it to the new installation start script.
If the icon in the system tray or desktop still points to the previous installation, you can delete those icons and create new ones from the menu entry.
add a comment |
See this Mozilla article about installing an old version. They go through a page of reasons why it's a bad idea because it is insecure, and a host of alternatives. They even recommend going to a competitive browser rather than downgrade.
Verify that your legacy add-on is still available and supported (many add-on developers dropped legacy support and either re-coded for the new standard or threw in the towel).
Just to toss this out there, there are some Firefox spin-offs that still support the legacy add-ons but are maintained so as not to be sitting ducks for exploits. The popular options are Waterfox, Pale Moon, and Basilisk. There is some basic coverage of these options here
Assuming you know all of the risks and are still intent on sticking with an old Firefox, read the part in the first link about disabling automatic updates. I had my system locked into v52 ESR for the same reason as you, and thought I had disabled updates. However, when ESR updated to v60, it ignored my settings and updated anyway. After you download it and before you install it, disconnect from the Internet until you get it installed and have turned off automatic updates. Keep the downloaded package so you can reinstall, just in case.
You will likely need to get this in the form of a tarball from Mozilla. The directory of previous releases is here. You mention v52.5.3 ESR. It isn't clear if you need that specific version or that was just what Ubuntu previously had in their repository. Mozilla offers every minor release of v52, the final one being v52.9.0 ESR. That would be the most "up-to-date" version.
It is a trivial installation and doesn't use the package manager. The instructions from Mozilla are here. These are the basic steps:
- Download Firefox from the Firefox download page to your home directory.
- Open a Terminal and go to your home directory:
cd ~
- Extract the contents of the downloaded file:
tar xjf firefox-*.tar.bz2
- Close Firefox if it's open.
To start Firefox, run the firefox script in the firefox folder:
~/firefox/firefox
Firefox should now start. You can then create an icon on your desktop to run this command.
If your system menu doesn't launch the new installation, edit the menu. Go to the Firefox entry and point it to the new installation start script.
If the icon in the system tray or desktop still points to the previous installation, you can delete those icons and create new ones from the menu entry.
See this Mozilla article about installing an old version. They go through a page of reasons why it's a bad idea because it is insecure, and a host of alternatives. They even recommend going to a competitive browser rather than downgrade.
Verify that your legacy add-on is still available and supported (many add-on developers dropped legacy support and either re-coded for the new standard or threw in the towel).
Just to toss this out there, there are some Firefox spin-offs that still support the legacy add-ons but are maintained so as not to be sitting ducks for exploits. The popular options are Waterfox, Pale Moon, and Basilisk. There is some basic coverage of these options here
Assuming you know all of the risks and are still intent on sticking with an old Firefox, read the part in the first link about disabling automatic updates. I had my system locked into v52 ESR for the same reason as you, and thought I had disabled updates. However, when ESR updated to v60, it ignored my settings and updated anyway. After you download it and before you install it, disconnect from the Internet until you get it installed and have turned off automatic updates. Keep the downloaded package so you can reinstall, just in case.
You will likely need to get this in the form of a tarball from Mozilla. The directory of previous releases is here. You mention v52.5.3 ESR. It isn't clear if you need that specific version or that was just what Ubuntu previously had in their repository. Mozilla offers every minor release of v52, the final one being v52.9.0 ESR. That would be the most "up-to-date" version.
It is a trivial installation and doesn't use the package manager. The instructions from Mozilla are here. These are the basic steps:
- Download Firefox from the Firefox download page to your home directory.
- Open a Terminal and go to your home directory:
cd ~
- Extract the contents of the downloaded file:
tar xjf firefox-*.tar.bz2
- Close Firefox if it's open.
To start Firefox, run the firefox script in the firefox folder:
~/firefox/firefox
Firefox should now start. You can then create an icon on your desktop to run this command.
If your system menu doesn't launch the new installation, edit the menu. Go to the Firefox entry and point it to the new installation start script.
If the icon in the system tray or desktop still points to the previous installation, you can delete those icons and create new ones from the menu entry.
edited Jan 9 at 11:46
answered Jan 9 at 11:06
fixer1234fixer1234
18.8k144982
18.8k144982
add a comment |
add a comment |
This is extension of fixer1234's answer with some shell scripts.
There are two main URL to download Firefox package directly. These can be also viewed from a browser.
- http://ftp.mozilla.org/pub/firefox/releases/
- http://download-installer.cdn.mozilla.net/pub/firefox/releases/
First download the package with wget
or curl
then extract that tarball package with tar
command. Here is a sample shell script:
#!/bin/bash
Version='52.0esr'
Arch='linux-x86_64'
Lang='en-US'
File='firefox-52.0esr.tar.bz2'
cd ~
wget http://ftp.mozilla.org/pub/firefox/releases/$Version/$Arch/$Lang/$File
tar --extract --bzip2 --file=$File
cd firefox
./firefox
This installation procedure may overwrite previous installed Firefox profile. Also the Firefox binary may not be visible in any desktop manager menu. Firefox depends on some libraries, check/install those with apt-get install libgtk-3-0 libdbus-glib-1-2 libxt6
command before executing Firefox.
Ah, yes. Support for the CLI users! Just a couple of observations for readers. 1. The packaged versions are different for deb and rpm based distros, so Arch would use a different package than Ubuntu, and some people may be used to seeing that. In the script, Arch is just a variable name. For the tarballs, all Linux distros use the same tarball (although there are different ones for different computer architectures; thex86_64
is for 64 bit systems). Also note the need to specify the desired minor release number in the second line; (cont'd)
– fixer1234
Jan 10 at 11:21
52.0 was the first v52 release, the last was 52.9.0. So recognize that the script might need some minor tweaking, hence sample script. 2. The libraries mentioned in the last paragraph should already be there if Firefox was previously installed. 3. To avoid any risk of your profile being overwritten, you can temporarily rename the existing directory. The profiles are in/home/username/.mozilla/firefox/profile_folders
. Rename thatfirefox
directory to something likefirefox_old
. After installation, you can reuse the the current folder.
– fixer1234
Jan 10 at 11:21
add a comment |
This is extension of fixer1234's answer with some shell scripts.
There are two main URL to download Firefox package directly. These can be also viewed from a browser.
- http://ftp.mozilla.org/pub/firefox/releases/
- http://download-installer.cdn.mozilla.net/pub/firefox/releases/
First download the package with wget
or curl
then extract that tarball package with tar
command. Here is a sample shell script:
#!/bin/bash
Version='52.0esr'
Arch='linux-x86_64'
Lang='en-US'
File='firefox-52.0esr.tar.bz2'
cd ~
wget http://ftp.mozilla.org/pub/firefox/releases/$Version/$Arch/$Lang/$File
tar --extract --bzip2 --file=$File
cd firefox
./firefox
This installation procedure may overwrite previous installed Firefox profile. Also the Firefox binary may not be visible in any desktop manager menu. Firefox depends on some libraries, check/install those with apt-get install libgtk-3-0 libdbus-glib-1-2 libxt6
command before executing Firefox.
Ah, yes. Support for the CLI users! Just a couple of observations for readers. 1. The packaged versions are different for deb and rpm based distros, so Arch would use a different package than Ubuntu, and some people may be used to seeing that. In the script, Arch is just a variable name. For the tarballs, all Linux distros use the same tarball (although there are different ones for different computer architectures; thex86_64
is for 64 bit systems). Also note the need to specify the desired minor release number in the second line; (cont'd)
– fixer1234
Jan 10 at 11:21
52.0 was the first v52 release, the last was 52.9.0. So recognize that the script might need some minor tweaking, hence sample script. 2. The libraries mentioned in the last paragraph should already be there if Firefox was previously installed. 3. To avoid any risk of your profile being overwritten, you can temporarily rename the existing directory. The profiles are in/home/username/.mozilla/firefox/profile_folders
. Rename thatfirefox
directory to something likefirefox_old
. After installation, you can reuse the the current folder.
– fixer1234
Jan 10 at 11:21
add a comment |
This is extension of fixer1234's answer with some shell scripts.
There are two main URL to download Firefox package directly. These can be also viewed from a browser.
- http://ftp.mozilla.org/pub/firefox/releases/
- http://download-installer.cdn.mozilla.net/pub/firefox/releases/
First download the package with wget
or curl
then extract that tarball package with tar
command. Here is a sample shell script:
#!/bin/bash
Version='52.0esr'
Arch='linux-x86_64'
Lang='en-US'
File='firefox-52.0esr.tar.bz2'
cd ~
wget http://ftp.mozilla.org/pub/firefox/releases/$Version/$Arch/$Lang/$File
tar --extract --bzip2 --file=$File
cd firefox
./firefox
This installation procedure may overwrite previous installed Firefox profile. Also the Firefox binary may not be visible in any desktop manager menu. Firefox depends on some libraries, check/install those with apt-get install libgtk-3-0 libdbus-glib-1-2 libxt6
command before executing Firefox.
This is extension of fixer1234's answer with some shell scripts.
There are two main URL to download Firefox package directly. These can be also viewed from a browser.
- http://ftp.mozilla.org/pub/firefox/releases/
- http://download-installer.cdn.mozilla.net/pub/firefox/releases/
First download the package with wget
or curl
then extract that tarball package with tar
command. Here is a sample shell script:
#!/bin/bash
Version='52.0esr'
Arch='linux-x86_64'
Lang='en-US'
File='firefox-52.0esr.tar.bz2'
cd ~
wget http://ftp.mozilla.org/pub/firefox/releases/$Version/$Arch/$Lang/$File
tar --extract --bzip2 --file=$File
cd firefox
./firefox
This installation procedure may overwrite previous installed Firefox profile. Also the Firefox binary may not be visible in any desktop manager menu. Firefox depends on some libraries, check/install those with apt-get install libgtk-3-0 libdbus-glib-1-2 libxt6
command before executing Firefox.
answered Jan 10 at 9:15
BiswapriyoBiswapriyo
2,93631343
2,93631343
Ah, yes. Support for the CLI users! Just a couple of observations for readers. 1. The packaged versions are different for deb and rpm based distros, so Arch would use a different package than Ubuntu, and some people may be used to seeing that. In the script, Arch is just a variable name. For the tarballs, all Linux distros use the same tarball (although there are different ones for different computer architectures; thex86_64
is for 64 bit systems). Also note the need to specify the desired minor release number in the second line; (cont'd)
– fixer1234
Jan 10 at 11:21
52.0 was the first v52 release, the last was 52.9.0. So recognize that the script might need some minor tweaking, hence sample script. 2. The libraries mentioned in the last paragraph should already be there if Firefox was previously installed. 3. To avoid any risk of your profile being overwritten, you can temporarily rename the existing directory. The profiles are in/home/username/.mozilla/firefox/profile_folders
. Rename thatfirefox
directory to something likefirefox_old
. After installation, you can reuse the the current folder.
– fixer1234
Jan 10 at 11:21
add a comment |
Ah, yes. Support for the CLI users! Just a couple of observations for readers. 1. The packaged versions are different for deb and rpm based distros, so Arch would use a different package than Ubuntu, and some people may be used to seeing that. In the script, Arch is just a variable name. For the tarballs, all Linux distros use the same tarball (although there are different ones for different computer architectures; thex86_64
is for 64 bit systems). Also note the need to specify the desired minor release number in the second line; (cont'd)
– fixer1234
Jan 10 at 11:21
52.0 was the first v52 release, the last was 52.9.0. So recognize that the script might need some minor tweaking, hence sample script. 2. The libraries mentioned in the last paragraph should already be there if Firefox was previously installed. 3. To avoid any risk of your profile being overwritten, you can temporarily rename the existing directory. The profiles are in/home/username/.mozilla/firefox/profile_folders
. Rename thatfirefox
directory to something likefirefox_old
. After installation, you can reuse the the current folder.
– fixer1234
Jan 10 at 11:21
Ah, yes. Support for the CLI users! Just a couple of observations for readers. 1. The packaged versions are different for deb and rpm based distros, so Arch would use a different package than Ubuntu, and some people may be used to seeing that. In the script, Arch is just a variable name. For the tarballs, all Linux distros use the same tarball (although there are different ones for different computer architectures; the
x86_64
is for 64 bit systems). Also note the need to specify the desired minor release number in the second line; (cont'd)– fixer1234
Jan 10 at 11:21
Ah, yes. Support for the CLI users! Just a couple of observations for readers. 1. The packaged versions are different for deb and rpm based distros, so Arch would use a different package than Ubuntu, and some people may be used to seeing that. In the script, Arch is just a variable name. For the tarballs, all Linux distros use the same tarball (although there are different ones for different computer architectures; the
x86_64
is for 64 bit systems). Also note the need to specify the desired minor release number in the second line; (cont'd)– fixer1234
Jan 10 at 11:21
52.0 was the first v52 release, the last was 52.9.0. So recognize that the script might need some minor tweaking, hence sample script. 2. The libraries mentioned in the last paragraph should already be there if Firefox was previously installed. 3. To avoid any risk of your profile being overwritten, you can temporarily rename the existing directory. The profiles are in
/home/username/.mozilla/firefox/profile_folders
. Rename that firefox
directory to something like firefox_old
. After installation, you can reuse the the current folder.– fixer1234
Jan 10 at 11:21
52.0 was the first v52 release, the last was 52.9.0. So recognize that the script might need some minor tweaking, hence sample script. 2. The libraries mentioned in the last paragraph should already be there if Firefox was previously installed. 3. To avoid any risk of your profile being overwritten, you can temporarily rename the existing directory. The profiles are in
/home/username/.mozilla/firefox/profile_folders
. Rename that firefox
directory to something like firefox_old
. After installation, you can reuse the the current folder.– fixer1234
Jan 10 at 11:21
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1392211%2finstall-old-version-of-package-firefox-esr-on-ubuntu%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown