40.11. Finding and Installing RPM Packaged SoftwareGo to http://examples.oreilly.com/upt3 for more information on: rpm A popular tool used to find and install software packages -- particularly in Linux -- is RPM (at http://www.rpm.org/). In addition to working with Linux, RPM also works with Solaris, HP-UX, FreeBSD, NetBSD, and other systems. To use RPM to install software, just type the following command: rpm -i application.rpm The -i option flags RPM to install the package. To uninstall the application, use: rpm -e application.rpm To upgrade a package, use the -U option: rpm -U application.rpm Copyright © 2003 O'Reilly & Associates. All rights reserved. |
|