debian How to Upgrade Debian 8 Jessie to Debian 9 Stretch


How to Upgrade Debian 8 Jessie to Debian 9 Stretch

Leave a comment (16) Go to comments
 

Debian 9 Stretch was released as the latest stable version of the Linux Debian operating system today. While you can install Debian 9 Stretch fresh, you can also perform an in place upgrade from Debian 8 Jessie quite easily, which is what we will cover here.

 

For full documentation on the process, it is suggested that you also read through the official release notes.

Notes:

Performing the upgrade to Debian 9 Stretch

In this example we’ll be upgrading from Debian 8.8.

root@debian8:~# cat /etc/debian_version
8.8

Before proceeding with the upgrade, please read through the list of issues to be aware of when upgrading to Stretch.

  1. It is recommended that you have your Debian 8 Jessie installation completely up to date before starting, to do this run “apt-get update” followed by “apt-get upgrade” and install available updates.
    root@debian8:~# apt-get update
    root@debian8:~# apt-get upgrade
    Reading package lists... Done
    Building dependency tree
    Reading state information... Done
    0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
    

    In my case all updates have been applied already, so it’s fine to proceed.

  2. Edit the /etc/apt/sources.list file, my file is shown below. As you can see all of the lines are currently specifying “jessie”. Note that your mirror sources will likely be different which is fine.
    deb http://debian.uberglobalmirror.com/debian/ jessie main
    deb-src http://debian.uberglobalmirror.com/debian/ jessie main
    
    deb http://security.debian.org/ jessie/updates main contrib
    deb-src http://security.debian.org/ jessie/updates main contrib
    
    # jessie-updates, previously known as 'volatile'
    deb http://debian.uberglobalmirror.com/debian/ jessie-updates main contrib
    deb-src http://debian.uberglobalmirror.com/debian/ jessie-updates main contrib
    

    Change the instances of “jessie” to “stretch”, you can either do this manually, or automatically with the below sed command.

    sed -i 's/jessie/stretch/g' /etc/apt/sources.list
    

    my new sources.list file is shown below.

    deb http://debian.uberglobalmirror.com/debian/ stretch main
    deb-src http://debian.uberglobalmirror.com/debian/ stretch main
    
    deb http://security.debian.org/ stretch/updates main contrib
    deb-src http://security.debian.org/ stretch/updates main contrib
    
    # stretch-updates, previously known as 'volatile'
    deb http://debian.uberglobalmirror.com/debian/ stretch-updates main contrib
    deb-src http://debian.uberglobalmirror.com/debian/ stretch-updates main contrib
    

    You can either use “stretch” or “stable”, as Debian 9 Stretch is now the current stable version as of writing. However note that if you use stable instead of the specific release name, in future when Debian 10 is released that will be the stable version so you may upgrade to that unintentionally.

  3. The recommended way to upgrade Debian is with the ‘apt-get’ command. First update the list of available packages with the below command, as we’ve just updated the sources.list file.
    apt-get update
    
  4. Now that the list of available packages has been updated from the mirror, run the below command to perform a minimal upgrade.
    apt-get upgrade
    

    This is known as a minimal system upgrade as it only upgrades packages that can be upgraded without needing any other packages to be removed or installed, so it’s a safe place to start. This upgraded 932 packages requiring 412MB on my system.

  5. Now you’re ready to do the complete system upgrade, this will upgrade to the latest available version for all packages installed.
    apt-get dist-upgrade
    

    Ensure that you have enough free disk space to complete the operation, in my case it notes that afterwards 1,048MB of additional disk space will be used with 639 package upgrades and 479 newly installed packages.

    Note that this will remove conflicting obsoleted packages, potentially packages that you may want to keep, so check what it’s going to do by reading the output before proceeding.

  6. Once the upgrade has completed you may have packages that can be removed and are no longer required, you’ll see these when trying to use apt-get upgrade. We can clean these out by running “apt-get autoremove”.
    apt-get autoremove
    

    This cleaned 496MB of packages from my system that were identified as no longer being required after the upgrade.

  7. All that’s left to do is perform a reboot of the system, this is required as the kernel version has been updated. This can be done by simply entering “reboot” in the terminal.
    Before upgrade:
    root@debian8:~# uname -a
    Linux debian8 3.16.0-4-amd64 #1 SMP Debian 3.16.43-2 (2017-04-30) x86_64 GNU/Linux
    
    After upgrade and system reboot:
    root@debian8:~# uname -a
    Linux debian8 4.9.0.3-amd64 #1 SMP Debian 4.9.30-2 (2017-06-12) x86_64 GNU/Linux
    

    As you can see the newer kernel version 4.9 is now in place after rebooting.

    You can also check the /etc/debian_version file to confirm that you’re on version 9.

    root@debian8:~# cat /etc/debian_version
    9.0
    

    Now I just need to change my “debian8” hostname!

Debian 9 Stretch

Summary

As shown it’s quite a simple process to complete an in place upgrade from Debian 8 Jessie to Debian 9 Stretch. The process involves fully updating your Debian 8 installation, modifying the /etc/apt/sources.list file by changing instances of “jessie” to “stretch”, running an ‘apt-get update’, ‘apt-get upgrade’, followed by a ‘apt-get dist-upgrade’ and then finally a reboot so that the newer kernel version will be used.



Article Number: 371
Posted: Sun, Sep 23, 2018 10:37 AM
Last Updated: Sun, Sep 23, 2018 10:37 AM

Online URL: http://kb.ictbanking.net/article.php?id=371