The Linux Kernel and Device Drivers

Một phần của tài liệu the book of vmware - the complete guide to vmware workstation (2002) (Trang 106 - 110)

Chapter 6: Linux Guest Operating Systems

6.7 The Linux Kernel and Device Drivers

We’ve now talked about device files and how to use them, but haven’t mentioned much about the Linux kernel, which lies behind the device files. The kernel is the core of the operating system; in addition to managing processes, memory, and filesystems, it also contains all of the device drivers. You can configure and build by linking the drivers directly to the kernel (thus activating them immediately upon boot), or by creating a kernel module, to be inserted on demand into a running kernel. Most distributions compile critical drivers, such as IDE disk drivers, directly into the kernel and relegate everything, such as drivers for a sound card or filesystem types that aren’t used much, to modules.

Note Though it’s a fun process, configuring and compiling a kernel along with its modules is beyond the scope of this chapter. If you’re interested in this process, two places to look are the Linux

Kernel−HOWTO and the kernel chapter of Linux Problem Solver (No Starch Press, 2000). Moreover, it’s likely that your distribution already installed all of the drivers that VMware needs on your system.

They’re probably in modules, and they just need you to coax them to do what you want them to do.

6.7.1 Working with Kernel Modules

Before you get started with kernel modules, you should know which kernel version your system is running.

Type uname −r to determine this. If your version of Linux is an official release, the version number will be a three−part value,

such as 2.4.1. However, many distributions apply a number of patches to their kernels, giving them version numbers such as 2.2.18pre21 and 2.2.18−27.

You’ll find the actual kernel module files in the subdirectories under /lib/modules/version, where version is your kernel version. These files have a .o extension, to denote an object file.

Manually inserting a kernel module file into a currently running system is easy. For example, if you want to insert pcnet32.o, which contains the Ethernet driver that VMware knows how to talk to, use

modprobe pcnet32

Because modules may use parts of other kernel modules, modprobe looks at the depmod module dependency list and inserts any other necessary modules before the one you request.

Note To see the system’s active modules, run lsmod.

Normally, you don’t need to install kernel modules by hand. Instead, the kernel runs an automatic module loader. When you try to access a device for which the driver isn’t present, the loader tries to find a module for it and, if it succeeds, runs modprobe.

Because of the wide variety of PC hardware types, the module loader needs some hints about the specific machine that it’s running on, which you place in a configuration file called /etc/modules.conf. Although Linux distributions vary in how they generate this file, the format is the same.

We’ve already mentioned that the VMware Tools and dualconf.* scripts manipulate /etc/modules.conf; to master its use under VMware, there are two keywords you need to know about. The first is alias. For example, a line in /etc/modules.conf that reads

alias eth0 pcnet32

instructs the module loader that the device driver known as eth0 is in a module called pcnet32 on this system.

As mentioned before, this module contains an Ethernet driver that knows how to talk to VMware, so you’ll need this line in your /etc/modules.conf file if this driver isn’t compiled directly into your kernel.

The other important keyword is options, which specifies parameters for a particular module. For example, the sound module needs this line in /etc/modules.conf:

options sb io=0x220 irq=5 dma=1 dma16=5 mpu_io=0x330

Note Some distributions frown on modifying /etc/modules.conf directly, preferring that you go through some other interface. One of them is Debian; the scheme there is based on the update−modules program, where you add special entries in /etc/modutils/arch/i386. The update−modules program takes this information and combines it with other sources to create a new /etc/modules.conf file.

6.7.2 Linux Device Drivers for VMware Workstation

This section lists the driver names, modules, and /etc/modules.conf lines that Linux can use while running under VMware, as well as where to find the drivers in the kernel configuration (in case you’re compiling a custom kernel).

IDE Devices

Module names: ide, ide−disk, ide−cd.

Kernel configuration: Under Block Devices.

Notes: Because most real systems boot from an IDE disk, your kernel probably has IDE disk support compiled directly into it. However, the other drivers are likely to be in modules. The kernel autoloader is generally smart enough to figure out when to load them without help from modules.conf.

SCSI Support, SCSI Devices

Module names: scsi_mod, sd_mod, sr_mod, sg_mod, BusLogic.

modules.conf:

alias block−major−8 BusLogic options −k BusLogic

If SCSI disk support isn’t compiled directly into your kernel, use something like this instead:

alias block−major−8 myscsi probeall myscsi BusLogic sd options −k BusLogic

options −k sd

Kernel configuration: Under SCSI support SCSI disk support and in SCSI low−level drivers, BusLogic SCSI support. If you want SCSI CD−ROM, generic, and tape support, you’ll find drivers under SCSI support as well.

Notes: Red Hat 7’s kudzu system doesn’t get the modules.conf settings quite right. Also, if you remove the SCSI driver’s module (after loading it once), it won’t function again unless you reboot the machine, so make sure that you turn off autoclean (with options −k). This works under Red Hat 7.

Floppy Drives

Module name: floppy.

Kernel configuration: Under Block Devices Normal PC floppy disk support.

Notes: This driver is unlikely to be configured as a module; it is most likely configured directly in your distribution’s kernel.

Ethernet Interfaces

Module name: pcnet32.

modules.conf: Device can be eth0, eth1, and/or eth2:

alias eth0 pcnet32

Kernel configuration: Under Network device support Ethernet (10 or 100Mbit).

Notes: Enabling EISA, VLB, PCI, and onboard controllers brings up a number of other options; AMD PCnet32 (VLB and PCI) support is among them.

Serial Ports

Module name: serial.

Kernel configuration: Under Character devices − Standard/generic (dumb) serial support.

Notes: These usually work better when compiled directly into the kernel.

Parallel Ports

Module names: parport_probe, parport, parport_pc, lp (for printers), others.

modules.conf:

alias parport_lowlevel parport_pc

Kernel configuration: In three places: (1) under General Setup Parallel port support and PC−style hardware, (2) under Character devices Parallel printer support, and (3) various others under Block devices and SCSI support; in kernel version 2.4.0 and up, location (1) is Parallel port support under the main menu instead.

Notes: Because of the large number of dependencies in the modules, kernel configuration for parallel ports is a bit more complicated than for other drivers. Keep in mind that bidirectional devices (generally the block devices, such as Zip drives and similar devices) require bidirectional port support on the host operating system.

Sound

Module names: soundcore, sb, uart401, soundlow.

modules.conf:

alias char−major−14 sb

options sb io=0x220 irq=5 dma=1 dma16=5 mpu_io=0x330

Kernel configuration: Under Sound, enable Sound card support and OSS sound modules. Then choose Sound Blaster compatibles (SB16/32/64, ESS, Jazz16) support.

Notes: For various reasons, sound cards have always been the most frustrating to configure under Linux. For virtual machines, the process is remarkably straightforward.

USB Support

Kernel configuration: Under USB support, enable one of the UHCI drivers and any other devices you like.

The USB device filesystem is necessary for some USB utility programs such as lsusb. You may need to enable experimental kernel options to see all USB device drivers.

Notes: USB support is fairly new in Linux, so implementation details are more prone to change than those for other devices.

Mouse Support

Kernel configuration: For a PS/2−type mouse, under Character Devices Mice PS/2 mouse (aka

"auxiliary device") support. Serial mice are connected to serial ports and use that type of configuration.

Notes: Because the PS/2 mouse device is not available as a module, it’s compiled into every distribution’s default kernel.

Một phần của tài liệu the book of vmware - the complete guide to vmware workstation (2002) (Trang 106 - 110)

Tải bản đầy đủ (PDF)

(214 trang)