내 Grub2는 완벽하며 수동(grub.cfg 편집)을 제외하고는 업데이트할 수 없습니다. 이걸 어떻게 청소하나요?

내 Grub2는 완벽하며 수동(grub.cfg 편집)을 제외하고는 업데이트할 수 없습니다. 이걸 어떻게 청소하나요?

저는 Acer 노트북에서 openSUSE Tumbleweed를 실행하고 있습니다. 중요할 수 있는 하드웨어/소프트웨어 세부 사항에 대해서는 의견을 통해 자유롭게 문의하시기 바랍니다.

내 질문은 다음과 같습니다

> sudo grub2-mkconfig -o /boot/grub2/grub.cfg    
insmod: ERROR: could not load module part_msdos: No such file or directory

그러나 나는 문제가 무엇인지 알고 있다고 생각합니다. my 는 /etc/default/grubmy (매우 길고 복잡함) 와 동일합니다 /boot/grub2/grub.cfg. ( part_msdosin 의 각 인스턴스를 삭제하면 /etc/default/grub또 다른 오류가 발생하고 또 다른 오류가 발생합니다. 끝이 없습니다.)

이 문제를 해결하기 위해 이전 파일을 저장하고 및 같은 항목 grub만 포함된 깨끗한 "새" 파일로 교체했습니다 .GRUB_DEFAULT=GRUB_TIMEOUT=

그런 다음 새 것을 생성할 수 있지만 grub.cfg물론 시작 시 모든 것이 즉시 실패하고 grub-repair >.

그래서 내 실제 질문은 다음과 같습니다. 이 명령이 실제로 작동하여 Grub을 업데이트할 수 있기를 원 grub2-mkconfig하지만...현재 Grub은 시작 시 완벽하게 보이고 느껴지고 동작하므로 그대로 유지하고 싶습니다.

이게 가능한지는 모르겠지만 혹시 방법을 아시는 분이 계시다면...

감사해요!


편집하다: 나는 당신이 말하는 것을 들었습니다.

  1. 백업한 /etc/default/grub후 삭제하고 grub다음 내용이 포함된 동일한 위치의 파일로 교체했습니다.
#/etc/default/grub
GRUB_DEFAULT="0"
GRUB_TIMEOUT="5"
GRUB_CMDLINE_LINUX="resume=UUID=2b54516c-b818-4bfb-8305-28b0a17182d9 quiet splash"
GRUB_TERMINAL_OUTPUT="console"
GRUB_DISABLE_RECOVERY="false"
GRUB_BACKGROUND="/boot/grub2/jinx-resized.png"
GRUB_THEME="/boot/grub2/themes/openSUSE/theme.txt"
GRUB_SAVEDEFAULT="true"
GRUB_DISABLE_OS_PROBER="false"
  1. 그런 다음 나는 달렸다 grub2-mkconfig -o /boot/grub2/grub.cfg.
  2. 결과? 검은색 유충, 단 2개의 항목: openSUSE TumbleweedRecovery for openSUSE Tumbleweed(4개 항목 포함).실행하려고 하면 항목 5개 모두 충돌이 발생합니다..

그래서? 를 포함하여 의 모든 내용은 etc/grub.d실행 가능합니다 30_os-prober.

여기 제가 한 일의 결과를 보여드리겠습니다:

#/boot/grub2/grub.cfg
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub2-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
set btrfs_relative_path="n"
export btrfs_relative_path
if [ -f ${config_directory}/grubenv ]; then
  load_env -f ${config_directory}/grubenv
elif [ -s $prefix/grubenv ]; then
  load_env
fi

if [ "${env_block}" ] ; then
  set env_block="(${root})${env_block}"
  export env_block
  load_env -f "${env_block}"
fi

if [ "${next_entry}" ] ; then
   set default="${next_entry}"
   set next_entry=
   save_env next_entry
   if [ "${env_block}" ] ; then
     save_env -f "${env_block}" next_entry
   fi
   set boot_once=true
else
   set default="0"
fi

if [ x"${feature_menuentry_id}" = xy ]; then
  menuentry_id_option="--id"
else
  menuentry_id_option=""
fi

export menuentry_id_option

if [ "${prev_saved_entry}" ]; then
  set saved_entry="${prev_saved_entry}"
  save_env saved_entry
  set prev_saved_entry=
  save_env prev_saved_entry
  set boot_once=true
fi

