Discussion:
Bug#1077892: marked as done (no hint how to flash ISO on windows)
(too old to reply)
Debian Bug Tracking System
2024-10-02 13:10:01 UTC
Permalink
Your message dated Wed, 2 Oct 2024 15:08:01 +0200
with message-id <***@cs.uni-koeln.de>
and subject line Re: Bug#1077892: Acknowledgement (no hint how to flash ISO on windows)
has caused the Debian Bug report #1077892,
regarding no hint how to flash ISO on windows
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ***@bugs.debian.org
immediately.)
--
1077892: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1077892
Debian Bug Tracking System
Contact ***@bugs.debian.org with problems
Steven Cariglia
2024-10-02 21:50:01 UTC
Permalink
you might also try mkusb-minp
<https://help.ubuntu.com/community/mkusb/minp> as it works with debian
live distros. I've been using it with Trixie weekly builds

e.g.

sudo -s ./mkusb-minp -p {debian-live-iso} /dev/{usb}

So, this will install a persistent system on the usb. You can boot it,
update it, configure, maintain, etc. Except for the kernel.

When a new kernel is issued you can mount partition 3 of the usb, the
persistent partition (the other partitions are essentially immutable)
and do an rsync backup (e.g.):

rsync -axHAWXS --numeric-ids --info=progress2 {mounted partition 3}/
{backup-area}

Note the appended slash is necessary for rsync. Now unmount and install
the new kernel:

umount {mounted partition 3}./mkusb-minp -p {debian-new-live-iso}
/dev/{usb}mount {usb partition 3}rsync -axHAWXS --numeric-ids
--info=progress2 {backup-area}/ {mounted partition 3}


 the state is maintained and the kernel is updated

Loading...