Apache Linux上RPM包卸载 备忘
[root@apache02 home]# rpm -q -a|grep http
httpd-2.0.52-25.ent
httpd-manual-2.0.52-25.ent
system-config-httpd-1.3.1-1
httpd-devel-2.0.52-25.ent
httpd-suexec-2.0.52-25.ent
#rpm -e httpd-2.0.52-25.ent
error: Failed dependencies:
httpd-mmn = 20020903 is needed by (installed) mod_auth_kerb-5.0-1.i386
httpd-mmn = 20020903 is needed by (installed) mod_auth_mysql-2.6.1-2.2.i386
httpd-mmn = 20020903 is needed by (installed) mod_auth_pgsql-2.0.1-7.1.i386
.........................................
webserver is needed by (installed) webalizer-2.01_10-25.i386
webserver is needed by (installed) mailman-2.1.5.1-34.rhel4.3.i386
webserver is needed by (installed) htdig-web-3.2.0b6-3.40.2.rhel4.i386
httpd = 2.0.52-25.ent is needed by (installed) httpd-manual-2.0.52-25.ent.i386
httpd = 2.0.52-25.ent is needed by (installed) httpd-suexec-2.0.52-25.ent.i386
httpd >= 2.0.40 is needed by (installed) mod_auth_pgsql-2.0.1-7.1.i386
httpd >= 2.0.40 is needed by (installed) mod_perl-1.99_16-4.i386
.......................................
httpd = 2.0.52 is needed by (installed) httpd-devel-2.0.52-25.ent.i386
[root@apache02 home]# rpm -e httpd-2.0.52-25.ent --nodeps
warning: /etc/httpd/conf/httpd.conf saved as /etc/httpd/conf/httpd.conf.rpmsave
注:加上--nodeps (不检查依赖性)。因为有些软件是相互依赖的,先卸哪个都不行,就得用nodeps这个参数才行。
[root@apache02 home]#
[root@apache02 home]# rpm -e httpd-manual-2.0.52-25.ent
[root@apache02 home]# rpm -
相关文档:
1. HCI层协议概述:
HCI提供一套统一的方法来访问Bluetooth底层。如图所示:
从图上可以看出,Host Controller Interface(HCI) 就是用来沟通Host和Module。Host通常就是PC, Module则是以各种物理连接形式(USB,serial,pc-card等)连接到PC上的bluetooth Dongle。
在Host这一端:application,SDP,L2cap等协议 ......
翻译者:郭少悲
2009/12/01
原文:linux/Documentation/driver-model/binding.txt
驱动绑定
驱动绑定就是将一个设备和控制该设备的驱动关联在一切的过程。
典型的情况下,总线驱动来处理驱动绑定,因为每个总线驱动都有总线相关的数据
结构来表示设备和设备驱动。有了表示设备和设备驱动的通用数据结构,绝大多数的绑 ......
COM配置
先进行虚拟机设备配置
在完成LINUX下系统配置
com端口配置
以后只要在命令行下输入 >minicom 回车就可以看到这个菜单了 呵呵
JTAG配置(相当于win下的H-JTAG)
下载Jflash压缩包 tar解压到/目录下
打开虚拟机
接好JTAG并口线,进入linux系统输入命令
......
有时候为了方便,利用event/trigger调用系统外部命令,可因为安全问题,mysql自身并没有提供相关命令,这里提供个调用系统命令的自定义函数mylab_sys_exec
so文件下载:mylab_sys_exec.so ( mysql5.1.34 测试通过)
加载:
CREATE FUNCTION mylab_sys_exec RETURNS INTEGER SONAME "mylab_sys_exec.so";
使用:
SELECT myl ......