function savedefault {
  if [ -z "${boot_once}" ]; then
    saved_entry="${chosen}"
    if [ "${env_block}" ] ; then
      save_env -f "${env_block}" saved_entry
    else
      save_env saved_entry
    fi

  fi
}

function load_video {
  if [ x$feature_all_video_module = xy ]; then
    insmod all_video
  else
    insmod efi_gop
    insmod efi_uga
    insmod ieee1275_fb
    insmod vbe
    insmod vga
    insmod video_bochs
    insmod video_cirrus
  fi
}


for i in console; do
  if [ x${use_append} = xtrue ]; then
     terminal_output --append $i
  elif terminal_output $i; then
     use_append=true;
  fi
done

if [ x${boot_once} = xtrue ]; then
  set timeout=0
elif [ x$feature_timeout_style = xy ] ; then
  set timeout_style=menu
  set timeout=5
# Fallback normal timeout code in case the timeout_style feature is
# unavailable.
else
  set timeout=5
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/00_tuned ###
set tuned_params=""
set tuned_initrd=""
### END /etc/grub.d/00_tuned ###

### BEGIN /etc/grub.d/05_crypttab ###
### END /etc/grub.d/05_crypttab ###

### BEGIN /etc/grub.d/05_menu_color ###
set menu_color_normal=white/black
set menu_color_highlight=black/light-gray
### END /etc/grub.d/05_menu_color ###

