root设备的solaris脚本

时间:2013-05-03 08:56:08

标签: solaris

echo "Determine the Solaris boot disk in cxtxdx format."

BOOTPATH=`prtconf -pv | grep bootpath | tr -d "'" | awk '{ print $2 }'`

if [ -n "`echo $BOOTPATH | grep "/disk"`" ] ; then

   # The bootpath contains "disk," but the /devices block device contains

   # either "sd" or "ssd"

   BOOTPATH=`echo $BOOTPATH | sed 's/disk@//'`

   BOOT_DISK=`ls -l /dev/dsk | sed -e 's/ssd@//' -e 's/sd@//' \

   | grep "$BOOTPATH" 2>/dev/null | awk '{ print $9 }' | sed 's/s[0-7]//'`

else

   BOOT_DISK=`ls -l /dev/dsk | grep "$BOOTPATH" 2>/dev/null | \

   awk '{ print $9 }' | sed 's/s[0-7]//'`

fi

if [ -n "$BOOT_DISK" ] ; then

   echo "Your boot disk is ${BOOT_DISK}."
else

   echo "Unable to determine logical boot disk."
fi

上面的脚本运行正常,但我需要运行下面的命令也可以任何人帮我这个

metastat -c - >输出来了

D0
d10 c0t0d0
d20 c0t1d0

ls -al / dev / dsk / disk one&磁盘二

0 个答案:

没有答案