码迷,mamicode.com
首页 > 其他好文 > 详细

parted分区脚本

时间:2019-01-10 12:07:40      阅读:297      评论:0      收藏:0      [点我收藏+]

标签:lse   color   sbin   exit   export   The   wait   form   esx   

#!/bin/bash  
#Used to fomat 6 disks
PATH=/bin:/sbin:/usr/bin:/usr/sbin
export PATH  
disk_to_parted="$1"
if [ $# == 0 ];then
    echo "no disk to parted,example /dev/sdb"
    exit
else
    echo "/n/n****** ${disk_to_parted} __was Fdisked! Waiting For 3 Second*****/n/n"
fi
/sbin/parted ${disk_to_parted} <<ESXU
     mklabel gpt
     mkpart primary 0 -1
     ignore
     quit
ESXU
sleep 3s
/sbin/mkfs.ext4 ${disk_to_parted}1
if [ "$?" = "0" ];then
   echo "/n/n*****${disk_to_parted}1 _________________was Formated, Waiting For 1 Second****/n/n"
fi
/sbin/blkid ${disk_to_parted}1
sleep 1s

 

parted分区脚本

标签:lse   color   sbin   exit   export   The   wait   form   esx   

原文地址:https://www.cnblogs.com/kaishirenshi/p/10249052.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!