在Linux下查找RAID控制器

在Linux下查找RAID控制器

我一直在尝试寻找适合的 RAID 控制器。我需要找到与 RAID 控制器配合使用的正确驱动程序。

我可以向你保证我的服务器有一个 raid 系统,这里是 df-h 的输出

/dev/md1              4.7G  140M  4.6G   3% /
tmpfs                1015M     0 1015M   0% /lib/init/rw
udev                   10M  100K   10M   1% /dev
tmpfs                1015M     0 1015M   0% /dev/shm
/dev/md0              134M   44M   90M  33% /boot
/dev/md5              209G   97G  113G  47% /home
/dev/md4              1.9G   33M  1.9G   2% /tmp
/dev/md2              9.4G  605M  8.8G   7% /usr
/dev/md3              4.7G  3.2G  1.5G  68% /var

现在我已在线阅读,我应该正常地看到该命令的驱动程序的输出:

lspci | grep -i 袭击

问题是,提示没有返回任何东西。

所以现在我很难弄清楚我的存储系统驱动程序是什么。

仅供参考,以下是 lscpi 的输出

 lspci
00:00.0 Host bridge: Intel Corporation E7320 Memory Controller Hub (rev 0c)
00:02.0 PCI bridge: Intel Corporation E7525/E7520/E7320 PCI Express Port A (rev 0c)
00:03.0 PCI bridge: Intel Corporation E7525/E7520/E7320 PCI Express Port A1 (rev 0c)
00:1c.0 PCI bridge: Intel Corporation 6300ESB 64-bit PCI-X Bridge (rev 02)
00:1d.0 USB Controller: Intel Corporation 6300ESB USB Universal Host Controller (rev 02)
00:1d.1 USB Controller: Intel Corporation 6300ESB USB Universal Host Controller (rev 02)
00:1d.4 System peripheral: Intel Corporation 6300ESB Watchdog Timer (rev 02)
00:1d.5 PIC: Intel Corporation 6300ESB I/O Advanced Programmable Interrupt Controller (rev 02)
00:1d.7 USB Controller: Intel Corporation 6300ESB USB2 Enhanced Host Controller (rev 02)
00:1e.0 PCI bridge: Intel Corporation 82801 PCI Bridge (rev 0a)
00:1f.0 ISA bridge: Intel Corporation 6300ESB LPC Interface Controller (rev 02)
00:1f.2 IDE interface: Intel Corporation 6300ESB SATA Storage Controller (rev 02)
00:1f.3 SMBus: Intel Corporation 6300ESB SMBus Controller (rev 02)
03:03.0 Ethernet controller: Intel Corporation 82541GI/PI Gigabit Ethernet Controller
03:04.0 Ethernet controller: Intel Corporation 82541GI/PI Gigabit Ethernet Controller
04:05.0 VGA compatible controller: ATI Technologies Inc Rage XL (rev 27)

非常感谢,任何帮助都将不胜感激!

编辑:cat /proc/mdstat 的结果

Personalities : [raid1]
md6 : active raid1 sda2[0] sdb2[1]
      3911744 blocks [2/2] [UU]

md0 : active raid1 sda1[0]
      136448 blocks [2/1] [U_]

md2 : active raid1 sda5[0] sdb5[1]
      9767424 blocks [2/2] [UU]

md3 : active raid1 sda6[0] sdb6[1]
      4883648 blocks [2/2] [UU]

md4 : active raid1 sda7[0] sdb7[1]
      1951744 blocks [2/2] [UU]

md5 : active raid1 sda8[0] sdb8[1]
      218652544 blocks [2/2] [UU]

md1 : active raid1 sda3[0] sdb3[1]
      4883648 blocks [2/2] [UU]

unused devices: <none>

答案1

您正在使用软件RAID——没有硬件控制器支持该 RAID。软件 RAID 在 Linux 内核中实现。

您可以通过查看来确认其状态/proc/mdstat

cat /proc/mdstat

相关内容