...
Here is a small tutorial how to patch the iso image to be installable. You need a linux environment and need to have the xorriso and initramfs-tools packages installed.
...
Mount the original iso.
Code Block mkdir CD sudo mount -o ro -t iso9660 debian-11.0.0-amd64-netinst.iso CD
Copy the initrd.gz file that needs to modification to your local folder.
Code Block cp -p CD/install.amd/initrd.gz .
Unmount the iso again.
Code Block sudo umount CD
Extract the initramfs directory.
Code Block sudo unmkinitramfs initrd.gz initramfs
Edit the start-udev script.
Code Block sudo vi initramfs/lib/debian-installer/start-udev
Comment out following line:
...