Hi,
I'm totally unfamiliar with your hardware, and I don't know the serveraid program. But...
- When adding a new disk, I would not expect new space to appear in raid arrays. I think LVM needs to be used for that
- I'm a bit confused about the raid part too. You say you have two physical disks. fdisk -l lists two disks. I'm not sure if you even have raid.
- I would expect a new physical volume (/dev/sdc or somesuch) to appear
- fdisk -l isn't showing all disks on my system either, I don't know why
- Apparently, fdisk -l consults /proc/partitions, which correctly lists all my disks. Try
Code:
grep disc /proc/partitions
- Alternatively, try
Code:
less /var/log/messages
and try to locate the kernel messages that detect the disc. Search for sda for example. My log says:
Code:
Nov 6 13:41:26 fuzzy kernel: hda: attached ide-disk driver.
Nov 6 13:41:26 fuzzy kernel: hda: 40020624 sectors (20491 MB) w/2048KiB Cache, CHS=39703/16/63, UDMA(33)
Nov 6 13:41:26 fuzzy kernel: hde: attached ide-disk driver.
Nov 6 13:41:26 fuzzy kernel: hde: 234441648 sectors (120034 MB) w/8192KiB Cache, CHS=14593/255/63, UDMA(100)
Nov 6 13:41:26 fuzzy kernel: hdf: attached ide-disk driver.
Nov 6 13:41:26 fuzzy kernel: hdf: 234441648 sectors (120034 MB) w/8192KiB Cache, CHS=14593/255/63, UDMA(100)
Nov 6 13:41:26 fuzzy kernel: hdg: attached ide-disk driver.
Nov 6 13:41:26 fuzzy kernel: hdg: 234441648 sectors (120034 MB) w/8192KiB Cache, CHS=14593/255/63, UDMA(100)
Nov 6 13:41:26 fuzzy kernel: hdh: attached ide-disk driver.
Nov 6 13:41:26 fuzzy kernel: hdh: 320173056 sectors (163929 MB) w/8192KiB Cache, CHS=19929/255/63, UDMA(100)
Oh.... Reading manpages usually provides quick hints (like /proc/partitions, above). Very usefull, especally in case of
urgent questions.
Groetjes,
Kees-Jan