Intrepid Ibex

Upgrading Intrepid to Jaunty

Using update manager:

sudo apt-get install update-manager
sudo update-manager -d

Or simply this:

sudo apt-get dist-upgrade

Upgrading Ubuntu Servers (Hardy to Intrepid)

If you are using Hardy Server or any other older versions of Ubuntu Server, and you want to upgrade to Intrepid Server or any other future latest Ubuntu Server releases, here are the simple steps...

But before that, please take note that upgrade will not take place by default because 8.10 is not a Long Term Support (LTS) release.

Very important, be sure that you have all updates applied to Ubuntu 8.04 LTS before you upgrade to 8.10.

Here are now the steps:

  1. Install update-manager-core:
    sudo apt-get install update-manager-core

Ubuntu 8.10 (Intrepid Ibex) Apache-PHP-MySQL Server

Simple installation of Apache, PHP and MySQL in Ubuntu 8.10 (Intrepid Ibex).

  1. Optionally, install SSH Client and Server (for remote access to this server)
    sudo apt-get install ssh
  2. Install Database Server
    sudo apt-get install mysql-server
  3. Install Apache2 web server
    sudo apt-get install apache2
  4. Install PHP5
    sudo apt-get install php5 libapache2-mod-php5
  5. Install PHP5-MySQL support
    sudo apt-get install php5-mysql
  6. Restart Apache
    sudo /etc/init.d/apache2 restart
Syndicate content