Pre upgrade recommendations:
– run a full backup of your running system
– run a backup of all your databases and binary logs (if your database sizes are not explosive big…)
– remove unnecessary third party packages or repositories
During the upgrade-process, MySQL will be replaced by MariaDB
Upgrade current system:
1 | apt-get update && apt-get upgrade |
Edit sources, replace wheezy through jessie:
sed -i 's/jessie/stretch/g' /etc/apt/sources.list |
Peform the upgrade to debian jessie:
1 2 3 | apt-get update apt-get upgrade apt-get dist-upgrade |
Perform a system reboot:
init 6 |
Print distribution-specific information:
lsb_release -a |
Leave a Reply