RPM:如何获取需求(发布)列表
已生成带有spec文件的rpm包,其中使用Requires(post)指定安装后部分所需的工具。
那么如何从rpm包中获取Requires(post)工具列表呢? rpm -qp --whatrequires .rpm - 未列出任何工具
Have generated rpm package with the spec file, where used Requires(post) to specify the required tools for the post installation section.
So how to get the list of Requires(post) tools list from a rpm package ?
rpm -qp --whatrequires .rpm - does not list any tools
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您正在混合
--requires
和--whatrequires
。第一个将列出指定的包所需的包,而第二个将告诉您哪些包需要给定的包(或其他提供的元数据/文件)。您应该使用--requires
You are mixing
--requires
and--whatrequires
. The first one will list packages required by package specified, whereas the second one will tell you which packages require given package (or other provided metadata/files).You should use --requires