Уже некоторое время бьюсь над тем как в GRUB2 от LMDE впихнуть загрузку Win7. Суть в том что Win7 я установил на другой жестяк намного позже LMDE:
linux@linux-pc:~$ sudo blkid
[sudo] password for linux:
/dev/sda1: LABEL="Main" UUID="67A94AD5147E176A" TYPE="ntfs"
/dev/sdb1: UUID="3CF0-70CC" TYPE="vfat"
/dev/sdc1: LABEL="TrashBag" UUID="300CC29E0CC25E8A" TYPE="ntfs"
/dev/sdd1: UUID="0152616b-d2ad-42cf-89a1-beb80906e2be" TYPE="swap"
/dev/sdd2: UUID="0a541152-2939-4a4b-9fc6-6e84473ec022" TYPE="ext4"
/dev/sdd3: LABEL="Home" UUID="dcaaa1fa-b832-42e6-bc84-d1e651d78219" TYPE="ext4"
/dev/sdb3: UUID="5C2C037A2C034E88" TYPE="ntfs" LABEL="Win7"
#!/bin/sh
exec tail -n +3 $0
# This file provides an easy way to add custom menu entries. Simply type the
# menu entries you want to add after this comment. Be careful not to change
# the 'exec tail' line above.
menuentry "Windows 7" {
insmod part_msdos
insmod ntfs
set root='(hd3,msdos3)'
search --no-floppy --fs-uuid --set=root 5C2C037A2C034E88
drivemap -s (hd0) ${root}
chainloader +1
}