The packages for old releases are not available anymore?
I am trying to find specific packages that were available in old releases of Ubuntu, but have been removed from current ones.
I can download images of all CDs the old releases had (http://old-releases.ubuntu.com/), but if I cannot download the packages that were available for them, while they existed (https://packages.ubuntu.com/ or something similar, another subdomain, ...), then it is almost pointless to want those images.
The funny detail is that https://packages.ubuntu.com/ mentions http://old-releases.ubuntu.com/ as the place for old release things. And since it is a page to search for packages, something basic seems to be missing here.
So, how do I find the packages for the previous releases, the one that are not in packages.ubuntu.com anymore?
I found a so-so related question, but it is not the same:
apt-get update for ubuntu 10.04
package-management release-management
New contributor
add a comment |
I am trying to find specific packages that were available in old releases of Ubuntu, but have been removed from current ones.
I can download images of all CDs the old releases had (http://old-releases.ubuntu.com/), but if I cannot download the packages that were available for them, while they existed (https://packages.ubuntu.com/ or something similar, another subdomain, ...), then it is almost pointless to want those images.
The funny detail is that https://packages.ubuntu.com/ mentions http://old-releases.ubuntu.com/ as the place for old release things. And since it is a page to search for packages, something basic seems to be missing here.
So, how do I find the packages for the previous releases, the one that are not in packages.ubuntu.com anymore?
I found a so-so related question, but it is not the same:
apt-get update for ubuntu 10.04
package-management release-management
New contributor
Is there a particular package you are looking for, or a particular Ubuntu release?
– Charles Green
13 hours ago
3
It appears that all of the older packages are in http://old-releases.ubuntu.com/ubuntu/pool/, although there is not a search mechanism.
– Charles Green
13 hours ago
add a comment |
I am trying to find specific packages that were available in old releases of Ubuntu, but have been removed from current ones.
I can download images of all CDs the old releases had (http://old-releases.ubuntu.com/), but if I cannot download the packages that were available for them, while they existed (https://packages.ubuntu.com/ or something similar, another subdomain, ...), then it is almost pointless to want those images.
The funny detail is that https://packages.ubuntu.com/ mentions http://old-releases.ubuntu.com/ as the place for old release things. And since it is a page to search for packages, something basic seems to be missing here.
So, how do I find the packages for the previous releases, the one that are not in packages.ubuntu.com anymore?
I found a so-so related question, but it is not the same:
apt-get update for ubuntu 10.04
package-management release-management
New contributor
I am trying to find specific packages that were available in old releases of Ubuntu, but have been removed from current ones.
I can download images of all CDs the old releases had (http://old-releases.ubuntu.com/), but if I cannot download the packages that were available for them, while they existed (https://packages.ubuntu.com/ or something similar, another subdomain, ...), then it is almost pointless to want those images.
The funny detail is that https://packages.ubuntu.com/ mentions http://old-releases.ubuntu.com/ as the place for old release things. And since it is a page to search for packages, something basic seems to be missing here.
So, how do I find the packages for the previous releases, the one that are not in packages.ubuntu.com anymore?
I found a so-so related question, but it is not the same:
apt-get update for ubuntu 10.04
package-management release-management
package-management release-management
New contributor
New contributor
New contributor
asked 13 hours ago
DedecoDedeco
61
61
New contributor
New contributor
Is there a particular package you are looking for, or a particular Ubuntu release?
– Charles Green
13 hours ago
3
It appears that all of the older packages are in http://old-releases.ubuntu.com/ubuntu/pool/, although there is not a search mechanism.
– Charles Green
13 hours ago
add a comment |
Is there a particular package you are looking for, or a particular Ubuntu release?
– Charles Green
13 hours ago
3
It appears that all of the older packages are in http://old-releases.ubuntu.com/ubuntu/pool/, although there is not a search mechanism.
– Charles Green
13 hours ago
Is there a particular package you are looking for, or a particular Ubuntu release?
– Charles Green
13 hours ago
Is there a particular package you are looking for, or a particular Ubuntu release?
– Charles Green
13 hours ago
3
3
It appears that all of the older packages are in http://old-releases.ubuntu.com/ubuntu/pool/, although there is not a search mechanism.
– Charles Green
13 hours ago
It appears that all of the older packages are in http://old-releases.ubuntu.com/ubuntu/pool/, although there is not a search mechanism.
– Charles Green
13 hours ago
add a comment |
1 Answer
1
active
oldest
votes
It seems that we can use some strange, but working solution.
For such search we can create local chroot environment with older release (Ubuntu 12.04 LTS) and find packages from it. We will use debootstrap
as main component:
sudo apt-get install debootstrap
mkdir ~/precise_chroot
sudo debootstrap precise ~/precise_chroot
Then add all repositories from previous LTS releases and select main release. Below are two long commands, copy them completely then paste to the terminal:
cat <<EOF | sudo tee ~/precise_chroot/etc/apt/sources.list
# Ubuntu 12.04 LTS - Precise Pangolin
deb http://archive.ubuntu.com/ubuntu precise main universe multiverse restricted
# Ubuntu 10.04 LTS - Lucid Lynx
deb http://old-releases.ubuntu.com/ubuntu lucid main universe multiverse restricted
# Ubuntu 8.04 LTS - Hardy Heron
deb http://old-releases.ubuntu.com/ubuntu hardy main universe multiverse restricted
# Ubuntu 6.06 LTS - Dapper Drake
deb http://old-releases.ubuntu.com/ubuntu dapper main universe multiverse restricted
EOF
cat <<EOF | sudo tee ~/precise_chroot/etc/apt/apt.conf.d/01ubuntu
APT::Default-Release "precise";
EOF
Then call apt-get update
inside chroot:
sudo chroot ~/precise_chroot/ apt-get update
and try to compare version of some package (Midnight Commander - mc
as example) with apt-cache policy mc
:
$ sudo chroot ~/precise_chroot/ apt-cache policy mc
mc:
Installed: (none)
Candidate: 3:4.8.1-2ubuntu1
Version table:
3:4.8.1-2ubuntu1 0
990 http://archive.ubuntu.com/ubuntu/ precise/universe amd64 Packages
3:4.7.0-1ubuntu2 0
500 http://old-releases.ubuntu.com/ubuntu/ lucid/universe amd64 Packages
1:4.6.1-8ubuntu1 0
500 http://old-releases.ubuntu.com/ubuntu/ hardy/universe amd64 Packages
1:4.6.1-1ubuntu2 0
500 http://old-releases.ubuntu.com/ubuntu/ dapper/universe amd64 Packages
Moreover you can download single package with this method by specifying release with -t target_release
option:
$ sudo chroot ~/precise_chroot/ apt-get download mc -t hardy
Get:1 Downloading mc 1:4.6.1-8ubuntu1 [2156 kB]
Fetched 2156 kB in 1s (1174 kB/s)
$ ls precise_chroot/*.deb
precise_chroot/mc_4.6.1-8ubuntu1_amd64.deb
So you got the idea.
Small technical note: the ~/precise_chroot
folder will use about 600 Mb of disk space.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
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
});
}
});
Dedeco is a new contributor. Be nice, and check out our Code of Conduct.
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%2faskubuntu.com%2fquestions%2f1123021%2fthe-packages-for-old-releases-are-not-available-anymore%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
It seems that we can use some strange, but working solution.
For such search we can create local chroot environment with older release (Ubuntu 12.04 LTS) and find packages from it. We will use debootstrap
as main component:
sudo apt-get install debootstrap
mkdir ~/precise_chroot
sudo debootstrap precise ~/precise_chroot
Then add all repositories from previous LTS releases and select main release. Below are two long commands, copy them completely then paste to the terminal:
cat <<EOF | sudo tee ~/precise_chroot/etc/apt/sources.list
# Ubuntu 12.04 LTS - Precise Pangolin
deb http://archive.ubuntu.com/ubuntu precise main universe multiverse restricted
# Ubuntu 10.04 LTS - Lucid Lynx
deb http://old-releases.ubuntu.com/ubuntu lucid main universe multiverse restricted
# Ubuntu 8.04 LTS - Hardy Heron
deb http://old-releases.ubuntu.com/ubuntu hardy main universe multiverse restricted
# Ubuntu 6.06 LTS - Dapper Drake
deb http://old-releases.ubuntu.com/ubuntu dapper main universe multiverse restricted
EOF
cat <<EOF | sudo tee ~/precise_chroot/etc/apt/apt.conf.d/01ubuntu
APT::Default-Release "precise";
EOF
Then call apt-get update
inside chroot:
sudo chroot ~/precise_chroot/ apt-get update
and try to compare version of some package (Midnight Commander - mc
as example) with apt-cache policy mc
:
$ sudo chroot ~/precise_chroot/ apt-cache policy mc
mc:
Installed: (none)
Candidate: 3:4.8.1-2ubuntu1
Version table:
3:4.8.1-2ubuntu1 0
990 http://archive.ubuntu.com/ubuntu/ precise/universe amd64 Packages
3:4.7.0-1ubuntu2 0
500 http://old-releases.ubuntu.com/ubuntu/ lucid/universe amd64 Packages
1:4.6.1-8ubuntu1 0
500 http://old-releases.ubuntu.com/ubuntu/ hardy/universe amd64 Packages
1:4.6.1-1ubuntu2 0
500 http://old-releases.ubuntu.com/ubuntu/ dapper/universe amd64 Packages
Moreover you can download single package with this method by specifying release with -t target_release
option:
$ sudo chroot ~/precise_chroot/ apt-get download mc -t hardy
Get:1 Downloading mc 1:4.6.1-8ubuntu1 [2156 kB]
Fetched 2156 kB in 1s (1174 kB/s)
$ ls precise_chroot/*.deb
precise_chroot/mc_4.6.1-8ubuntu1_amd64.deb
So you got the idea.
Small technical note: the ~/precise_chroot
folder will use about 600 Mb of disk space.
add a comment |
It seems that we can use some strange, but working solution.
For such search we can create local chroot environment with older release (Ubuntu 12.04 LTS) and find packages from it. We will use debootstrap
as main component:
sudo apt-get install debootstrap
mkdir ~/precise_chroot
sudo debootstrap precise ~/precise_chroot
Then add all repositories from previous LTS releases and select main release. Below are two long commands, copy them completely then paste to the terminal:
cat <<EOF | sudo tee ~/precise_chroot/etc/apt/sources.list
# Ubuntu 12.04 LTS - Precise Pangolin
deb http://archive.ubuntu.com/ubuntu precise main universe multiverse restricted
# Ubuntu 10.04 LTS - Lucid Lynx
deb http://old-releases.ubuntu.com/ubuntu lucid main universe multiverse restricted
# Ubuntu 8.04 LTS - Hardy Heron
deb http://old-releases.ubuntu.com/ubuntu hardy main universe multiverse restricted
# Ubuntu 6.06 LTS - Dapper Drake
deb http://old-releases.ubuntu.com/ubuntu dapper main universe multiverse restricted
EOF
cat <<EOF | sudo tee ~/precise_chroot/etc/apt/apt.conf.d/01ubuntu
APT::Default-Release "precise";
EOF
Then call apt-get update
inside chroot:
sudo chroot ~/precise_chroot/ apt-get update
and try to compare version of some package (Midnight Commander - mc
as example) with apt-cache policy mc
:
$ sudo chroot ~/precise_chroot/ apt-cache policy mc
mc:
Installed: (none)
Candidate: 3:4.8.1-2ubuntu1
Version table:
3:4.8.1-2ubuntu1 0
990 http://archive.ubuntu.com/ubuntu/ precise/universe amd64 Packages
3:4.7.0-1ubuntu2 0
500 http://old-releases.ubuntu.com/ubuntu/ lucid/universe amd64 Packages
1:4.6.1-8ubuntu1 0
500 http://old-releases.ubuntu.com/ubuntu/ hardy/universe amd64 Packages
1:4.6.1-1ubuntu2 0
500 http://old-releases.ubuntu.com/ubuntu/ dapper/universe amd64 Packages
Moreover you can download single package with this method by specifying release with -t target_release
option:
$ sudo chroot ~/precise_chroot/ apt-get download mc -t hardy
Get:1 Downloading mc 1:4.6.1-8ubuntu1 [2156 kB]
Fetched 2156 kB in 1s (1174 kB/s)
$ ls precise_chroot/*.deb
precise_chroot/mc_4.6.1-8ubuntu1_amd64.deb
So you got the idea.
Small technical note: the ~/precise_chroot
folder will use about 600 Mb of disk space.
add a comment |
It seems that we can use some strange, but working solution.
For such search we can create local chroot environment with older release (Ubuntu 12.04 LTS) and find packages from it. We will use debootstrap
as main component:
sudo apt-get install debootstrap
mkdir ~/precise_chroot
sudo debootstrap precise ~/precise_chroot
Then add all repositories from previous LTS releases and select main release. Below are two long commands, copy them completely then paste to the terminal:
cat <<EOF | sudo tee ~/precise_chroot/etc/apt/sources.list
# Ubuntu 12.04 LTS - Precise Pangolin
deb http://archive.ubuntu.com/ubuntu precise main universe multiverse restricted
# Ubuntu 10.04 LTS - Lucid Lynx
deb http://old-releases.ubuntu.com/ubuntu lucid main universe multiverse restricted
# Ubuntu 8.04 LTS - Hardy Heron
deb http://old-releases.ubuntu.com/ubuntu hardy main universe multiverse restricted
# Ubuntu 6.06 LTS - Dapper Drake
deb http://old-releases.ubuntu.com/ubuntu dapper main universe multiverse restricted
EOF
cat <<EOF | sudo tee ~/precise_chroot/etc/apt/apt.conf.d/01ubuntu
APT::Default-Release "precise";
EOF
Then call apt-get update
inside chroot:
sudo chroot ~/precise_chroot/ apt-get update
and try to compare version of some package (Midnight Commander - mc
as example) with apt-cache policy mc
:
$ sudo chroot ~/precise_chroot/ apt-cache policy mc
mc:
Installed: (none)
Candidate: 3:4.8.1-2ubuntu1
Version table:
3:4.8.1-2ubuntu1 0
990 http://archive.ubuntu.com/ubuntu/ precise/universe amd64 Packages
3:4.7.0-1ubuntu2 0
500 http://old-releases.ubuntu.com/ubuntu/ lucid/universe amd64 Packages
1:4.6.1-8ubuntu1 0
500 http://old-releases.ubuntu.com/ubuntu/ hardy/universe amd64 Packages
1:4.6.1-1ubuntu2 0
500 http://old-releases.ubuntu.com/ubuntu/ dapper/universe amd64 Packages
Moreover you can download single package with this method by specifying release with -t target_release
option:
$ sudo chroot ~/precise_chroot/ apt-get download mc -t hardy
Get:1 Downloading mc 1:4.6.1-8ubuntu1 [2156 kB]
Fetched 2156 kB in 1s (1174 kB/s)
$ ls precise_chroot/*.deb
precise_chroot/mc_4.6.1-8ubuntu1_amd64.deb
So you got the idea.
Small technical note: the ~/precise_chroot
folder will use about 600 Mb of disk space.
It seems that we can use some strange, but working solution.
For such search we can create local chroot environment with older release (Ubuntu 12.04 LTS) and find packages from it. We will use debootstrap
as main component:
sudo apt-get install debootstrap
mkdir ~/precise_chroot
sudo debootstrap precise ~/precise_chroot
Then add all repositories from previous LTS releases and select main release. Below are two long commands, copy them completely then paste to the terminal:
cat <<EOF | sudo tee ~/precise_chroot/etc/apt/sources.list
# Ubuntu 12.04 LTS - Precise Pangolin
deb http://archive.ubuntu.com/ubuntu precise main universe multiverse restricted
# Ubuntu 10.04 LTS - Lucid Lynx
deb http://old-releases.ubuntu.com/ubuntu lucid main universe multiverse restricted
# Ubuntu 8.04 LTS - Hardy Heron
deb http://old-releases.ubuntu.com/ubuntu hardy main universe multiverse restricted
# Ubuntu 6.06 LTS - Dapper Drake
deb http://old-releases.ubuntu.com/ubuntu dapper main universe multiverse restricted
EOF
cat <<EOF | sudo tee ~/precise_chroot/etc/apt/apt.conf.d/01ubuntu
APT::Default-Release "precise";
EOF
Then call apt-get update
inside chroot:
sudo chroot ~/precise_chroot/ apt-get update
and try to compare version of some package (Midnight Commander - mc
as example) with apt-cache policy mc
:
$ sudo chroot ~/precise_chroot/ apt-cache policy mc
mc:
Installed: (none)
Candidate: 3:4.8.1-2ubuntu1
Version table:
3:4.8.1-2ubuntu1 0
990 http://archive.ubuntu.com/ubuntu/ precise/universe amd64 Packages
3:4.7.0-1ubuntu2 0
500 http://old-releases.ubuntu.com/ubuntu/ lucid/universe amd64 Packages
1:4.6.1-8ubuntu1 0
500 http://old-releases.ubuntu.com/ubuntu/ hardy/universe amd64 Packages
1:4.6.1-1ubuntu2 0
500 http://old-releases.ubuntu.com/ubuntu/ dapper/universe amd64 Packages
Moreover you can download single package with this method by specifying release with -t target_release
option:
$ sudo chroot ~/precise_chroot/ apt-get download mc -t hardy
Get:1 Downloading mc 1:4.6.1-8ubuntu1 [2156 kB]
Fetched 2156 kB in 1s (1174 kB/s)
$ ls precise_chroot/*.deb
precise_chroot/mc_4.6.1-8ubuntu1_amd64.deb
So you got the idea.
Small technical note: the ~/precise_chroot
folder will use about 600 Mb of disk space.
edited 10 hours ago
answered 10 hours ago
N0rbertN0rbert
23.8k650112
23.8k650112
add a comment |
add a comment |
Dedeco is a new contributor. Be nice, and check out our Code of Conduct.
Dedeco is a new contributor. Be nice, and check out our Code of Conduct.
Dedeco is a new contributor. Be nice, and check out our Code of Conduct.
Dedeco is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Ask Ubuntu!
- 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%2faskubuntu.com%2fquestions%2f1123021%2fthe-packages-for-old-releases-are-not-available-anymore%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
Is there a particular package you are looking for, or a particular Ubuntu release?
– Charles Green
13 hours ago
3
It appears that all of the older packages are in http://old-releases.ubuntu.com/ubuntu/pool/, although there is not a search mechanism.
– Charles Green
13 hours ago