Page 1 of 1

pls post a windows booting linkgrub.cfg file

Posted: Mon 22 Jun 2020, 09:21
by boof
deleted it. bad boy.

Posted: Mon 22 Jun 2020, 23:14
by jp734
hello boof,

Hope this is what you're looking for. My setup is a triple boot (lubuntu, puppy and windows 10) with no EFI. Partition is as follows, sda1, sda2 (windows) and sda3 (linux)

Code: Select all

menuentry 'Windows 10 (on /dev/sda1)' --class windows --class os $menuentry_id_option 'osprober-chain-C6201AE4201ADAEF' {
	insmod part_msdos
	insmod ntfs
	set root='hd0,msdos1'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  C6201AE4201ADAEF
	else
	  search --no-floppy --fs-uuid --set=root C6201AE4201ADAEF
	fi
	parttool ${root} hidden-
	drivemap -s (hd0) ${root}
	chainloader +1
}