redhat系列的linux使用RPM來管理安裝軟件很方便,把本身經常使用的腳本變成RPM包以後,用起來就方便了。linux
....仍是不看了把,看不懂....ide
2.環境準備:post
軟件包依賴:
rpm-build rpmdevtools
測試
3.設置 製做RPM包 的環境ui
直接執行命令:
rpmdev-setuptree
便可在當前用戶的家目錄生成以下目錄結構
this
4.拷貝本身的腳本到相應目錄code
(簡單介紹一下個人那三個腳本的功能:
customOS.sh:設置歷史命令格式,終端(PS1)顯示之類的
scanport.sh :掃描目標主機的可用TCP端口
setRM.sh :當rm -rf 刪除的目標 大小小於10M,就把目標放入到/tmp目錄下
)
blog
5.配置SPCE文件(重點)ip
在SPEC目錄下,編譯ddcw.spec
get
ddcw.spec內容參考以下:
Name: ddcw #名字
Version: 2019 #版本
Release: 1125
Summary: this is test RPMGroup: Applications/System
License: ddcw
URL: https://blog.51cto.com/10888845#Requires:
Requires:grep #依賴,即安裝這個軟件所需的其它RPM包%description #描述
this is set ddcw some habit%prep #安裝前所須要作的事情
echo -e "\033[1;41;33m pre install NOTHING\033[0mprep"%build #這個我也不知道
echo -e "\033[1;41;33m build NOTHING\033[0mprep"%install #安裝,即把本身的腳本放到那個位置
#echo -e "\033[1;41;33m install NOTHING\033[0mprep"
mkdir -p %{buildroot}/tmp/ddcw
install -m 744 scanport.sh %{buildroot}/tmp/ddcw/scanport.sh
install -m 744 setRM.sh %{buildroot}/tmp/ddcw/setRM.sh
install -m 744 customOS.sh %{buildroot}/tmp/ddcw/customOS.sh%post #安裝以後的工做,(由於個人腳本自帶安裝功能,即執行腳本他會自動安裝)
sh /tmp/ddcw/scanport.sh
sh /tmp/ddcw/setRM.sh
sh /tmp/ddcw/customOS.sh%files #文件
/tmp/ddcw/scanport.sh
/tmp/ddcw/setRM.sh
/tmp/ddcw/customOS.sh%postun #卸載操做,即運行 rpm -e 軟件包 的時候執行的命令
mv /usr/bin/scanportDDCW /tmp
sed -i "/alias rm='\/bin\/rms'/d" /etc/profile >/dev/null
sed -i "/export HISTTIMEFORMAT=/d" /etc/profile >/dev/null
sed -i "/export DISPLAY=/d" /etc/profile >/dev/null
sed -i "/export PS1=/d" /etc/profile >/dev/null%changelog #對於我來講,沒啥用
6.執行打包命令
rpmbuild -bb SPECS/ddcw.spec
7.檢查測試
打包成功後,會在 RPMS/x86_64/ 目錄下生成改RPM包
我換一臺機器測試這個RPM包:
再驗證一下功能(根據本身腳本測試,個人測試出來是OK的):
卸載試一下(也是木的問題的)