Last active
July 2, 2018 21:27
-
-
Save gojimmypi/34e3ea461d929df1e2137eeb8df13e02 to your computer and use it in GitHub Desktop.
Raspberry Pi Upgrade from wheezy to jessie to stretch
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# In-place upghrade from wheezy to jessie | |
# https://raspberrypi.stackexchange.com/questions/27858/upgrade-to-raspbian-jessie | |
# https://raspberrypi.stackexchange.com/questions/80029/how-to-complete-upgrade-from-wheezy-to-stretch | |
# Backup any files which are important to you. | |
# Ensure there is plenty of disk space free df -h | |
# With your new or existing install: | |
sudo apt-get update | |
sudo apt-get upgrade | |
sudo apt-get dist-upgrade | |
# to make sure wheezy is fully up to date. | |
# Edit /etc/apt/sources.list and change wheezy to jessie. | |
sudo nano /etc/apt/sources.list | |
# Then update and upgrade again. Repeat for each major release (not recommended to skip any) | |
sudo apt-get update | |
sudo apt-get upgrade | |
sudo apt-get dist-upgrade | |
# repeat for In-place upghrade from wheezy to stretch |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This takes a LONG time to run, even with high bandwidth internet. To make matters worse, there will likely be occasional prompts to overwrite config files. Probably should say yes unless you explicitly know otherwise; even then - probably best to save changes and apply to new config file. ymmv
This part in particular may take a VERY long time to run: