如何获得linux 命令源码安装包[转]
另:要实现某一些linux自带命令相同的功能,(比如:要实现在linux下查询cpu的占用率,linux的命令是top), 可以参考一下该命令(top)的linux源码,
转自http://hi.baidu.com/yanjinbin/blog/item/3d25ebdd29756fea76c6381f.html
# which reboot <---which指令会在环境变量$PATH设置的目录里查找符合条件的文件
/sbin/reboot <--找到文件如下
# rpm -qf /sbin/reboot--通过文件查找起安装包
SysVinit-2.85.34 <-- rpm包名字
# rpm -qi SysVinit-2.85.34 <---查看安装包信息信息,查看源码安装包
然后就去网上找这个源码安装包,下载完源码安装包后,使用rpm2cpio来解压文件:
RedHat下载网址:http://redhat.download.fedoraproject.org/pub/fedora/linux/core/3/SRPMS/
RPM包下载地址:http://ftp.freshrpms.net/pub/freshrpms/redhat/9/
$ rpm2cpio SysVinit-2.85.34.src.rpm | cpio -idv
$ tar xvfz SysVinit-2.85.34.tar.gz
在后你就可以看到的源码目录:SysVinit-2.85.34
相关文档:
Service Discovery Protocol(SDP)提供一种能力,让应用程序有方法发现哪种服务可用以及这种服务的特性。
服务发现协议(SDP或Bluetooth SDP)在蓝牙协议栈中对蓝牙环境中的应用程序有特殊的含意,发现哪个服务是可用的和确定这些可用服务的特征。SDP定义了bluetooth client发现可用bluetooth server服务和它们的特征的方法。 ......
归纳一下linux下开发的automake相关的,没有时间写只好转载一些好的了
本文转载于: http://blog.csdn.net/absurd/archive/2006/06/12/792397.aspx
Autoconf/automake step by step
Autoconf/automake
在 ......
[编辑中]
-m32
# ld -V
GNU ld version 2.15.92.0.2 20040927
Supported emulations:
elf_x86_64
elf_i386
i386linux
#ld -m elf_i386
Along with the -m32 flag in gcc, you may need to include the -melf_i386 flag for ld to properly link the 32bi ......
当我们想卸载httpd 的时候,使用rpm -qa httpd 的时候,我们发现有很多的依赖包。我们耐心的想一个一个的卸载的时候(使用rpm -e httpd-*),还会进入死循环。
解决的办法是:使用 rpm -e httpd-* --nodeps说明:“*”是通配符。
安装CentOS5.3的时候会默认安装httpd服务。
首先查看 ......