480GB SSD가 있고 현재 256MB EFI 파티션, 16GB SWAP 및 40GB CentOS 7 파티션이 있습니다. lshw
아래 세부 정보를 참조하세요. 드라이브에 남은 400GB의 사용되지 않은 공간을 iSCSI 대상으로 사용하고 싶습니다. 시스템에는 /dev/sda1, /dev/sda2 및 /dev/sda3만 있고 /dev/sda4는 SSD의 사용 가능한 400GB 디스크 공간에 매핑되지 않습니다.
/dev/sda4를 추가하고 디스크의 사용되지 않는 400DB에 매핑하여 iSCSI 대상으로 사용할 수 있도록 하려면 어떻게 해야 합니까? 저는 CentOS 7을 사용하고 있습니다.
*-scsi
physical id: 1
logical name: scsi3
capabilities: emulated
*-disk
description: ATA Disk
product: Crucial_CT480M50
physical id: 0.0.0
bus info: scsi@3:0.0.0
logical name: /dev/sda
version: MU03
serial: 13440956E89D
size: 447GiB (480GB)
capabilities: gpt-1.00 partitioned partitioned:gpt
configuration: ansiversion=5 guid=ab9704e2-9162-4c08-a759-956ad6a2f8f1 logicalsectorsize=512 sectorsize=4096
*-volume:0 UNCLAIMED
description: Windows FAT volume
vendor: mkfs.fat
physical id: 1
bus info: scsi@3:0.0.0,1
version: FAT16
serial: fa26-fbee
size: 255MiB
capacity: 255MiB
capabilities: boot fat initialized
configuration: FATs=2 filesystem=fat name=EFI System Partition
*-volume:1
description: Linux swap volume
vendor: Linux
physical id: 2
bus info: scsi@3:0.0.0,2
logical name: /dev/sda2
version: 1
serial: c2b0907a-8337-4f32-b1e9-9affe6927264
size: 15GiB
capacity: 15GiB
capabilities: nofs swap initialized
configuration: filesystem=swap pagesize=4095
*-volume:2
description: data partition
vendor: Windows
physical id: 3
bus info: scsi@3:0.0.0,3
logical name: /dev/sda3
logical name: /
serial: f7efca38-7631-4a20-ae0a-04942971d5ba
capacity: 39GiB
configuration: mount.fstype=xfs mount.options=rw,seclabel,relatime,attr2,inode64,noquota state=mounted
fdisk -l의 출력은 다음과 같습니다.
fdisk -l /dev/sda
WARNING: fdisk GPT support is currently new, and therefore in an experimental phase. Use at your own discretion.
Disk /dev/sda: 480.1 GB, 480103981056 bytes, 937703088 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 526335 256M EFI System EFI System Partition
2 526336 33294335 15.6G Linux swap
3 33294336 115214335 39.1G Microsoft basic
답변1
첫 번째 단계는 파티션을 만드는 것입니다. /dev
여유 공간은 파티션이 아닌 여유 공간이므로 항목이 없습니다 .
이를 사용하여 파티션을 만들 수 fdisk
있습니다. 을 실행 fdisk /dev/sda
한 다음 n
명령을 입력하고 사용 가능한 공간을 포함하는 파티션을 만듭니다. 새 파티션 테이블이 만족스러우면 명령을 입력하여 w
디스크에 씁니다.
partprobe /dev/sda
커널이 파티션 테이블을 다시 읽도록 하려면 실행해야 할 수도 있습니다 .
/dev/sda4
이제 iSCSI 구성에 추가할 수 있습니다 .