1. linux系统怎么加载raid驱动
一般情况想常用的服务器,ibm hp dell等,linux系统都会内置raid卡允动的,不需要自己安装驱动,至少我是很少碰见要装驱动的情况。如果发现安装时认不到硬盘。可以按照以下官方说明来安装驱动。有问题可以在上班时间HI我。都在线。
RHEL5, unlike previous RHEL version, requires additional steps for installing the OS onto an Intel(R) Embedded Server RAID Technology volume.
1) Create a RAID array using the Intel Embedded Server RAID Technology II RAID BIOS Configuration Utility.
2) Boot your system using RHEL disc one.
3) At boot prompt type “linux nostorage”
4) Proceed with the installation and you will see a screen which provides you with ?Add device? button.
5) Click “Add Device”, a list of all drivers will appear
6) Press F2 to select driver from floppy
7) Insert the floppy with the Installer DUD image
8 ) Select device that corresponds to the floppy drive (sda in case of USB floppy)
9) After the driver is loaded the list of all drivers will appear again
10) Scroll down the driver list and select. Update megaide driver? in the list
11) Click OK
12) The driver will be loaded and the list of detected devices will appear
13) Click Done
14) Complete installation with RHEL CD
望采纳
2. 装linux系统怎么加载RAID驱动,我的硬盘做了RAID5,驱动已经正确装在了USB软盘上面,请哪位高手指导下!
1.硬件RAID分板载的和独立RAID卡的,如果是板载集成的,需要在BIOS里设置开启RAID选项,默认设置应该就是开启的。
2.如果是独立的RAID卡,需要在BIOS里设置关闭板载RAID选项。然后开机的时候有提示进入RAID卡,进入里面设置,一般都是RAID 1,做好RAID以后,就可以安装系统了。
3.安装linux的时候,需要加载RAID驱动,一般是把RAID驱动放在软驱里,在安装linux,加载第三方驱动时进行选择,如果linux安装程序发现了硬盘,那说明RAID没有问题,然后就是和正常安装一样了。
3. linux系统中怎么驱动U盘
1、插入U盘。
2、输入 fdisk -l /dev/sda 查看输出结果例如:
3、看了上面的输出就知道U盘所在的设备了,/dev/sdb1,接着便是挂载了,假设将U盘挂载到/mnt/usb目录中,就是
mount -t msdos /dev/sdb1 /mnt/usb
如果是fat16就使用下面的命令
mount -t msdos /dev/sdb1 /mnt/usb
如果是fat32
mount -t vfat /dev/sdb1 /mnt/usb
如果是ext2格式,就用命令:
mount -t ext2 /dev/sda1 /mnt/usb
4、打开/mnt/usb 就可以看到U盘里的东西了!
cd /mnt/usb
5、卸载命令则为:umount /mnt/usb。
需要注意的是,当执行完这个命令后,U盘上的指示灯可能仍然亮着,这不是卸载失败。Linux对U盘的管理是内核模块式,只要usb设备的内核模块没有移除,卸载完后指示灯还是应该发亮。