歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
Linux教程網 >> Unix知識 >> Unix基礎知識 >> Sun Solaris安裝包的反安裝實現

Sun Solaris安裝包的反安裝實現

日期:2017/3/3 15:24:55   编辑:Unix基礎知識

工作中,有時需要移植一些已經安裝過的Solaris包,或者對已經安裝後的包進行修改,但一時又無法找到原來的安裝包。系統升級時,有時也常常涉及到對原來系統的備份問題,這時需要一些能夠對原來的安裝包進行備份,又能夠在新系統上進行安裝的工具。Solaris本身並不提供直接的工具用於包的移植。

但Solaris在安裝本身通用的PKG包時,會產生兩個與安裝包相關的文檔/上錄,分別在/var/sadm/pkg/下和/var/sadm/install/contents中,通過對這兩個文檔進行解析,可以實現對Solaris包的反安裝,這在實現系統升級時尤其有用。

以下腳本會在當前的運行目錄下產生壓縮的系統安裝包,Copy/Paste本腳本到Solaris機上,運行後輸入需要反安裝的包名即可。歡迎大家測試。

#!/bin/ksh
##########################################################
#
# Copyright (c) 2002 Chinaunix.net -- Solaris
#
# Module Description ::
# Script to create Sun packages from existing installation
#
##########################################################
# [Global Parameters]
#===============================================
MAIN_DIR=`pwd`
PRO_DIR=$MAIN_DIR/process
PKG_DIR=$MAIN_DIR/package
SYS_DIR=/var/sadm/pkg
CNT_FILE=/var/sadm/install/contents
ID=`/usr/bin/id | awk -F= '{print $2}' | awk -F\( '{print $1}'`
VER=sol`uname -r | cut -d. -f2,2`
GREP=/bin/grep
# awk can not handle long line with many fileds.
# In Solaris, use 'nawk' or 'gawk' instead.
AWK=/bin/nawk
GZIP=/bin/gzip
MKDIR=/bin/mkdir
CHMOD=/bin/chmod
CHOWN=/bin/chown
CP=/bin/cp
MV=/bin/mv
PKGMK=/bin/pkgmk
PKGTRANS=/bin/pkgtrans
# [Functions]
#==================================================================
function mk_dir
{
$MKDIR -p $PRO_DIR/$3
$CHMOD $4 $PRO_DIR/$3
$CHOWN $5:$6 $PRO_DIR/$3
}
function cp_file
{
$CP -p $3 $PRO_DIR/$3
$CHMOD $4 $PRO_DIR/$3
$CHOWN $5:$6 $PRO_DIR/$3
}
# [Main]
#==================================================================
if [ ${ID} != 0 ]
then
echo ""
echo "Only Root User allow to run this script. Exit...."
sleep 1
echo ""
exit 1
fi
echo ""
echo "Please enter package name you want to create, then press Enter: "
echo "Enter Package name: \c"
read pkgname
PKG_NAME=$pkgname
if [ ! -d $SYS_DIR/$PKG_NAME ]; then
echo ""
echo "This Package doesn't exist!!! Please check the name and try again!"
echo ""
exit 1
fi
if [ ! -d $PRO_DIR ]; then
$MKDIR $PRO_DIR
fi
if [ ! -d $PKG_DIR ]; then
$MKDIR $PKG_DIR
fi
# Producing part of Prototype file
$GREP $PKG_NAME $CNT_FILE | $GREP -v ^#.* >; $PRO_DIR/cnt_pkg
$AWK '{print $2,$3,$1,$4,$5,$6}' $PRO_DIR/cnt_pkg >; $PRO_DIR/Prototmp
$GREP ^d $PRO_DIR/Prototmp >; $PRO_DIR/Protodir
$GREP ^f $PRO_DIR/Prototmp >;>; $PRO_DIR/Protofile
rm -f $PRO_DIR/Prototmp
rm -f $PRO_DIR/cnt_pkg
# Producing pkginfo file
cp $SYS_DIR/$PKG_NAME/pkginfo $PRO_DIR
# Making directory with permission
i=0
while IFS=' ' read line
do
t[$i]=$line
((i=i+1))
mk_dir $line
done < $PRO_DIR/Protodir
# Copying file to Spool directory
i=0
while IFS=' ' read line
do
t[$i]=$line
((i=i+1))
cp_file $line
done < $PRO_DIR/Protofile
# Producing Prototype file
cat $PRO_DIR/Protodir >; $PRO_DIR/Prototype
cat $PRO_DIR/Protofile >;>; $PRO_DIR/Prototype
(echo "i pkginfo"; cat $PRO_DIR/Prototype ) >; $PRO_DIR/Prototmp
mv $PRO_DIR/Prototmp $PRO_DIR/Prototype
rm -f $PRO_DIR/Protodir
rm -f $PRO_DIR/Protofile
# Now let's make the package
$PKGMK -o -r $PRO_DIR -d $PRO_DIR -f $PRO_DIR/Prototype
$PKGTRANS -s $PRO_DIR $PKG_DIR/$PKG_NAME-$VER-pkg $PKG_NAME
$GZIP -f $PKG_DIR/$PKG_NAME-$VER-pkg
rm -rf $PRO_DIR

Copyright © Linux教程網 All Rights Reserved