### BEGIN /etc/grub.d/10_linux ###
menuentry 'openSUSE Tumbleweed'  --class opensuse --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-37b1ace3-0889-4b40-9b0a-a2fe5da56d0a' {
    savedefault
    load_video
    set gfxpayload=keep
    insmod gzio
    insmod part_msdos
    insmod btrfs
    set root='hd0,msdos1'
    if [ x$feature_platform_search_hint = xy ]; then
      search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  37b1ace3-0889-4b40-9b0a-a2fe5da56d0a
    else
      search --no-floppy --fs-uuid --set=root 37b1ace3-0889-4b40-9b0a-a2fe5da56d0a
    fi
    echo    'Loading Linux 6.5.8-1-default ...'
    linux   /@/.snapshots/709/snapshot/boot/vmlinuz-6.5.8-1-default root=UUID=37b1ace3-0889-4b40-9b0a-a2fe5da56d0a rootflags=subvol=@/.snapshots/709/snapshot resume=UUID=2b54516c-b818-4bfb-8305-28b0a17182d9 quiet splash 
    echo    'Loading initial ramdisk ...'
    initrd  /@/.snapshots/709/snapshot/boot/initrd-6.5.8-1-default
}
submenu 'Advanced options for openSUSE Tumbleweed' --hotkey=1 $menuentry_id_option 'gnulinux-advanced-37b1ace3-0889-4b40-9b0a-a2fe5da56d0a' {
    menuentry 'openSUSE Tumbleweed, with Linux 6.5.8-1-default' --hotkey=2 --class opensuse --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-6.5.8-1-default-advanced-37b1ace3-0889-4b40-9b0a-a2fe5da56d0a' {
    savedefault
        load_video
        set gfxpayload=keep
        insmod gzio
        insmod part_msdos
        insmod btrfs
        set root='hd0,msdos1'
        if [ x$feature_platform_search_hint = xy ]; then
          search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  37b1ace3-0889-4b40-9b0a-a2fe5da56d0a
        else
          search --no-floppy --fs-uuid --set=root 37b1ace3-0889-4b40-9b0a-a2fe5da56d0a
        fi
        echo    'Loading Linux 6.5.8-1-default ...'
        linux   /@/.snapshots/709/snapshot/boot/vmlinuz-6.5.8-1-default root=UUID=37b1ace3-0889-4b40-9b0a-a2fe5da56d0a rootflags=subvol=@/.snapshots/709/snapshot resume=UUID=2b54516c-b818-4bfb-8305-28b0a17182d9 quiet splash 
        echo    'Loading initial ramdisk ...'
        initrd  /@/.snapshots/709/snapshot/boot/initrd-6.5.8-1-default
    }
    menuentry 'openSUSE Tumbleweed, with Linux 6.5.8-1-default (recovery mode)' --hotkey=3 --class opensuse --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-6.5.8-1-default-recovery-37b1ace3-0889-4b40-9b0a-a2fe5da56d0a' {
        load_video
        set gfxpayload=keep
        insmod gzio
        insmod part_msdos
        insmod btrfs
        set root='hd0,msdos1'
        if [ x$feature_platform_search_hint = xy ]; then
          search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  37b1ace3-0889-4b40-9b0a-a2fe5da56d0a
        else
          search --no-floppy --fs-uuid --set=root 37b1ace3-0889-4b40-9b0a-a2fe5da56d0a
        fi
        echo    'Loading Linux 6.5.8-1-default ...'
        linux   /@/.snapshots/709/snapshot/boot/vmlinuz-6.5.8-1-default root=UUID=37b1ace3-0889-4b40-9b0a-a2fe5da56d0a single rootflags=subvol=@/.snapshots/709/snapshot resume=UUID=2b54516c-b818-4bfb-8305-28b0a17182d9 quiet splash
        echo    'Loading initial ramdisk ...'
        initrd  /@/.snapshots/709/snapshot/boot/initrd-6.5.8-1-default
    }
    menuentry 'openSUSE Tumbleweed, with Linux 6.5.6-1-default'  --class opensuse --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-6.5.6-1-default-advanced-37b1ace3-0889-4b40-9b0a-a2fe5da56d0a' {
    savedefault
        load_video
        set gfxpayload=keep
        insmod gzio
        insmod part_msdos
        insmod btrfs
        set root='hd0,msdos1'
        if [ x$feature_platform_search_hint = xy ]; then
          search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  37b1ace3-0889-4b40-9b0a-a2fe5da56d0a
        else
          search --no-floppy --fs-uuid --set=root 37b1ace3-0889-4b40-9b0a-a2fe5da56d0a
        fi
        echo    'Loading Linux 6.5.6-1-default ...'
        linux   /@/.snapshots/709/snapshot/boot/vmlinuz-6.5.6-1-default root=UUID=37b1ace3-0889-4b40-9b0a-a2fe5da56d0a rootflags=subvol=@/.snapshots/709/snapshot resume=UUID=2b54516c-b818-4bfb-8305-28b0a17182d9 quiet splash 
        echo    'Loading initial ramdisk ...'
        initrd  /@/.snapshots/709/snapshot/boot/initrd-6.5.6-1-default
    }
    menuentry 'openSUSE Tumbleweed, with Linux 6.5.6-1-default (recovery mode)' --hotkey=1 --class opensuse --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-6.5.6-1-default-recovery-37b1ace3-0889-4b40-9b0a-a2fe5da56d0a' {
        load_video
        set gfxpayload=keep
        insmod gzio
        insmod part_msdos
        insmod btrfs
        set root='hd0,msdos1'
        if [ x$feature_platform_search_hint = xy ]; then
          search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  37b1ace3-0889-4b40-9b0a-a2fe5da56d0a
        else
          search --no-floppy --fs-uuid --set=root 37b1ace3-0889-4b40-9b0a-a2fe5da56d0a
        fi
        echo    'Loading Linux 6.5.6-1-default ...'
        linux   /@/.snapshots/709/snapshot/boot/vmlinuz-6.5.6-1-default root=UUID=37b1ace3-0889-4b40-9b0a-a2fe5da56d0a single rootflags=subvol=@/.snapshots/709/snapshot resume=UUID=2b54516c-b818-4bfb-8305-28b0a17182d9 quiet splash
        echo    'Loading initial ramdisk ...'
        initrd  /@/.snapshots/709/snapshot/boot/initrd-6.5.6-1-default
    }
}

### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_linux_xen ###

### END /etc/grub.d/20_linux_xen ###

### BEGIN /etc/grub.d/20_memtest86+ ###
### END /etc/grub.d/20_memtest86+ ###

### BEGIN /etc/grub.d/25_bli ###
if [ "$grub_platform" = "efi" ]; then
  insmod bli
fi
### END /etc/grub.d/25_bli ###

### BEGIN /etc/grub.d/30_os-prober ###

### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/30_uefi-firmware ###
if [ "$grub_platform" = "efi" ]; then
    menuentry 'UEFI Firmware Settings' $menuentry_id_option 'uefi-firmware' {
                fwsetup --is-supported
                if [ "$?" = 0 ]; then
                        fwsetup
                else
                        echo "Your firmware doesn't support setup menu entry from a boot loader"
                        echo "Press any key to return ..."
                        read
                fi
        }
fi
### END /etc/grub.d/30_uefi-firmware ###

