home | O'Reilly's CD bookshelfs | FreeBSD | Linux | Cisco | Cisco Exam  


Previous SectionNext Section

8.1 The Package Management Tool

Red Hat Linux 8.0 features a new package management tool that's much easier to use than GnomeRPM, the tool included in previous versions of Red Hat Linux. To launch the package management tool, choose System Settings Packages from the GNOME or KDE menu. Only the root user can manipulate packages. If you're not logged in as the root user, the tool helpfully prompts you for the root user's password. The tool checks the status of install packages, as shown in Figure 8-2. This process may require a minute or two. Then, the Add or Remove Packages window appears, as shown in Figure 8-3.

Figure 8-2. The package management tool
figs/rh3_0802.gif
Figure 8-3. The Add or Remove Packages window
figs/rh3_0803.gif

8.1.1 Installing Package Groups and Packages

To specify that a package group should be installed, select the checkbox next to the name of an uninstalled package group. In Figure 8-3, the Editors package group is not installed, as indicated by the unchecked checkbox to the left of the package group's name. By enabling the checkbox, you can specify that you want to install the package group. Installation does not begin until you click the Update button.

Most package groups contain optional packages that you can install or omit, according to your preference. The numbers to the right of the package group name indicate how many of the optional packages are installed. If you've just specified that a package group should be installed, the numbers indicate how many of the optional packages will be installed when you click the Update button. For example, in Figure 8-3, the 0/3 associated with the Editors package group indicates that none of the three associated packages is currently installed. If you enable the checkbox associated with the Editors package group, the numbers immediately change to 2/3, meaning that two of the three associated packages will be installed when you click the Update button.

To learn more about the optional packages associated with a package group, click the Details link. The Package Details window appears, as shown in Figure 8-4. This window provides checkboxes that you can use to specify which optional packages you want installed. If you can't see the list of package names, expand the tree by clicking the triangle next to the text Extra Packages. When you're done viewing the package details, close the window by clicking Close. You can then install the selected packages by clicking Update. The package management tool will prompt you to insert the appropriate installation CD, in necessary. To close the Add or Remove Packages window without installing or removing any packages, click the Quit button.

The package management tool only installs official Red Hat Linux packages that are distributed on the installation media. However, you can use the rpm command to install packages from other sources, as described later in this chapter.

Figure 8-4. The Package Details window
figs/rh3_0804.gif

8.1.2 Removing Package Groups and Packages

You can also delete package groups and packages by using the package management tool. To remove a package group, disable the checkbox associated with the package group. To remove a package, open the Package Details window and disable the checkbox associated with the package. No changes are made until you click the Update button of the Add or Remove Packages window.

You can't use the package management tool to remove the package groups for the X Window System, GNOME desktop environment, or KDE desktop environment. Neither can you use the package management tool to delete standard packages associated with a package group. These restrictions protect you against unintended deletion of packages necessary for system operation. If, however, you do want to delete one or more such packages, you can do so using the rpm command. If you do use the rpm command to remove packages, be sure you avoid removing packages necessary for system operation.

8.1.3 Installing Packages from the Hard Disk

If you have several free gigabytes of disk storage, you may prefer to copy the Red Hat Linux installation media to your hard disk. Doing so avoids the need to insert CDs when installing packages.

To set up your system for installing packages from the hard disk, open a terminal window, become the root user, and issue the following command to create the directory /redhat-tree/RedHat:

mkdir -p /redhat-tree/RedHat

The -p flag enables you to create the directory and its parent directory in a single command. Without the flag, the command will fail because the /redhat-tree directory does not exist.

Next, mount installation CD 1 and copy the contents of the RedHat directory (/mnt/cdrom/RedHat) to the new directory:

cp -a /mnt/cdrom/RedHat/* /redhat-tree/RedHat

Finally, copy the files from installation CD 2 and CD 3 to the same location.

You can create the directories and copy the files using a file manager, if you prefer.

To install packages, launch the package management tool by issuing the command:

redhat-config-packages --tree=/redhat-tree

The tool will no longer prompt you to insert a CD; instead, it will obtain package files from the /redhat-tree directory. To avoid typing this command to install packages, you can create a panel launcher or menu item, as explained in Chapter 5 and Chapter 6.

    Previous SectionNext Section