이 콘텐츠는 선택한 언어로 제공되지 않습니다.
Appendix B. Using Red Hat Enterprise Linux packages
This section describes how to use software delivered as RPM packages for Red Hat Enterprise Linux.
To ensure the RPM packages for this product are available, you must first register your system.
B.1. Overview 링크 복사링크가 클립보드에 복사되었습니다!
A component such as a library or server often has multiple packages associated with it. You do not have to install them all. You can install only the ones you need.
The primary package typically has the simplest name, without additional qualifiers. This package provides all the required interfaces for using the component at program run time.
Packages with names ending in -devel
contain headers for C and C++ libraries. These are required at compile time to build programs that depend on this package.
Packages with names ending in -docs
contain documentation and example programs for the component.
For more information about using RPM packages, see one of the following resources:
B.2. Searching for packages 링크 복사링크가 클립보드에 복사되었습니다!
To search for packages, use the yum search
command. The search results include package names, which you can use as the value for <package>
in the other commands listed in this section.
yum search <keyword>...
$ yum search <keyword>...
B.3. Installing packages 링크 복사링크가 클립보드에 복사되었습니다!
To install packages, use the yum install
command.
sudo yum install <package>...
$ sudo yum install <package>...
B.4. Querying package information 링크 복사링크가 클립보드에 복사되었습니다!
To list the packages installed in your system, use the rpm -qa
command.
rpm -qa
$ rpm -qa
To get information about a particular package, use the rpm -qi
command.
rpm -qi <package>
$ rpm -qi <package>
To list all the files associated with a package, use the rpm -ql
command.
rpm -ql <package>
$ rpm -ql <package>