HW RAID 10 및 RAID 내의 특정 파티션 마운트

HW RAID 10 및 RAID 내의 특정 파티션 마운트

Centos 7에 RAID 10(GPT 형식)을 설치하고 일부 데이터를 특정 파티션으로 이동하려고 합니다. 아래에는 제가 테스트한 모든 방법을 게시했지만 그 중 아무 것도 작동하지 않았습니다. 내가 무엇을 놓치고 있나요? 내가 이루고 싶은 것을 어떻게 성취해야 할까요? RAID는 Intel 컨트롤러에 있고 2개의 파티션 중 하나에 Windows가 설치되어 있고 다른 파티션에는 데이터가 포함되어 있으므로 다시 포맷하고 싶지 않습니다.

[root@localhost ~]# blkid
/dev/mapper/centos-root: UUID="19e4fc26-7311-4c75-b742-83885e2c71cb" TYPE="xfs"
/dev/sde3: UUID="0GpcBI-AY6Z-EdQF-7IjY-emDo-6GLe-XJq0nw" TYPE="LVM2_member" PARTUUID="44ac6033-1e04-4420-9ae0-48973e54d2db"
/dev/sde2: UUID="413ac650-6040-4c54-be78-d5803f910fcf" TYPE="xfs" PARTUUID="9c694c74-8133-426d-a201-e800db8725a2"
/dev/sde1: SEC_TYPE="msdos" UUID="82C8-E6C7" TYPE="vfat" PARTLABEL="EFI System Partition" PARTUUID="861f6846-492d-4274-9df4-1047a0b1f5c4"
/dev/mapper/centos-swap: UUID="9ac50753-737f-49f4-8fe7-27572dcb9564" TYPE="swap"
/dev/sdd: TYPE="isw_raid_member"
/dev/sdc: TYPE="isw_raid_member"
/dev/sdb: TYPE="isw_raid_member"
/dev/sda: TYPE="isw_raid_member"

쿠로코위의 결과를 표시합니다. 아래에서 볼 수 있습니다fdisk -l

Disk /dev/sdd: 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 /dev/sdc: 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 /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: dos
Disk identifier: 0x36488a5c

   Device Boot      Start         End      Blocks   Id  System
/dev/sdb1               1  4294967295  2147483647+  ee  GPT
Partition 1 does not start on physical sector boundary.

Disk /dev/sda: 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: dos
Disk identifier: 0x36488a5c

Device Boot      Start         End      Blocks   Id  System
/dev/sda1               1  4294967295  2147483647+  ee  GPT
Partition 1 does not start on physical sector boundary.
WARNING: fdisk GPT support is currently new, and therefore in an experimental phase. Use at your own discretion.

/dev/sdb1 장치를 마운트하려고 하면 다음 오류가 발생합니다.

[root@localhost ~]# mount /dev/sdb1 /mnt/raid10_1/
mount: special device /dev/sdb1 does not exist

다음을 시도하면 동일한 오류가 발생합니다.

[root@localhost ~]# mount -t ntfs-3g /dev/sdb1 /mnt/raid10_1/
ntfs-3g: Failed to access volume '/dev/sdb1': No such file or directory

ntfs-3g를 사용하여 마운트하려고 하면 "볼륨에 액세스할 수 없습니다." 오류가 발생합니다.

[root@localhost ~]# ntfs-3g -o rw /dev/sdb1 /mnt/raid10_1/
ntfs-3g: Failed to access volume '/dev/sdb1': No such file or directory

관련 정보