红联Linux门户
Linux帮助

源代码制作成RPM包

发布时间:2015-09-16 10:28:29来源:linux网站作者:qingchn

由于自动化运维的需求,需要把所有的源代码打成RPM包,方便以后运维安装管理,一般来说源代码制作成RPM一般需要以下的步骤即可。


1,确定Linux 环境中安装了gcc rpmbuild make install等
2,从源代码中找到spec文件,用来控制包建立的过程
3,打包
4,查看制作完成的RPM包


以下是一个实例:

1,rpm -ivh rpm-build-4.4.2.3-22.el5.x86_64.rpm 
2,tar -zxvf nagios-plugins-1.4.15.tar.gz 
cd nagios-plugins-1.4.15 
cp nagios-plugins.spec /usr/src/redhat/SOURCES/ 
cp nagios-plugins-1.4.15.tar.gz /usr/src/redhat/SOURCES/ 
3,rpmbuild -bb nagios-plugins.spec  

4,cd /usr/src/redhat/RPMS/ 

[root@puppet_master RPMS]# tree 

|-- noarch 
`-- x86_64 
|-- nagios-plugins-1.4.15-1.x86_64.rpm 
`-- nagios-plugins-debuginfo-1.4.15-1.x86_64.rpm
2 directories, 2 files 


其中/usr/src/redhat  是默认目录可以设置。


用FPM快速制作RPM包:http://www.linuxdiyf.com/linux/11379.html

Centos中如何快速定制二进制的内核RPM包:http://www.linuxdiyf.com/linux/12957.html

使用Docker镜像构建RPM包:http://www.linuxdiyf.com/linux/8214.html

如何在Linux中创建RPM包?:http://www.linuxdiyf.com/linux/3926.html

RPM包创建入门:http://www.linuxdiyf.com/linux/8604.html