CentOS 7을 설치한 후 Windows 시작 옵션이 손실됩니다. 복원하는 방법은 무엇입니까?

CentOS 7을 설치한 후 Windows 시작 옵션이 손실됩니다. 복원하는 방법은 무엇입니까?

최근 Windows 7을 실행하는 컴퓨터에 CentOS 7을 설치했습니다. 이중 부팅 설치를 수행하고 하나의 파티션에 CentOS를 설치했습니다. 하지만 컴퓨터를 부팅하면 CentOS 옵션이 두 개만 제공됩니다. Windows 7을 부팅할 수 있는 옵션이 제공되지 않았습니다. 시작 옵션에 Windows 7을 다시 추가하려면 어떻게 해야 하나요?

노트:나는 다음과 같은 제목의 기사를 읽고 있습니다.CentOS 7 및 Windows 듀얼 부팅/grub, 그런데 내 폴더 에는 파일이 하나만 있고 splash.xpm.gz다른 파일은 없는 것 같습니다. 또한 저는 Linux를 처음 접했기 때문에 단계별로 더 많은 것을 배워야 합니다.

편집 #1

명령줄에서 다음 결과를 얻습니다.

[root@localhost home]# sudo update-grub
sudo: update-grub: command not found
[root@localhost home]# sudo grub-mkconfig
sudo: grub-mkconfig: command not found

또한 현재 이러한 명령이 CentOS에서 작동하지 않을 가능성을 조사 중입니다. 예를 들어, "RHEL/Fedora/CentOS 시스템의 update-grub과 동일합니까?"라는 제목의 Q&A도 있었습니다.Windows 후에 Centos 7을 설치했는데 CentOS로 부팅할 수 없습니다." grub2를 다시 설치해야 한다고 제안하는 것 같습니다. 그런데 어떻게 해야 합니까? 저는 이제 막 Linux를 배우고 있습니다.

편집 #2

다음 명령이 작동합니다. 출력은 다음과 같습니다.

[root@localhost home]# sudo grub2-mkconfig 2>/dev/null
#
# 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 pager=1

if [ -s $prefix/grubenv ]; then
  load_env
fi
if [ "${next_entry}" ] ; then
   set default="${next_entry}"
   set next_entry=
   save_env next_entry
   set boot_once=true
else
   set default="${saved_entry}"
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}"
    save_env saved_entry
  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
}

terminal_output console
if [ 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/10_linux ###
menuentry 'CentOS Linux, with Linux 3.10.0-123.el7.x86_64' --class centos --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-3.10.0-123.el7.x86_64-advanced-77a053a9-a71b-43ce-a8d7-1a3418f5b0d9' {
    load_video
    set gfxpayload=keep
    insmod gzio
    insmod part_msdos 
    insmod xfs
    set root='hd0,msdos5'
    if [ x$feature_platform_search_hint = xy ]; then
      search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint- efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5 --hint='hd0,msdos5'  589631f1-d5aa-4374-a069-7aae5ca289bc
    else
      search --no-floppy --fs-uuid --set=root 589631f1-d5aa-4374-a069-7aae5ca289bc
    fi
    linux16 /vmlinuz-3.10.0-123.el7.x86_64 root=UUID=77a053a9-a71b-43ce-a8d7-1a3418f5b0d9 ro rd.luks.uuid=luks-a45243be-2514-4a81-b7a1-7e4eff712d2d vconsole.font=latarcyrheb-sun16 crashkernel=auto  vconsole.keymap=us rd.luks.uuid=luks-5349515e-a082-4ff2-b035-54da7b8d4990 rhgb quiet 
    initrd16 /initramfs-3.10.0-123.el7.x86_64.img
}
menuentry 'CentOS Linux, with Linux 0-rescue-369d0c1b630b48cc8ef010ceb99bc668' --class centos --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-0-rescue-369d0c1b630b48cc8ef010ceb99bc668-advanced-77a053a9-a71b-43ce-a8d7-1a3418f5b0d9' {
    load_video
    insmod gzio
    insmod part_msdos 
    insmod xfs
    set root='hd0,msdos5'
    if [ x$feature_platform_search_hint = xy ]; then
      search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5 --hint='hd0,msdos5'  589631f1-d5aa-4374-a069-7aae5ca289bc
    else
      search --no-floppy --fs-uuid --set=root 589631f1-d5aa-4374-a069-7aae5ca289bc
    fi
    linux16 /vmlinuz-0-rescue-369d0c1b630b48cc8ef010ceb99bc668 root=UUID=77a053a9-a71b-43ce-a8d7-1a3418f5b0d9 ro rd.luks.uuid=luks-a45243be-2514-4a81-b7a1-7e4eff712d2d vconsole.font=latarcyrheb-sun16 crashkernel=auto  vconsole.keymap=us rd.luks.uuid=luks-5349515e-a082-4ff2-b035-54da7b8d4990 rhgb quiet 
    initrd16 /initramfs-0-rescue-369d0c1b630b48cc8ef010ceb99bc668.img
}

