I have a system ( Debian Linux 8 ) with 9 Hard Disks attached to it, but webmin shows up just 8 of them .
This is the outout of the lsscsi command :
root@backup:~# lsscsi
[0:0:0:0] disk ATA WDC WD20EADS-00S 5G04 /dev/sda
[1:0:0:0] disk ATA WDC WD20EADS-00S 5G04 /dev/sdb
[2:0:0:0] disk ATA WDC WD20EADS-00S 5G04 /dev/sdc
[3:0:0:0] disk ATA WDC WD20EADS-00S 5G04 /dev/sdd
[4:0:0:0] disk ATA WDC WD20EZRX-00D 0A80 /dev/sde
[5:0:0:0] disk ATA WDC WD20EZRX-00D 0A80 /dev/sdf
[6:0:0:0] disk ATA WDC WD3200AAJS-0 3E01 /dev/sdg
[7:0:0:0] disk ATA WDC WD20EARS-00J 0A80 /dev/sdh
[8:0:0:0] disk ATA WDC WD20EZRX-00D 0A80 /dev/sdi
[10:0:0:0] cd/dvd HL-DT-ST BD-RE GGW-H20L YL05 /dev/sr0
root@backup:~#
Attached goes the screen of webmin in the same system :
Do the disks after the 8th show up in the /proc/partitions file?
This file have zero bytes .
attached screengrab
It's a special file that appears to be zero length, but isn't really. You can see the contents by running
cat /proc/partitions
this is the output :
root@backup:~# cat /proc/partitions
major minor #blocks name
8 0 1953514584 sda
8 1 1953505280 sda1
8 9 8192 sda9
8 16 1953514584 sdb
8 17 1953505280 sdb1
8 25 8192 sdb9
8 32 1953514584 sdc
8 33 1953505280 sdc1
8 41 8192 sdc9
8 48 1953514584 sdd
8 49 1953505280 sdd1
8 57 8192 sdd9
8 80 1953514584 sdf
8 81 1953505280 sdf1
8 89 8192 sdf9
8 112 1953514584 sdh
8 113 1953505280 sdh1
8 121 8192 sdh9
8 96 312571224 sdg
8 97 3905536 sdg1
8 98 48828416 sdg2
8 128 1953514584 sdi
8 129 1953505280 sdi1
8 137 8192 sdi9
11 0 1048575 sr0
this is the content of /dev/
root@backup:/dev# cd /dev
root@backup:/dev# ls | grep sd
sda
sda1
sda9
sdb
sdb1
sdb9
sdc
sdc1
sdc9
sdd
sdd1
sdd9
sde
sde1
sde9
sdf
sdf1
sdf9
sdg
sdg1
sdg2
sdh
sdh1
sdh9
sdi
sdi1
sdi9
Last edit: Fábio Rabelo de Deus 2016-08-31
It looks like
/proc/partitions
(which is Webmin's source of which disks exist) is missing some, like/dev/sde
. That explains why they aren't showing up.