CentOS 9インストール前のパッケージの依存関係とスクリプトのクエリ

CentOS 9インストール前のパッケージの依存関係とスクリプトのクエリ

RPMパッケージをインストールする前に検索するにはどうすればよいですか?

yum info binを実行すると、基本的な概要が表示されます。

[user@localhost ~]$ yum info bind
Last metadata expiration check: 0:16:53 ago on Tue 06 Sep 2022 06:07:52 PM CDT.
Available Packages
Name         : bind
Epoch        : 32
Version      : 9.16.23
Release      : 4.el9
Architecture : x86_64
Size         : 504 k
Source       : bind-9.16.23-4.el9.src.rpm
Repository   : appstream
Summary      : The Berkeley Internet Name Domain (BIND) DNS (Domain Name System) server
URL          : https://www.isc.org/downloads/bind/
License      : MPLv2.0
Description  : BIND (Berkeley Internet Name Domain) is an implementation of the DNS
             : (Domain Name System) protocols. BIND includes a DNS server (named),
             : which resolves host names to IP addresses; a resolver library
             : (routines for applications to use when interfacing with DNS); and
             : tools for verifying that the DNS server is operating properly.

yum install bin を使用して、どの依存項目がインストールされるかを確認できます。

[user@localhost ~]$ sudo yum install bind
Last metadata expiration check: 0:07:38 ago on Tue 06 Sep 2022 06:18:56 PM CDT.
Dependencies resolved.
==========================================================================================================================================================================================================================================================================================
 Package                                                                  Architecture                                                  Version                                                                    Repository                                                        Size
==========================================================================================================================================================================================================================================================================================
Installing:
 bind                                                                     x86_64                                                        32:9.16.23-4.el9                                                           appstream                                                        504 k
Installing dependencies:
 bind-dnssec-doc                                                          noarch                                                        32:9.16.23-4.el9                                                           appstream                                                         47 k
 python3-bind                                                             noarch                                                        32:9.16.23-4.el9                                                           appstream                                                         69 k
Installing weak dependencies:
 bind-dnssec-utils                                                        x86_64                                                        32:9.16.23-4.el9                                                           appstream                                                        118 k

Transaction Summary
==========================================================================================================================================================================================================================================================================================
Install  4 Packages

しかし、rpmを介してインストールされる依存関係とスクリプトを照会する方法はありますか?例: rpm -q --scripts バインディング.x86_64 または rpm -ql バインディング.x86_64

[user@localhost ~]$ rpm -ql bind.x86_64
package bind.x86_64 is not installed

ベストアンサー1

人々はそれを使用してyumdownloaderパッケージを蒸すことができます。

# yum -y install yum-utils
# yumdownloader bind
# rpm -qp --scripts bind*.rpm

インストールを防ぐには、yum-utils次のような他のオプションを使用できます。

# yum --downloadonly install bind
# find /var/cache/yum -name bind\*

依存関係を確認する必要がある場合は、依存関係を下げる利点があります。

おすすめ記事