2

I need to update Apache to version 2.2.25 on ubuntu 13.04 I have tried installing the update from apt-get but the package is showing as 2.2.22

Can anyone help?

fossfreedom
  • 172,746
  • also important to read http://askubuntu.com/questions/151283/why-dont-the-ubuntu-repositories-have-the-latest-versions-of-software – Braiam Oct 15 '13 at 14:23

1 Answers1

2

You can't install yet Apache 2.2.25 using apt-get because Apache 2.2.25 is not yet included in Ubuntu repositories. To see what versions are available in repositories, you can use the following command:

apt-cache showpkg apache2

But you can install by downloading it from here:

It's a .tar.gz file (httpd-2.2.25.tar.gz), so you can be interested also by:

Radu Rădeanu
  • 169,590
  • Thank you Radu, yes I checked and that is the only way but this brings me to another question. Can I upgrade directly or do I need to uninstall the previous installation? Also, will I get updates if apt repository gets update later? – deadmantfa Oct 10 '13 at 08:38
  • 1
    @deadmantfa If you install httpd-2.2.25.tar.gz you will have two apache servers, so if you want, you can remove the previous installation. And no, you will not get updates until the new version is not included in Ubuntu repositories. – Radu Rădeanu Oct 10 '13 at 09:14