查詢待安裝的 rpm包

2021-09-24 09:04:44 字數 2364 閱讀 7583

查詢待安裝的.rpm包

 問題

查詢光碟中的 lynx 軟體包的用途、安裝清單

查詢光碟中的 wireshark 軟體包的用途、安裝清單

 方案

注意在查詢未安裝的.rpm包資訊時,提供的命令引數應該是準確的包檔案路徑,僅指定軟體名是不行的。指定檔案路徑時,多利用tab鍵補全。提前將rhel6系統光碟掛載到/media目錄,以便使用相關包檔案。

 步驟

實現此案例需要按照如下步驟進行。

步驟一:查詢光碟中的 lynx 軟體包的用途、安裝清單

首先將光碟裝置手動掛載到/media目錄,進行查詢操作。

命令操作如下所示:

[root@localhost ~]# umount /dev/cdrom

[root@localhost ~]# mount /dev/cdrom /media/

mount: block device /dev/sr0 is write-protected, mounting read-only

[root@localhost ~]# mount | tail -1

/dev/sr0 on /media type iso9660 (ro)

[root@localhost ~]# rpm -qpi /media/packages/lynx-2.8.6-27.el6.x86_64.rpm

name : lynx relocations: (not relocatable)

version : 2.8.6 vendor: red hat, inc.

release : 27.el6 build date: 2023年05月14日 星期五 23時06分49秒

install date: (not installed) build host: x86-006.build.bos.redhat.com

url :

summary : a text-based web browser

description :

lynx is a text-based web browser. lynx does not display any images,

but it does support frames, tables, and most other html tags. one

advantage lynx has over graphical browsers is speed; lynx starts and

exits quickly and swiftly displays web pages.

[root@localhost ~]# rpm -qpl /media/packages/lynx-2.8.6-27.el6.x86_64.rpm

……步驟二:查詢光碟中的 wireshark 軟體包的用途、安裝清單

命令操作如下所示:

[root@localhost ~]# rpm -qpi /media/packages/wireshark-1.8.10-4.el6.x86_64.rpm

warning: /media/packages/wireshark-1.8.10-4.el6.x86_64.rpm: header v3 rsa/sha256 signature, key id fd431d51: nokey

name : wireshark relocations: (not relocatable)

version : 1.8.10 vendor: red hat, inc.

release : 4.el6 build date: 2023年09月24日 星期二 16時07分48秒

install date: (not installed) build host: x86-007.build.bos.redhat.com

url :

summary : network traffic analyzer

description :

wireshark is a network traffic analyzer for unix-ish operating systems.

this package lays base for libpcap, a packet capture and filtering

library, contains command-line utilities, contains plugins and

documentation for wireshark. a graphical user inte***ce is packaged

separately to gtk+ package.

[root@localhost ~]# rpm -qpl /media/packages/wireshark-1.8.10-4.el6.x86_64.rpm

……

查詢待安裝的 rpm包

查詢待安裝的.rpm包 問題 查詢光碟中的 lynx 軟體包的用途 安裝清單 查詢光碟中的 wireshark 軟體包的用途 安裝清單 方案 注意在查詢未安裝的.rpm包資訊時,提供的命令引數應該是準確的包檔案路徑,僅指定軟體名是不行的。指定檔案路徑時,多利用tab鍵補全。提前將rhel6系統光碟掛...

linux的rpm包安裝

一 rpm包安裝方式步驟 二 deb包安裝方式步驟 三 tar.gz源 包安裝方式 四 tar.bz2源 包安裝方式 五 apt方式安裝 引用 1 開啟乙個終端,su 成root使用者 2 apt cache search soft注 soft是你要找的軟體的名稱或相關資訊 3 如果2中找到了軟體s...

如何安裝RPM包

ubuntu的軟體包格式是deb,如果要安裝rpm的包,則要先用alien把rpm轉換成deb。sudo apt get install alien alien預設沒有安裝,所以首先要安裝它,如果找不到這個包,請檢查你的 etc apt sources.list 並新增 deb feisty mai...