### BEGIN /etc/grub.d/35_fwupd ###
### END /etc/grub.d/35_fwupd ###

### 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.
### END /etc/grub.d/40_custom ###

### BEGIN /etc/grub.d/41_custom ###
if [ -f  ${config_directory}/custom.cfg ]; then
  source ${config_directory}/custom.cfg
elif [ -z "${config_directory}" -a -f  $prefix/custom.cfg ]; then
  source $prefix/custom.cfg
fi
### END /etc/grub.d/41_custom ###

### BEGIN /etc/grub.d/80_suse_btrfs_snapshot ###
### END /etc/grub.d/80_suse_btrfs_snapshot ###

### BEGIN /etc/grub.d/90_persistent ###
### END /etc/grub.d/90_persistent ###

### BEGIN /etc/grub.d/95_textmode ###
if [ "${grub_platform}" = "efi" ]; then
  # On EFI systems we can only have graphics *or* serial, so allow the user
  # to switch between the two
  hiddenentry 'Text mode' --hotkey 't' {
    set textmode=true
    terminal_output console
  }
fi
### END /etc/grub.d/95_textmode ###

나의 빠른 분석: Grub은 커널과 initramfs를 가리키는 모든 Tumbleweed 항목을 생성합니다.스냅 사진, 더 이상 존재하지 않습니다. 그리고 오스프로버는 아무것도 하지 않았습니다. 그런데 40_custom실행 파일이 있지만 아직 아무것도 추가하지 않았습니다.

끝나는 단어:모든 것을 백업했고 유비쿼터스적인 "구성을 수정한 /etc/default/grub다음 구성을 다시 생성하면 괜찮을 것입니다!" 라는 말을 믿지 않아서 다행입니다.

미래의 독자들에게: 이 게시물의 화난 어조에 대해 정말 죄송합니다. 사람들이 이 게시물을 매우 쉽게 들리게 만들고 작동하지 않을 뿐만 아니라 모든 것을 망칠 때 약간 배신감을 느낍니다. 다시 한번 미안해

답변1

GRUB 구성 명령을 직접 작성했습니다 /etc/default/grub. 이것은 올바르지 않습니다. /etc/default/grub스크립트 grub2-mkconfig의 일부로 소스가 제공되었습니다.쉘 스크립트는 실제grub.cfg. 나머지 쉘 스크립트는 에 있습니다 /etc/grub.d/.

insmod part_msdos을 쓰면 실행을 시도 /etc/default/grub합니다 .grub-mkconfig리눅스로드하라는 명령리눅스 커널 모듈분명히 존재하지 않는 name part_msdos- GRUB 구성에 한 줄을 추가하여 로드하라고 지시하는 대신애벌레모듈 part_msdos.

일반적으로 /etc/default/grub공급품만 포함되어야 합니다 /etc/grub.d/.

자신만의 GRUB 구성을 완전히 작성하려면 이름을 로 지정해야 합니다 /boot/grub/custom.cfg. grub2-mkconfig에 의해 호출되는 마지막 스크립트는 GRUB를 소스로 만들기 위해 /etc/grub.d/41_custom생성하는 "표준" 끝에 몇 줄을 추가합니다 . 이는 "표준 스타일" GRUB 구성을 사용자 정의 구성으로 완전히 재정의하는 데 사용할 수 있습니다.grub.cfgcustom.cfg

또는 grub2-mkconfig기능의 일부를 유지하고 다른 부분을 바꾸려면 다음의 스크립트를 살펴봐야 합니다 /etc/grub.d/. 각 스크립트는 "표준" 파일의 특정 부분을 담당합니다 grub.cfg. 이러한 스크립트 중 일부를 수정하거나 완전히 교체할 수도 있습니다.

GRUB 구성 언어는 대부분의 스크립트에 직접 작성할 수 없습니다.원하는 GRUB 구성을 출력하는 쉘 스크립트표준 출력으로.

특히, 생성된 표준 메뉴 뒤에 사용자 정의 명령(예: 다른 운영 체제의 메뉴 항목)만 추가하려는 경우 grub2-mkconfigGRUB 명령을 끝에 작성해야 합니다 /etc/grub.d/40_custom. 이것이 바로 이 스크립트의 목적입니다. 여기에는 스크립트의 나머지 부분을 있는 그대로 표준 출력으로 보내도록 하는 영리한 두 줄 헤더가 있어 GRUB 구성 구문을 직접 작성할 수 있습니다.

관련 정보