Updating drivers during installation
This section describes how to complete a driver update during the CentOS installation process.
This is an optional step of the installation process. CentOS Project recommends that you do not perform a driver update unless it is necessary. |
Overview
CentOS supports drivers for many hardware devices but some newly-released drivers may not be supported. A driver update should only be performed if an unsupported driver prevents the installation from completing. Updating drivers during installation is typically only required to support a particular configuration. For example, installing drivers for a storage adapter card that provides access to your system’s storage devices.
Driver update disks may disable conflicting kernel drivers. In rare cases, unloading a kernel module may cause installation errors. |
Types of driver update
Your hardware vendor or a trusted third party provides the driver update as an ISO image file. Once you receive the ISO image file, choose the type of driver update.
- Automatic
-
The recommended driver update method; a storage device (including a CD, DVD, or USB flash drive) labeled
OEMDRV
is physically connected to the system. If theOEMDRV
storage device is present when the installation starts, it is treated as a driver update disk, and the installation program automatically loads its drivers. - Assisted
-
The installation program prompts you to locate a driver update. You can use any local storage device with a label other than
OEMDRV
. Theinst.dd
boot option is specified when starting the installation. If you use this option without any parameters, the installation program displays all of the storage devices connected to the system, and prompts you to select a device that contains a driver update. - Manual
-
Manually specify a path to a driver update image or an RPM package. You can use any local storage device with a label other than
OEMDRV
, or a network location accessible from the installation system. Theinst.dd=location
boot option is specified when starting the installation, where location is the path to a driver update disk or ISO image. When you specify this option, the installation program attempts to load any driver updates found at the specified location. With manual driver updates, you can specify local storage devices, or a network location (HTTP, HTTPS or FTP server).
|
On UEFI systems with the Secure Boot technology enabled, all drivers must be signed with a valid certificate. CentOS drivers are signed by one of CentOS Project’s private keys and authenticated by its corresponding public key in the kernel. If you load additional, separate drivers, verify that they are signed.
Preparing a driver update
This procedure describes how to prepare a driver update on a CD and DVD.
Prerequisites
-
You received the driver update ISO image from your hardware vendor, or a trusted third-party vendor.
-
You burned the driver update ISO image to a CD or DVD.
If only a single ISO image file ending in |
Procedure
-
Insert the driver update CD or DVD into your system’s CD/DVD drive, and browse it using the system’s file manager tool.
-
Verify that a single file
rhdd3
is available.rhdd3
is a signature file that contains the driver description and a directory namedrpms
, which contains the RPM packages with the actual drivers for various architectures.
Performing an automatic driver update
This procedure describes how to perform an automatic driver update during installation.
Prerequisites
-
You have placed the driver update image on a standard disk partition with an
OEMDRV
label or burnt theOEMDRV
driver update image to a CD or DVD. Advanced storage, such as RAID or LVM volumes, may not be accessible during the driver update process. -
You have connected a block device with an
OEMDRV
volume label to your system, or inserted the prepared CD or DVD into your system’s CD/DVD drive before starting the installation process.
Procedure
-
Once you have completed the prerequisite steps, the drivers are automatically loaded when the installation program starts, and installed on the system during the installation process.
Performing an assisted driver update
This procedure describes how to perform an assisted driver update during installation.
Prerequisite
You have connected a block device without an OEMDRV
volume label to your system and copied the driver disk image to this device, or you have prepared a driver update CD or DVD and inserted it into your system’s CD/DVD drive before starting the installation process.
If you burned an ISO image file to a CD or DVD but it does not have the |
Procedure
-
From the boot menu window, press the Tab key on your keyboard to display the boot command line.
-
Append the
inst.dd
boot option to the command line and press Enter to execute the boot process. -
From the menu, select a local disk partition or a CD or DVD device. The installation program scans for ISO files, or driver update RPM packages.
-
Optional: Select the driver update ISO file.
This step is not required if the selected device or partition contains driver update RPM packages rather than an ISO image file, for example, an optical drive containing a driver update CD or DVD.
-
Select the required drivers.
-
Use the number keys on your keyboard to toggle the driver selection.
-
Press c to install the selected driver. The selected driver is loaded and the installation process starts.
-
Performing a manual driver update
This procedure describes how to perform a manual driver update during installation.
Prerequisite
Place the driver update ISO image file on a USB flash drive or a web server, and connect it to your computer.
Procedure
-
From the boot menu window, press the Tab key on your keyboard to display the boot command line.
-
Append the
inst.dd=location
boot option to the command line, where location is a path to the driver update. Typically, the image file is located on a web server, for example, http://server.example.com/dd.iso, or on a USB flash drive, for example,/dev/sdb1
. It is also possible to specify an RPM package containing the driver update, for example http://server.example.com/dd.rpm. -
Press Enter to execute the boot process. The drivers available at the specified location are automatically loaded and the installation process starts.
Additional resources
-
For more information about the
inst.dd
boot option, see the upstream inst.dd boot option content. -
For more information about all boot options, see the upstream Boot Options content.
Disabling a driver
This procedure describes how to disable a malfunctioning driver.
Prerequisites
-
You have booted the installation program boot menu.
Procedure
-
From the boot menu, press the Tab key on your keyboard to display the boot command line.
-
Append the
modprobe.blacklist=driver_name
boot option to the command line. -
Replace driver_name with the name of the driver or drivers you want to disable, for example:
modprobe.blacklist=ahci
Drivers disabled using the
modprobe.blacklist=
boot option remain disabled on the installed system and appear in the/etc/modprobe.d/anaconda-blacklist.conf
file. -
Press Enter to execute the boot process.