이 점에 대해:하나의 디스크에 암호화된 VG가 포함된 Fedora&Ubuntu를 설치하는 방법은 무엇입니까?
그래서 우분투로 부팅한 후 다음 스크립트를 실행했습니다.
#!/bin/bash
# show the bootlist of grub when booting pc
sed -i.backup 's/^GRUB_HIDDEN_TIMEOUT=/#GRUB_HIDDEN_TIMEOUT=/' /etc/default/grub
sed -i 's/^GRUB_TIMEOUT=10/GRUB_TIMEOUT=5/' /etc/default/grub
# update-grub # we will use this later too.. don't need it here
# add the "chainload grub" function
cp /etc/grub.d/40_custom /etc/grub.d/40_custom.backup
echo "#!/bin/sh
exec tail -n +3 \$0
menuentry 'FEDORA' {
insmod chain
set root=(hd0,3)
chainloader +1
}" > /etc/grub.d/40_custom
chmod 755 /etc/grub.d/40_custom
update-grub
sync
sync
sync
좋아요, 오류 메시지는 없습니다..
저는 다음을 사용하고 있습니다: VirtualBox-3.2-3.2.12_68302_fedora14-1.i686
이제 모든 것을 테스트하기 위해 virtualbox 머신을 다시 시작하고 싶습니다. 이것은 몇 초 후에 얻은 결과입니다. grub2 부트 목록에서 "FEDORA" 선택:
이미지 호스트 #1-이미지 호스트 #2
엄청난! .. :(
다른 것들:VBox.log;2011-04-17-15-23-37.048-VirtualBox-12365.log
누가 날 도울 수 있죠? 이 오류에 대한 해결 방법이 있습니까?
감사합니다!