I am trying to run KDE_Plasma_5.x86_64-0.0.4.iso from hdd. I have tried in 40_custom:
menuentry "KDE_Plasma_5.x86_64-0.0.4.iso" {
insmod loopback
insmod iso9660
set isofile="/home/fl/Downloads/isos/"
#recherche de la partition dans laquelle se trouve le fichier ISO et montage de celle ci dans "/"
search -sf $isofile
#Montage du fichier ISO dans (loop)/
loopback loop $isofile
echo 'Chargement du noyau Linux ...'
linux (loop)/mnt/disk/boot/x86_64/loader/linux iso-scan/filename=$isofile boot=boot file=/cdrom/preseed/ubuntu.seed quiet splash --
echo 'Chargement du disque mémoire initial ...'
initrd (loop)/mnt/disk/boot/x86_64/loader/initrd
}
I do not know what to put as argument for file= instead of /cdrom/preseed/ubuntu.seed. And maybe I have got it all wrong.
Any suggestion would be really appreciated. Thanks.
menuentry "KDE_Plasma_5.x86_64-0.0.4.iso" {
insmod loopback
insmod iso9660
set isofile="/home/fl/Downloads/isos/"
#recherche de la partition dans laquelle se trouve le fichier ISO et montage de celle ci dans "/"
search -sf $isofile
#Montage du fichier ISO dans (loop)/
loopback loop $isofile
echo 'Chargement du noyau Linux ...'
linux (loop)/mnt/disk/boot/x86_64/loader/linux iso-scan/filename=$isofile boot=boot file=/cdrom/preseed/ubuntu.seed quiet splash --
echo 'Chargement du disque mémoire initial ...'
initrd (loop)/mnt/disk/boot/x86_64/loader/initrd
}
I do not know what to put as argument for file= instead of /cdrom/preseed/ubuntu.seed. And maybe I have got it all wrong.
Any suggestion would be really appreciated. Thanks.
Comment