
Re: Porteus install and GRUB (Post by brokenman #18826)
brokenman, says > set root=(hd1,7), but I prefer > set root='hd1,msdos8'
Code: Select all
### BEGIN /etc/grub.d/10_linux ###
menuentry 'ALT p11 starter kit' --class gnu-linux --class gnu --class os --class altlinux --unrestricted $menuentry_id_option 'gnulinux-simple-f5429808-2e62-40fb-b767-1be68dbc0b57' {
savedefault
load_video
insmod gzio
insmod part_msdos
insmod ext2
set root='hd1,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 f5429808-2e62-40fb-b767-1be68dbc0b57
else
search --no-floppy --fs-uuid --set=root f5429808-2e62-40fb-b767-1be68dbc0b57
fi
linux /boot/vmlinuz root=UUID=f5429808-2e62-40fb-b767-1be68dbc0b57 ro panic=30 quiet loglevel=3 splash
initrd /boot/initrd.img
}

Code: Select all
menuentry 'Porteus' {
set root='hd1,msdos4'
linux /boot/syslinux/vmlinuz
initrd /boot/syslinux/initrd.xz
}

or it starts few stuck when adding from=/porteus changes=/porteus
Regardless of the suggested parameters I set, it still ends up being "Always Fresh."
It's funny, because when you look at the Lilo bootloader, it's basically the same. What could be wrong?
Code: Select all
LABEL GRAPHICAL
MENU LABEL Graphics mode
KERNEL /boot/syslinux/vmlinuz
INITRD /boot/syslinux/initrd.xz
APPEND changes=/porteus
TEXT HELP
Run Porteus the best way we can.
Try to autoconfigure graphics
card and use the maximum allowed
resolution. If booting from a
non-posix (FAT/NTFS) drive,
see the Saving Changes Help
below for how to save changes.
ENDTEXT
