rpm -qs查看包信息

rpm -qs mysql-connector-c-devel

Query options (with -q or --query):
  -c, --configfiles                list all configuration files
  -d, --docfiles                   list all documentation files
  --dump                           dump basic file information
  -l, --list                       list files in package
  --queryformat=QUERYFORMAT        use the following query format
  -s, --state                      display the states of the listed files

时间: 2024-10-29 04:19:56

rpm -qs查看包信息的相关文章

struts2-7-实验一(登录注册校验、管理员增查书籍信息)

一:首页login.jsp 1 <%@ page language="java" contentType="text/html; charset=utf-8" 2 pageEncoding="utf-8"%> 3 <%@ taglib prefix="s" uri="/struts-tags"%> 4 <!DOCTYPE html PUBLIC "-//W3C//DT

活用RPM获取包的信息

rpm -q 功效大 如果你想要在系统上安装.卸载或是升级软件,需要对系统软件进行查询:或是有如下的场景: 安装了一个软件,需要知道这个软件的版本. 遇到一个文件,不认识它,需要知道它是什么软件,有什么作用 可以使用rpm -q 帮助. RPM查询 包查询 首先你要知道你要查询的是哪一个包,包括:包的名字.包的版本.安装包的发行号 注意:RPM对于包名的大小写是敏感的,而且不接受没有写全的包名.版本号和发行号.且不能使用通配符.但是,给出包名片的一部分信息依然是能找到该包的,rpm -q lib

Win10专业版激活永久可查激活信息

Win10专业版激活永久步骤 ------在安装Win10专业版后,使用激活工具将系统激活到180天 这里附带在下屡试不爽的激活工具--百度云盘-- 链接:http://pan.baidu.com/s/1mh7u7Mw 密码:76t1 ------我们可以查看系统的激活状态,按下win+R呼出运行,在窗口中输入:slmgr.vbs -xpr,点击确定,从弹出的窗口查看激活信息------ 1.右键单机windows按钮,选择"命令提示符(管理员)",左键单击打开 2.在窗口中输入命令:

各操作系统查软件信息(openssl)

redhat/centos/suse rpm -qa --qf %{N}\\t%{E}:%{V}-%{R}:%{installtime:day}:%{summary}\\n rpm -qa --qf %{N}\\t%{E}:%{V}-%{R}:%{installtime:day}:%{description}\\n # rpm -qa | grep openssl openssl-0.9.8e-26.el5_9.1 debian/ubuntu dpkg-query -W -f='${Status

如何查看包名

1.ctr+ r  填写:cmd 2. 先第一步: D: 第二步: cd D:\eclipse\adt-bundle-windows-x86-20130917\sdk\build-tools\24.0.3 ( D:\eclipse\adt-bundle-windows-x86-20130917\sdk\build-tools\24.0.3我自己sdk路径 ) 第3步 : aapt d badging XXXXX.apk (xxxx.apk放在D:\eclipse\adt-bundle-windo

根据端口查进程信息

ps -ef|awk '{print $2"\t"$8$9}'|grep `netstat -tlnp|grep 80|awk '{print $7}'|awk -F '/' '{print $1}'` 也可以用更为简洁的lsof lsof -n -i:80

全国企业信用信息公示系统 查公司信息

https://www.sgs.gov.cn/notice/home

安卓查看包名,activity方法

https://www.cnblogs.com/wangcp-2014/p/6144530.html 一.有源码情况 直接打开AndroidManifest.xml文件,找到包含android.intent.action.MAIN和android.intent.category.LAUNCHER对应的activity. 如下图中第三行package为com.cola.ui,第七行主Activity为com.cola.ui.ColaBox(.ColaBox为Activity简写方式). <?xml

Android为TV端助力 Linux命令查看包名类名

先运行apk 再输入logcat | grep START 查看当前启动apk的包名和类名 adb shell "pm list packages -f | grep com.yulong.android.launcher3" adb shell "pm list packages -f | grep com."显示包名的apk名称 原文地址:https://www.cnblogs.com/xiaoxiaing/p/8241873.html