Пытаюсь добавить вторую систему Windows зашифрованной truecrypt.
Но после того как truecrypt ставит свой загрузчик, я не могу настроить это все в Grub.
Начинает ругаться на отсутствие раздела.
Кусок grub.cfg:
menuentry 'Win' --class windows --class os $menuentry_id_option 'osprober-chain-385a7226-01' {
insmod part_msdos
insmod ntfs
set root='hd0,msdos3'
if [ x$feature_platform__search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3 385a7226-01
else
search --no-floppy --fs-uuid --set=root 385a7226-01
fi
parttool ${root} hidden-
chainloader +1
}