Difference between revisions of "Upgrade Debian Linux to Unstable"

From Aram's Wiki
Jump to: navigation, search
Line 10: Line 10:
 
  EOF
 
  EOF
 
  apt-get update
 
  apt-get update
  apt-get -y dist-upgrade
+
  apt-get dist-upgrade -y
 +
apt autoremove -y
  
 
Then answer the questions.
 
Then answer the questions.

Revision as of 17:37, 1 September 2018

See https://wiki.debian.org/DebianUnstable.

Basically (as root):

su -
cat <<EOF >/etc/apt/sources.list
deb http://deb.debian.org/debian unstable main
deb http://deb.debian.org/debian-debug unstable-debug main
deb http://deb.debian.org/debian-ports unstable main
EOF
apt-get update
apt-get dist-upgrade -y
apt autoremove -y

Then answer the questions.