-2

I have Debian 9 on Qubes OS, but I want to upgrade it to 10. I want to upgrade from 9 because 10 became a stabilizer, but I do not know how. https://www.qubes-os.org/doc/template/debian/upgrade-8-to-9/ I used this as a reference but I do not know. How do you do it?

AnFi
  • 10,493
  • 3
  • 23
  • 47
qop916
  • 1
  • 2
  • This is _not a programming question_. This is not on-topic here. You should ask elsewhere. It might be on-topic at [su] or [unix.se]. – DavidW Jul 21 '19 at 08:52
  • I'm voting to close this question as off-topic because this question is not about programming as outlined in the [help center](https://stackoverflow.com/help/on-topic) – TT. Oct 31 '19 at 16:54

2 Answers2

0

you could install a fresh debian 10 by using by running sudo qubes-dom0-update qubes-template-debian-10

from dom0

maxschons
  • 55
  • 8
-1

The guide that you refer to is for Debian 8 (jessie) to Debian 9 (stretch).
You want to upgrade from 9 (stretch) to 10 (buster).

So the summary in the guide should change to:

    [user@dom0 ~]$ qvm-clone debian-9 debian-10
    [user@dom0 ~]$ qvm-run -a debian-10 gnome-terminal
    [user@debian-10 ~]$ sudo sed -i 's/stretch/buster/g' /etc/apt/sources.list
    [user@debian-10 ~]$ sudo sed -i 's/stretch/buster/g' /etc/apt/sources.list.d/qubes-r3.list
    [user@debian-10 ~]$ sudo apt-get update && sudo apt-get dist-upgrade -y
    [user@debian-10 ~]$ sudo apt-get autoremove

(Shut down TemplateVM by any normal means.)

    [user@dom0 ~]$ qvm-trim-template debian-10

(Done.)
Istador
  • 163
  • 7