Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save a0n/46918a44c939b4bf4640456614175cd2 to your computer and use it in GitHub Desktop.
Save a0n/46918a44c939b4bf4640456614175cd2 to your computer and use it in GitHub Desktop.
Upgrade Raspbian To Buster
#!/bin/bash
sudo bash -c "sync \
&& apt-get update \
&& apt-get -y upgrade \
&& apt-get -y dist-upgrade \
&& sed -i 's/stretch/buster/g' /etc/apt/sources.list \
&& sed -i 's/stretch/buster/g' /etc/apt/sources.list.d/raspi.list \
&& apt-get update \
&& apt-get -y upgrade \
&& apt-get -y dist-upgrade \
&& sync" #sudo reboot
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment