두 번째 SSD 드라이브를 /home2에 마운트해야 합니다. /home2 폴더를 만들었습니다. 이제 사용되지 않은 드라이브가 무엇인지 어떻게 알 수 있나요? 이것은 /dev/sda입니까 아니면 sdb입니까?
마운트 해제된 드라이브가 무엇인지 확인하려면 정확히 무엇을 찾아야 합니까?
[/]# cat /proc/mdstat
Personalities : [raid1]
md1 : active raid1 sdb2[1] sda2[0]
524224 blocks super 1.0 [2/2] [UU]
md0 : active raid1 sdb1[1] sda1[0]
16777088 blocks super 1.0 [2/2] [UU]
md2 : active raid1 sdb3[1] sda3[0]
217125312 blocks super 1.0 [2/2] [UU]
unused devices: <none>
df -h
Filesystem Size Used Avail Use% Mounted on
/dev/md2 204G 84G 111G 44% /
tmpfs 16G 0 16G 0% /dev/shm
/dev/md1 496M 53M 419M 12% /boot
/usr/tmpDSK 1.9G 94M 1.7G 6% /tmp
root@kas [~]# fdisk -l | grep '^Disk'
Disk /dev/sdb: 240.1 GB, 240057409536 bytes
Disk identifier: 0x0007b22f
Disk /dev/sda: 240.1 GB, 240057409536 bytes
Disk identifier: 0x000c0cf1
Disk /dev/md2: 222.3 GB, 222336319488 bytes
Disk identifier: 0x00000000
Disk /dev/md0: 17.2 GB, 17179738112 bytes
Disk identifier: 0x00000000
Disk /dev/md1: 536 MB, 536805376 bytes
Disk identifier: 0x00000000
root@kas [~]# fdisk -l
Disk /dev/sdb: 240.1 GB, 240057409536 bytes
255 heads, 63 sectors/track, 29185 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x0007b22f
Device Boot Start End Blocks Id System
/dev/sdb1 1 2089 16777216+ fd Linux raid autodetect
/dev/sdb2 2089 2155 524288+ fd Linux raid autodetect
/dev/sdb3 2155 29186 217125464+ fd Linux raid autodetect
Disk /dev/sda: 240.1 GB, 240057409536 bytes
255 heads, 63 sectors/track, 29185 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x000c0cf1
Device Boot Start End Blocks Id System
/dev/sda1 1 2089 16777216+ fd Linux raid autodetect
/dev/sda2 2089 2155 524288+ fd Linux raid autodetect
/dev/sda3 2155 29186 217125464+ fd Linux raid autodetect
Disk /dev/md2: 222.3 GB, 222336319488 bytes
2 heads, 4 sectors/track, 54281328 cylinders
Units = cylinders of 8 * 512 = 4096 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00000000
Disk /dev/md0: 17.2 GB, 17179738112 bytes
2 heads, 4 sectors/track, 4194272 cylinders
Units = cylinders of 8 * 512 = 4096 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00000000
Disk /dev/md1: 536 MB, 536805376 bytes
2 heads, 4 sectors/track, 131056 cylinders
Units = cylinders of 8 * 512 = 4096 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00000000
답변1
두 SSD 모두 3개의 RAID-1 파티션 전용입니다. 그들 중 누구도 여유 공간이 없습니다.
편집하다: 네, 그렇게 말했어요. 출력에는 df
설치된 것으로 표시됩니다 /dev/md[12]
( /dev/md0
스왑인 것으로 추측됩니다. /cat /proc/swaps
이를 확인하겠습니다). 그런 다음 이것이 및 로 구성된 RAID-1 cat /proc/mdstat
이며 여기서 N=0,1,2임을 알려줍니다 ./dev/mdN
/dev/sdaN+1
/dev/sdbN+1
출력에서는 fdisk
각 디스크가 3개의 RAID 자동 감지 파티션으로 완전히 채워져 있음을 보여줌으로써 이를 확인합니다.
답변2
이 df
명령은 어떤 드라이브가 어디에 마운트되어 있는지 알려줍니다.
답변3
또한 RAID 어레이의 개별 디스크를 식별하고 "sudo smartctl -a /dev/sd?"를 사용하여 동일한 디스크의 일련 번호를 찾아야 한다는 사실을 발견했습니다.
cat /proc/mdstat에서 알 수 있듯이 현재 sda 또는 sdb를 마운트 해제하지 않고 있으며 모든 장치에 [2/2] [UU]가 표시됩니다.
/home2에 이러한 디스크 중 하나를 사용하려면 RAID 어레이를 폐기해야 할 수 있습니다. 이것이 맞습니까?