本文共 1081 字,大约阅读时间需要 3 分钟。
function print { if [ $# = 2 ]; then if [ "$1" = "warning" ]; then echo -e "\033[33m\033[5m$2\033[0m" elif [ "$1" = "error" ]; then echo -e "\033[31m\033[5m$2\033[0m" elif [ "$1" = "notice" ]; then echo -e "\033[36m\033[5m$2\033[0m" fi echo $2 elif [ $# = 1 ]; then echo -e "\033[32m\033[5m$1\033[0m" echo $1 fi return } #定义显示颜色方案 function format_disk() { fdisk /dev/sda << EOF d 1 wq EOF print "==============fdsik sda to three parttions=====================" return 0 } #分区大小为boot 1GB swap 20GB /根分区余下空间全用 function MKFS() { partprobe mkfs.reiserfs -q /dev/sda1 [ $? != 0 ] && print "error" "mkfs sda1 is failed" && exit 0 mkswap /dev/sda2 [ $? != 0 ] && print "error" "mkswap sda2 is failed" && exit 0 swapon /dev/sda2 [ $? != 0 ] && print "error" "swapon sda2 is failed" && exit 0 mkfs.reiserfs -q /dev/sda3 [ $? != 0 ] && print "error" "mkfs sda3 is failed" && exit 0 print "===================make filesystem is OK====================" return 0 } #分区类型为reiserfs 转载地址:http://fndta.baihongyu.com/