GPT 디스크에 파티션을 마운트하려고하는데 다음 오류가 발생합니다.
$ sudo mount -t ext4 /dev/sda1 disk/
mount: special device /dev/sda1 does not exist
dmesg를 보면 / dev / sda에 오류가 표시되지 않습니다.
$ dmesg | grep sda
[ 1.367508] sd 0:0:0:0: [sda] 5860533168 512-byte logical blocks: (3.00 TB/2.72 TiB)
[ 1.367514] sd 0:0:0:0: [sda] 4096-byte physical blocks
[ 1.367607] sd 0:0:0:0: [sda] Write Protect is off
[ 1.367611] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 1.367654] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 1.367936] sda:
[ 1.392417] sd 0:0:0:0: [sda] Attached SCSI disk
fdisk는 GPT 파티션을보고합니다.
$ sudo fdisk -l /dev/sda
Disk /dev/sda: 3000.6 GB, 3000592982016 bytes
256 heads, 63 sectors/track, 363376 cylinders
Units = cylinders of 16128 * 512 = 8257536 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disk identifier: 0x00000000
Device Boot Start End Blocks Id System
/dev/sda1 1 45423 366283322+ ee GPT
Partition 1 does not start on physical sector boundary.
분할 실패 :
$ sudo parted /dev/sda print
Error: /dev/sda: unrecognised disk label
커널은 EFI를 지원하는 것 같습니다 ( Debian GNU / Linux 5.0.3 (Lenny)에서 EFI GPT 파티션 테이블이있는 디스크에 파티션을 마운트하는 방법 )
$ cat /boot/config-2.6.32-5-amd64 | grep EFI
CONFIG_EFI=y
CONFIG_FB_EFI=y
CONFIG_EFI_VARS=m
CONFIG_CACHEFILES=m
# CONFIG_CACHEFILES_DEBUG is not set
# CONFIG_CACHEFILES_HISTOGRAM is not set
CONFIG_EFI_PARTITION=y
이 GPT 파티션을 어떻게 마운트합니까?
편집 : 방금 다른 컴퓨터에 실패한 동일한 디스크를 연결했으며 장애없이 내용을 볼 수 있습니다. 원래 상자에 다시 넣으면 같은 문제가 발생합니다.