Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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.

...

  1. Mount the original iso.

    Code Block
    mkdir CD
    sudo mount -o ro -t iso9660 debian-11.0.0-amd64-netinst.iso CD

  1. Copy the initrd.gz file that needs to modification to your local folder.

    Code Block
    cp -p CD/install.amd/initrd.gz .

  1. Unmount the iso again.

    Code Block
    sudo umount CD

  1. Extract the initramfs directory.

    Code Block
    sudo unmkinitramfs initrd.gz initramfs

  1. Edit the start-udev script.

    Code Block
    sudo vi initramfs/lib/debian-installer/start-udev

Comment out following line:

...