나는 현재 다양한 배포판을 시험 중이므로 랩톱을 부팅 할 때 선택할 수있는 몇 가지 OS가 있습니다. 일반적으로 모든 배포판 grub2
은 설치가 완료된 후 부팅되는 기본 배포판 이므로 목록의 맨 위에 설치되어 있습니다.
그러나 Manjaro는 다른 일을했습니다. 그것은 몇 가지 버전의 설치 grub2
그 것이다 기억 나는 하나가 (다시 시작시) 내가 다른 하나를 선택 할 때까지 (후 등등 하나와 부팅 것) 지난 시간과 유지 부팅 부팅 배포판있다.
내가 이것을 상상 했습니까? Manjaro는 실제로 그렇게합니까? 그렇다면 시스템에 해당 버전 을 어떻게 설치할 수 grub
있습니까? 건배.
이것은 내 /etc/grub.d/40_custom
파일입니다.
#!/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.
그리고 이것은 내 /etc/default/grub
파일입니다.
# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
# For full documentation of the options in this file, see:
# info -f grub -n 'Simple configuration'
GRUB_DEFAULT=saved
GRUB_SAVEDEFAULT=true
#GRUB_HIDDEN_TIMEOUT=0
GRUB_HIDDEN_TIMEOUT_QUIET=true
GRUB_TIMEOUT=3
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""
# Uncomment to enable BadRAM filtering, modify to suit your needs
# This works with Linux (no patch required) and with any kernel that obtains
# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"
# Uncomment to disable graphical terminal (grub-pc only)
#GRUB_TERMINAL=console
# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
#GRUB_GFXMODE=640x480
# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
#GRUB_DISABLE_LINUX_UUID=true
# Uncomment to disable generation of recovery mode menu entries
#GRUB_DISABLE_RECOVERY="true"
# Uncomment to get a beep at grub start
#GRUB_INIT_TUNE="480 440 1"
/etc/default/grub
줄 GRUB_DEFAULT=0
을 편집 하고 줄 을 바꾸고 거기에없는 GRUB_DEFAULT=saved
줄 GRUB_SAVEDEFAULT=true
을 추가 했습니다. 그런 다음 sudo update-grub
. 재부팅하고 부팅 할 배포판을 선택했습니다. 다시 재부팅하면 기본적으로 상단 (내가 선택하지 않은) 배포판이 선택되어 부팅됩니다.
grub
). 이전에 다른 것을 선택했지만 다시 시작하면 최상위 배포판이 부팅됩니다.