### 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_ppc_terminfo ###
### END /etc/grub.d/20_ppc_terminfo ###

### BEGIN /etc/grub.d/30_os-prober ###
menuentry 'Windows 7 (loader) (on /dev/sda2)' --class windows --class os $menuentry_id_option 'osprober-chain-386ED4266ED3DB28' {
    insmod part_msdos 
    insmod ntfs
    set root='hd0,msdos2'
    if [ x$feature_platform_search_hint = xy ]; then
      search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2 --hint='hd0,msdos2'  386ED4266ED3DB28
    else
      search --no-floppy --fs-uuid --set=root 386ED4266ED3DB28
    fi
    chainloader +1
}
### END /etc/grub.d/30_os-prober ###

### 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 ###

답변1

이는 일반적으로 설치된 운영 체제를 감지하고 생성하는 스크립트를 실행하여 수행할 수 있습니다.부트 로더( grub2이 경우) 구성 파일입니다. CentOS 7에서는 grub2-mkconfig.

  1. 창이 감지되는지 확인하세요. 실행 grub2-mkconfig하고 출력을 삭제합니다.

    $ sudo grub2-mkconfig > /dev/null 
    Generating grub configuration file ...
    Found background image: /usr/share/images/desktop-base/desktop-grub.png
    Found linux image: /boot/vmlinuz-3.16.0-4-amd64
    Found initrd image: /boot/initrd.img-3.16.0-4-amd64
    Found memtest86+ image: /boot/memtest86+.bin
    Found memtest86+ multiboot image: /boot/memtest86+_multiboot.bin
    Found Windows 7 (loader) on /dev/sda2
    

    출력은 위에 표시된 것과 유사하지만 동일하지는 않습니다. Windows가 목록에 있는지 확인하세요.

  2. 이전 단계에 Windows가 나열되어 있으면 계속해서 새 프로필을 저장하세요. 만일의 경우를 대비해 먼저 백업을 만들어 두세요.

    sudo cp /boot/grub2/grub.cfg /boot/grub2/grub.cfg.old
    sudo grub2-mkconfig -o /boot/grub2/grub.cfg   
    

모든 것이 순조롭게 진행되었다면 이제 Windows로 재부팅할 수 있습니다.

답변2

@terdon의 답변에 대한 후속 조치 - grub2-mkconfig는 테스트 단계를 수행할 때 이 작업을 수행합니다.아니요Windows 파티션을 찾으세요. 다음으로, Linux 시스템이 Windows 파티션을 읽을 수 있도록 "ntfs-3g" 패키지를 설치했는지 확인하십시오.

sudo yum install ntfs-3g

설치 후 실행하면

sudo grub2-mkconfig > /dev/null

...Windows 부팅 목록이 표시되어야 합니다. 다른 항목이 정상이면 계속해서 작성하세요.

답변3

CentOS 7.0을 설치하는 동안 이 문제가 발생했습니다. Windows는 처음에는 grub2-mkconfig 출력에 나열되지 않습니다.

다른 답변에서 제안한 대로 ntfs-3g를 설치하려면 먼저 epel-release를 설치해야 했습니다.

sudo yum install epel-release

간단히 시도하면 sudo yum --enablerepo epel install ntfs-3g저장소를 찾을 수 없다는 메시지가 나타납니다.

ntfs-3g를 설치하려면 epel-release를 설치하세요. 거기에서 Windows 파티션이 grub2-mkconfig에 나열됩니다. 이전 답변의 단계에서는 시작 시 창을 선택하는 옵션을 제공합니다.

답변4

@terdon @JosephK 및 @clk의 답변을 요약하여 전체 프로세스를 공식화합니다.

  1. epel 저장소 추가

    sudo yum install epel-release
    
  2. ntfs-3g 패키지 설치

    sudo yum install ntfs-3g
    
  3. 명령을 실행 grub2-mkconfig하고 "Windows" 항목이 감지되는지 확인하십시오.

    sudo grub2-mkconfig > /dev/null 
    
  4. 파일을 업데이트합니다 grub.cfg.

    sudo cp /boot/grub2/grub.cfg /boot/grub2/grub.cfg.old
    sudo grub2-mkconfig -o /boot/grub2/grub.cfg   
    

관련 정보