歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
Linux教程網 >> Linux基礎 >> 關於Linux >> 利用shell腳本實現對系統的自動分區

利用shell腳本實現對系統的自動分區

日期:2017/3/3 16:37:23   编辑:關於Linux
#!/bin/bash

function print {
if [ $# = 2 ]; then
if [ "$1" = "warning" ]; then
echo -e "33[33m33[5m$233[0m"
elif [ "$1" = "error" ]; then
echo -e "33[31m33[5m$233[0m"
elif [ "$1" = "notice" ]; then
echo -e "33[36m33[5m$233[0m"
fi
echo $2
elif [ $# = 1 ]; then
echo -e "33[32m33[5m$133[0m"
echo $1
fi
return
}
#定義顯示顏色方案
function format_disk()
{
fdisk /dev/sda << EOF
d
1
d
2
d
3
d
4
n
p
1
+1G
n
p
2
+20G
n
p
3

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
function main()
{
format_disk;
MKFS
}
main
Copyright © Linux教程網 All Rights Reserved