I have a software development box with Ubuntu Jaunty Jackalope installed. I know this version is from 2009, but it is a development box with strict requirements, so I cannot update the OS to a newer version of Ubuntu.

I cannot install new software for this version because Jaunty is no longer supported. That is, none of the Ubuntu software servers carry Jaunty anymore. For example, http://us.archive.ubuntu.com/ubuntu/dists/jaunty/ does not exist anymore. So apt-get doesn't work.

What can I do? Is there a Jaunty archive server, and how can I point apt-get to that server?

I am a Solaris/Windows user, by the way.

link|improve this question

25% accept rate
Out of curiosity, why can't you upgrade? – Simon Sheehan Jun 24 '11 at 1:24
Ubuntu 9.04 is the official dev environment in our group. – stackoverflowuser2010 Jun 24 '11 at 18:06
feedback

1 Answer

up vote 3 down vote accepted

You can use the old-releases url:

http://old-releases.ubuntu.com/ubuntu/

Old-releases includes everything that isn't officially supported anymore. Just replace us.archive and security with old-releases in /etc/apt/sources.list and you should be good to go!

Note that you can also have sources from different versions of Ubuntu in you sources.list file (in fact, in the bad old days updating to the newest release meant manually replacing warty with hoary and running dist-upgrade).

So if you really need to, you can grab newer versions of packages from more recent releases without updating the whole OS.

EDIT: More detailed example. Assuming the file found here is your sources.list file, you could do something like:

$ sudo vi /etc/apt/sources.list

Inside VI

:%s/archive/old-releases/g
:%s/cl\.//g
:wq

Use us instead of cl if that's what's in your file.

Then run

$ sudo apt-get update
$ sudo apt-get upgrade

The first will update your sources based on your edited sources.list file. The second will upgrade all packages on your system to the newest version that Jaunty used before support ended (you'll be asked for confirmation first).

link|improve this answer
Can you provide a link to the process of adding other servers to the source.list file? Do I need to reboot after adding that line? – stackoverflowuser2010 Jun 24 '11 at 1:46
Sure, here's a link to an original file. Yours probably looks something like the one here: ubuntuforums.org/archive/index.php/t-997890.html. I'll update the post with a more detailed example. – Jacinda Jun 24 '11 at 2:01
No need to reboot - just run sudo apt-get update after changing the file. – Jacinda Jun 24 '11 at 2:10
Thanks. Great help. – stackoverflowuser2010 Jun 24 '11 at 18:03
Happy to help! Please accept the answer if you feel it is complete. – Jacinda Jun 25 '11 at 4:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.