Scheduled Maintenance: We are aware of an issue with Google, AOL, and Yahoo services as email providers which are blocking new registrations. We are trying to fix the issue and we have several internal and external support tickets in process to resolve the issue. Please see: viewtopic.php?t=158230

 

 

 

what is fromiso=/findiso= looking for?

New to Debian (Or Linux in general)? Ask your questions here!
Post Reply
Message
Author
OSBuildX
Posts: 7
Joined: 2018-11-29 13:43

what is fromiso=/findiso= looking for?

#1 Post by OSBuildX »

well, kinda odd situation as I got few iso's at same location and debian seems selects first iso it can find, mounting all partitions everytime instead of what is pointed to it. Why is hd-media mounting and searching through all "partitions" instead of what is given to it?

vmlinuz from hd-media 9.6 amd64.

Code: Select all

linux /vmlinuz fromiso=/dev/sda7/firmware-9.6.0-amd64-netinst.iso
seems to find debian.iso everytime.

Code: Select all

linux /vmlinuz findiso=/firmware-9.6.0-amd64-netinst.iso
seems to find /debian.iso located at /dev/sda2 everytime.

So, where am I going wrong?

User avatar
piper
Posts: 102
Joined: 2005-07-03 08:29

Re: what is fromiso=/findiso= looking for?

#2 Post by piper »

Are you trying to boot from a iso?

I haven't tested debian, no need to, but maybe this will help as I have to test my builds, I use 40_custom

Code: Select all

menuentry "Siduction-Live-KDE-Plasma5-Development" {
        insmod iso9660
	    insmod part_gpt
        insmod ext2
	    set root='hd1,gpt1'
	    if [ x$feature_platform_search_hint = xy ]; then
        search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt1 --hint-efi=hd1,gpt1 --hint-baremetal=ahci1,gpt1  192108a8-601e-4868-882d-97ad3042b5ee
	    else
	    search --no-floppy --fs-uuid --set=root 192108a8-601e-4868-882d-97ad3042b5ee
	    fi
	    loopback loop /builds/siduction/siduction-18.3.0-paintitblack-kde-amd64-201812021335.iso
	    linux (loop)/boot/vmlinuz-4.19.6-towo.1-siduction-amd64 fromhd=UUID=192108a8-601e-4868-882d-97ad3042b5ee fromiso=/builds/siduction/siduction-18.3.0-paintitblack-kde-amd64-201812021335.iso boot=fll lang=en_EN tz=UTC quiet systemd.show_status=1 noeject toram
	    initrd (loop)/boot/initrd.img-4.19.6-towo.1-siduction-amd64

Post Reply