一,查看某个文件所属的deb包:
root@lhdpc:/usr/local/source/Python-3.12.0# dpkg -S /usr/bin/python3
python3-minimal: /usr/bin/python3
二,查看dpkg的版本号
root@lhdpc:/usr/local/source/Python-3.12.0# dpkg --version
Debian dpkg 软件包管理程序 1.22.0 (amd64) 版。
本软件是自由软件;要获知复制该软件的条件,请参阅 GNU 公共许可证
第二版或其更新的版本。本软件【不】提供任何担保。
三,查看帮助
root@lhdpc:/usr/local/source/Python-3.12.0# dpkg --help
四,列出已安装的deb包:
root@lhdpc:/usr/local/source/Python-3.12.0# dpkg -l
说明:刘宏缔的架构森林—专注it技术的博客,
网站:https://blog.imgtouch.com
原文: https://blog.imgtouch.com/index.php/2023/11/11/ubuntu-dpkg-cao-zuo-deb-bao-23-10/
代码: https://github.com/liuhongdi/ 或 https://gitee.com/liuhongdi
说明:作者:刘宏缔 邮箱: [email protected]
五,列出deb中的文件列表
root@lhdpc:/usr/local/source/Python-3.12.0# dpkg -L python3-minimal
六,打印deb包的描述信息,包括作者、版本等
root@lhdpc:/usr/local/source/Python-3.12.0# dpkg -p python3-minimal
七,打印deb包的详细信息,包括版本、依赖关系等。
root@lhdpc:/usr/local/source/Python-3.12.0# dpkg -s libssl-dev
Package: libssl-dev
Status: install ok installed
Priority: optional
Section: libdevel
Installed-Size: 12981
Maintainer: Ubuntu Developers <[email protected]>
Architecture: amd64
Multi-Arch: same
Source: openssl
Version: 3.0.10-1ubuntu2.1
Depends: libssl3 (= 3.0.10-1ubuntu2.1)
Suggests: libssl-doc
Description: Secure Sockets Layer toolkit - development files
This package is part of the OpenSSL project's implementation of the SSL
and TLS cryptographic protocols for secure communication over the
Internet.
八,查看ubuntu的版本:
root@lhdpc:~# lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 23.10
Release: 23.10
Codename: mantic
标签:23.10,source,usr,lhdpc,deb,root,dpkg
From: https://www.cnblogs.com/architectforest/p/17830798.html