rpmのインストール日時(2)

表題の通り。先日のとは違う方法で取得できた。知らなかったのでメモ。

■ 環境

  • CentOS 6.9

■ rpm

先日は”-i”オプションを使ったが、”–last“で取得できるようだ。`man`には下記のように記載されていた。

--last Orders the package listing by install time such that the latest packages are at the top.

先日と同様、”openssl”のパッケージで確認してみる。

$ rpm -q --last openssl
openssl-1.0.1e-57.el6.x86_64                  2017年10月17日 19時20分10秒
$

先日の方法にて再度確認。

$ rpm -qi openssl
Name        : openssl                      Relocations: (not relocatable)
Version     : 1.0.1e                            Vendor: CentOS
Release     : 57.el6                        Build Date: 2017年03月23日 06時47分09秒
Install Date: 2017年10月25日 14時24分20秒      Build Host: c1bm.rdu2.centos.org
Group       : System Environment/Libraries   Source RPM: openssl-1.0.1e-57.el6.src.rpm
Size        : 4248338                          License: OpenSSL
Signature   : RSA/SHA1, 2017年03月24日 00時04分09秒, Key ID 0946fca2c105b9de
Packager    : CentOS BuildSystem <http://bugs.centos.org>;
URL         : http://www.openssl.org/
Summary     : A general purpose cryptography library with TLS implementation
Description :
The OpenSSL toolkit provides support for secure communications between
machines. OpenSSL includes a certificate management tool and shared
libraries which provide various cryptographic algorithms and
protocols.
$

同じ日時が取得できている。

以上。

■ 関連

rpmのインストール日時