![Hay 4 SSD, pero solo aparece uno. ¿Por qué?](https://rvso.com/image/50594/Hay%204%20SSD%2C%20pero%20solo%20aparece%20uno.%20%C2%BFPor%20qu%C3%A9%3F.png)
Acabo de reemplazar los SSD
Hay 4 discos duros
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: 0xc4521435
Device Boot Start End Blocks Id System
/dev/sda1 1 29185 234428481 83 Linux
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: 0xc8c906e0
Device Boot Start End Blocks Id System
/dev/sdb1 1 29185 234428481 83 Linux
Disk /dev/sdd: 120.0 GB, 120034123776 bytes
255 heads, 63 sectors/track, 14593 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: 0x00061c96
Device Boot Start End Blocks Id System
/dev/sdd1 * 1 14 103424 83 Linux
Partition 1 does not end on cylinder boundary.
/dev/sdd2 14 536 4194304 82 Linux swap / Solaris
Partition 2 does not end on cylinder boundary.
/dev/sdd3 536 14594 112921600 83 Linux
Disk /dev/sdc: 250.1 GB, 250059350016 bytes
255 heads, 63 sectors/track, 30401 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: 0x4fa82c2a
Device Boot Start End Blocks Id System
/dev/sdc1 1 30401 244196001 83 Linux
root@host [/home]#
Pero si escribo df, solo aparece uno. Esto podría resultar problemático. ¿Debo abrir un nuevo ticket para esto?
root@host [/home]# df
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/sdd3 111148848 28170020 77332748 27% /
/usr/tmpDSK 1006872 18208 937516 2% /tmp
tmpfs 7990772 0 7990772 0% /dev/shm
Respuesta1
Es el único montado (?) No queda claro en la pregunta por qué espera que haya más de uno: los discos no se montan automáticamente, parece que lo instaló en SDD (que parece contener una partición del tamaño de /boot y su FS principal con intercambio).
Puedes intentarlo mkdir /mnt/temp
y mount /dev/sdc1 /mnt/temp
volver a df
intentarlo, a ver si te da más alegría.
Su /etc/fstab
es el lugar de referencia para saber qué espera montar el sistema y dónde.