![GRUB2 및 PXE: 오류: 적합한 비디오 모드를 찾을 수 없습니다.](https://linux55.com/image/229132/GRUB2%20%EB%B0%8F%20PXE%3A%20%EC%98%A4%EB%A5%98%3A%20%EC%A0%81%ED%95%A9%ED%95%9C%20%EB%B9%84%EB%94%94%EC%98%A4%20%EB%AA%A8%EB%93%9C%EB%A5%BC%20%EC%B0%BE%EC%9D%84%20%EC%88%98%20%EC%97%86%EC%8A%B5%EB%8B%88%EB%8B%A4..png)
나는 PXE를 통해 로드될 디스크 없는 Debian 11 이미지를 만들고 있지만, 부팅하는 동안 다음과 같은 짜증나는 메시지가 나타납니다.
error: no suitable video mode found.
Booting in blind mode
시스템이 여전히 뜨고 텍스트 콘솔도 작동하기 때문에 방해가 되는 것은 아니지만 완벽주의자이기 때문에 고치고 싶습니다. 내 grub.cfg
상향식은 다음과 같습니다 /srv/tftp
. 내 목표는 완전히 간단한 부팅 메뉴를 갖는 것입니다.
# cat boot/grub/grub.cfg
terminal_input console
terminal_output console
set gfxmode=text
set timeout=5
menuentry 'Boot Debian 11' {
linux /debian11/boot/vmlinuz-5.10.0-22-amd64 console=tty0 ip=dhcp root=/dev/nfs ro nfsroot=192.168.50.111:/image/debian11,vers=3,nolock panic=60 ipv6.disable=1 rootwait
initrd /debian11/boot/initrd.img-5.10.0-22-amd64
}
커널이 부팅된 후에 오류가 나타나므로 아마도 커널 매개변수를 변경/추가해야 할 것입니다. 하지만 어떤 것이 있을까요?