在安装 Fedora 14 之前加载第 3 方驱动程序

在安装 Fedora 14 之前加载第 3 方驱动程序

我的服务器配备了大多数 Linux 安装程序无法识别的 megaraid 控制器。我必须先加载它的驱动程序,然后才能继续安装。我知道如何使用 CentOS 来做到这一点,只需在提示“boot:”时输入“linux dd”,我就可以从 USB 闪存盘加载驱动程序。但是当谈到Fedora 14时,我似乎没有机会在安装之前加载驱动程序,所以它找不到硬盘:(这里有人有一些建议吗?

答案1

dd 代表 driverdisk,实际上在 fedora 上是 driverdisk。

http://docs.fedoraproject.org/en-US/Fedora/14/html/Installation_Guide/s1-kickstart2-options.html

> driverdisk <partition> --source=<url>
> --biospart=<biospart> [--type=<fstype>]
> 
>     *
>       <partition> — Partition containing the driver disk.
>     *
>       <url> — URL for the driver disk. NFS locations can be given in the form
> nfs:host:/path/to/img.
>     *
>       <biospart> — BIOS partition containing the driver disk (for
> example, 82p2).
>     *
>       --type= — File system type (for example, vfat or ext2).

您甚至可以提供网络资源:

driverdisk --source=ftp://path/to/dd.img
driverdisk --source=http://path/to/dd.img
driverdisk --source=nfs:host:/path/to/img

答案2

如果我没记错的话,boot:只有当您使用 Fedora 的 DVD 安装时您才会收到提示。 LiveCD 不给你这个选择。

相关内容