da ich knapp bestückt bin mit USB-Sticks habe ich das Iso auf DVD gebrannt, ist halt ein bißchen langsam, da mein DVD-Laufwerk extern ist.
Also dachte, ich binde mein iso im Debian Stretch grub2 ein.
Das grub-skript dazu.
Code: Alles auswählen
#!/bin/sh -e
echo "found Debian Buster" >&2
exec tail -n +3 $0
menuentry "Debian Buster" {
insmod part_msdos
insmod ext2
insmod lzopio
insmod gzio
gfxpayload=$linux_gfx_mode
set isofile=/boot/buster/debian-10.1.iso
loopback loop (hd0,1)$isofile
linux (loop)/d-i/vmlinuz boot=live/filename=$isofile components locales=de_DE.UTF-8 noprompt noeject
initrd (loop)/d-i/initrd.gz}
Ich schätze mal d-i bedeutet debian-installer.
Was muß ich richtigerweise für die initrd und linux eintragen.
Code: Alles auswählen
alex@Taomon:~$ ls -al /media/alex/d-live\ 10.1.0\ ma\ amd64/
insgesamt 22
drwxr-xr-x 1 alex alex 2048 Sep 7 13:21 .
drwxr-x---+ 3 root root 4096 Sep 26 20:18 ..
drwxr-xr-x 1 alex alex 2048 Sep 7 13:21 boot
drwxr-xr-x 1 alex alex 2048 Sep 7 13:21 d-i
drwxr-xr-x 1 alex alex 2048 Sep 7 13:21 .disk
drwxr-xr-x 1 alex alex 2048 Sep 7 13:21 dists
drwxr-xr-x 1 alex alex 2048 Sep 7 13:21 EFI
drwxr-xr-x 1 alex alex 2048 Sep 7 13:21 isolinux
drwxr-xr-x 1 alex alex 2048 Sep 7 13:20 live
drwxr-xr-x 1 alex alex 2048 Sep 7 13:21 pool
alex@Taomon:~$
Booten muß das ganze im bios-Mode, so ist mein UEFI eingstellt.
Code: Alles auswählen
alex@Taomon:~$ ls -al /media/alex/d-live\ 10.1.0\ ma\ amd64/live/
insgesamt 2210862
drwxr-xr-x 1 alex alex 2048 Sep 7 13:20 .
drwxr-xr-x 1 alex alex 2048 Sep 7 13:21 ..
-rw-r--r-- 1 alex alex 206243 Sep 7 13:20 config-4.19.0-6-amd64
-rw-r--r-- 1 alex alex 2217750528 Sep 7 13:20 filesystem.squashfs
-rw-r--r-- 1 alex alex 37279804 Sep 7 13:20 initrd.img-4.19.0-6-amd64
-rw-r--r-- 1 alex alex 3409440 Sep 7 13:20 System.map-4.19.0-6-amd64
-rw-r--r-- 1 alex alex 5270768 Sep 7 13:20 vmlinuz-4.19.0-6-amd64
alex@Taomon:~$
Gruß Taomon