![Es gibt 4 SSDs, aber df hat nur eine aufgelistet. Warum?](https://rvso.com/image/50594/Es%20gibt%204%20SSDs%2C%20aber%20df%20hat%20nur%20eine%20aufgelistet.%20Warum%3F.png)
Ich habe gerade SSDs ausgetauscht
Es gibt 4 Festplatten
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]#
Wenn ich jedoch df eingebe, wird nur eines angezeigt. Das könnte problematisch sein. Soll ich dafür ein neues Ticket eröffnen?
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
Antwort1
Es ist das einzige, das gemountet ist (?) Aus der Frage geht nicht klar hervor, warum Sie erwarten, dass es mehr als eines gibt – Festplatten mounten sich nicht automatisch, es sieht so aus, als hätten Sie die Installation auf SDD durchgeführt (das eine Partition mit der Größe /boot und Ihr Haupt-FS mit Swap zu enthalten scheint).
Sie können es mkdir /mnt/temp
dann versuchen mount /dev/sdc1 /mnt/temp
und Ihren df
Befehl erneut ausführen, um zu sehen, ob es Ihnen mehr Freude bereitet.
Ihr /etc/fstab
ist die Anlaufstelle für das, was das System wo mounten soll.