여기에 몇 가지 배경이 있습니다. Windows가 설치된 1TB 하드 드라이브가 있습니다. 파티션은 다음과 같습니다.
2TB 하드 드라이브를 추가로 구입했고 1TB는 Windows 전용으로, 다른 하나는 Linux 전용으로 사용하고 싶습니다. 다음은 두 번째 하드 드라이브의 스크린샷입니다.
보시다시피 sda2
CentOS 7을 설치하면 Windows 부트로더가 있습니다. CentOS가 감지할 수 있도록 의도적으로 첫 번째 하드 드라이브에 CentOS 부트로더(예: grub?)를 설치하려고 했습니다. 하지만 CentOS는 그 후에도 Windows를 감지할 수 없는 것 같습니다.
fdisk -l
스크린샷이 충분하지 않은 경우 내 결과는 다음과 같습니다.
WARNING: fdisk GPT support is currently new, and therefore in an experimental phase. Use at your own discretion.
Disk /dev/sdb: 2000.4 GB, 2000398934016 bytes, 3907029168 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disk label type: gpt
# Start End Size Type Name
1 34 262177 128M Microsoft reser Microsoft reserved partition
Partition 1 does not start on physical sector boundary.
2 264192 1953646591 931.5G Microsoft basic Basic data partition
3 1953646592 1955743743 1G Microsoft basic
4 1955743744 3907028991 930.5G Linux LVM
WARNING: fdisk GPT support is currently new, and therefore in an experimental phase. Use at your own discretion.
Disk /dev/sda: 1000.2 GB, 1000204886016 bytes, 1953525168 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disk label type: gpt
# Start End Size Type Name
1 2048 616447 300M Windows recover Basic data partition
2 616448 819199 99M EFI System EFI system partition
3 819200 1081343 128M Microsoft reser Microsoft reserved partition
4 1081344 1048575999 499.5G Microsoft basic Basic data partition
5 1048576000 1887436799 400G Microsoft basic Basic data partition
6 1887436800 1953521663 31.5G Microsoft basic Basic data partition
7 1953521664 1953523711 1M BIOS boot parti
Disk /dev/mapper/cl-01: 981.9 GB, 981873983488 bytes, 1917722624 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disk /dev/mapper/cl-00: 17.2 GB, 17179869184 bytes, 33554432 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disk /dev/mapper/luks-13bc4611-477c-4df5-bfb7-b2bbd696e18b: 981.9 GB, 981871886336 bytes, 1917718528 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
나연구했다명령을 실행할 수 있다는 것을 알았습니다 update-grub
. 그러나 여기서는 이것이 불가능합니다. CentOS 7은 Ubuntu의 grub과 다른 grub을 사용합니다(틀린 경우 정정해 주세요).
나도 하나 찾았어grub2-mkconfig
방법, 그러나 이 명령은 Windows 부트로더를 찾을 수 없습니다.
Generating grub configuration file ...
Found linux image: /boot/vmlinuz-3.10.0-514.26.2.el7.x86_64
Found initrd image: /boot/initramfs-3.10.0-514.26.2.el7.x86_64.img
Found linux image: /boot/vmlinuz-3.10.0-514.el7.x86_64
Found initrd image: /boot/initramfs-3.10.0-514.el7.x86_64.img
Found linux image: /boot/vmlinuz-0-rescue-fd2ff737d87642cc87d59785cf5f2390
Found initrd image: /boot/initramfs-0-rescue-fd2ff737d87642cc87d59785cf5f2390.img
done
UEFI 지원 컴퓨터입니다.
나는 발견을 했고 다음과 같은 사실을 발견했습니다.
이것이 유용합니까?