< Day Day Up > |
Recipe 2.2. Installing RPMs2.2.1 ProblemYou need to know how to install software packages on Red Hat and Red Hat-type systems. 2.2.2 SolutionUse RPM, the Package Manager. Red Hat installation command syntax looks like this: # rpm -i packagename For example, the following command installs the drawing program Tuxpaint. -v adds verbose feedback, and -h draws progress hashmarks: # rpm -ivh tuxpaint-9.13-1.i386.rpm
Preparing...########################### [100%]
1. tuxpaint ######################## [100%] To test the installation first, without installing anything, use: # rpm -ivh —test tuxpaint-9.13-1.i386.rpm Preparing...########################### [100%] # 2.2.3 DiscussionRPM hell, or getting caught in an endless chain of unresolved dependencies, is the most common RPM problem. Here are some ways to prevent it:
2.2.4 See Also
|
< Day Day Up > |