사용자 정의 메뉴 항목에 대해 /etc/grub.d/40_custom을 다음과 같이 업데이트했습니다.
menuentry "My OS"{
rootnoverify (hd1,0)
chainloader +1
}
다음 명령을 실행합니다.
grub2-mkconfig –o /boot/grub2/grub.cfg
출력이 표시됩니다.
### BEGIN /etc/grub.d/40_custom ###
# 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 "My OS"{
rootnoverify (hd1,0)
chainloader +1
}
### END /etc/grub.d/40_custom ###
그리고 그 이후에는 아무것도 하지 않습니다. 제가 또 무엇을 해야 하는지 알려주실 수 있나요? 감사해요.