Windows 11과 듀얼 부팅을 위해 Linux Mint를 설치하려고 할 때 위의 오류가 계속 발생합니다. 무엇이 문제인지 잘 모르겠습니다. 드라이브는 Windows에서 잘 작동하고, ntfs, fat32, ext2 등으로 포맷해도... 드라이브도 잘 작동합니다. 저도 설치가 안되네요. 제가 설치할 장치는 250GB SSD인 /dev/sda이고, 설치 장치는 16GB 펜 드라이브입니다.
fdisk -l
생산하다:
root@mint:/home/mint# fdisk -l
Disk /dev/loop0: 2.34 GiB, 2515390464 bytes, 4912872 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk /dev/nvme0n1: 238.47 GiB, 256060514304 bytes, 500118192 sectors
Disk model: SSSTC CL1-4D256
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: gpt
Disk identifier: 5AEAC324-E073-45E4-A1E5-7FFB0E9C35DB
Device Start End Sectors Size Type
/dev/nvme0n1p1 2048 534527 532480 260M EFI System
/dev/nvme0n1p2 534528 567295 32768 16M Microsoft reserved
/dev/nvme0n1p3 567296 498065776 497498481 237.2G Microsoft basic data
/dev/nvme0n1p4 498069504 500117503 2048000 1000M Windows recovery environment
Disk /dev/sdb: 14.32 GiB, 15376318464 bytes, 30031872 sectors
Disk model: Cruzer Blade
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: gpt
Disk identifier: 07896644-3E61-4841-B41A-CA3F44823CCE
Device Start End Sectors Size Type
/dev/sdb1 64 5228883 5228820 2.5G Microsoft basic data
/dev/sdb2 5228884 5237379 8496 4.1M EFI System
/dev/sdb3 5238784 30031808 24793025 11.8G Linux filesystem
The backup GPT table is corrupt, but the primary appears OK, so that will be used.
Disk /dev/sda: 234.38 GiB, 251658240000 bytes, 491520000 sectors
Disk model: SD/MMC/MS PRO
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: gpt
Disk identifier: 1D9ED2E0-08EC-4B50-BA77-FDDE180000F0
Device Start End Sectors Size Type
/dev/sda1 2048 1050623 1048576 512M EFI System
/dev/sda2 1050624 491517951 490467328 233.9G Linux filesystem
/dev/sda에서 mkdir.ext4를 실행한 후:
root@mint:/home/mint# mkfs.ext4 /dev/sda
mke2fs 1.46.5 (30-Dec-2021)
Found a gpt partition table in /dev/sda
Proceed anyway? (y,N) y
Creating filesystem with 61440000 4k blocks and 15360000 inodes
Filesystem UUID: 72493794-1b54-4809-9d60-d28eff016d6a
Superblock backups stored on blocks:
32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208,
4096000, 7962624, 11239424, 20480000, 23887872
Allocating group tables: done
Writing inode tables: done
Creating journal (262144 blocks): done
Writing superblocks and filesystem accounting information: done
나는 이것이 문제를 해결할 것이라고 생각했지만 이제는 나에게
root@mint:/home/mint# gdisk /dev/sda
GPT fdisk (gdisk) version 1.0.8
Caution: invalid backup GPT header, but valid main header; regenerating
backup header from main header.
Warning! One or more CRCs don't match. You should repair the disk!
Main header: OK
Backup header: ERROR
Main partition table: OK
Backup partition table: OK
Partition table scan:
MBR: protective
BSD: not present
APM: not present
GPT: damaged
****************************************************************************
Caution: Found protective or hybrid MBR and corrupt GPT. Using GPT, but disk
verification and recovery are STRONGLY recommended.
****************************************************************************
답변1
실행하면 mkfs.ext4 /dev/sda
대상 파티션이 아닌 디스크에 파일 시스템이 생성됩니다. 처음부터 시작하여 다음 위치에 비어 있는 새 GUID 파티션 테이블을 생성할 수 있습니다 dev/sda
.
- 달리기
gdisk /dev/sda
o
새로운 빈 GUID 파티션 테이블을 생성 하려면 누르세요.w
변경 사항을 디스크에 쓰려면 누르세요 .
Mint 설치 프로그램은 빈 디스크를 감지하고 필요한 파티션을 생성하고 포맷할 수 있도록 해줍니다.