馬哥教育視頻學習筆記-shell指令碼完成磁碟分割格式化

來源:互聯網
上載者:User

標籤:shell指令碼完成磁碟分割格式化

馬哥教育視頻學習筆記-shell指令碼完成磁碟分割格式化-http://edu.51cto.com/lesson/id-28201.html


以下是指令碼內容,內容比較簡單,不做詳解

在Linux上準備一塊閒置磁碟即可,如何分區可以在指令碼內改下


#!/bin/bash

#

echo "Initial a disk..."

echo -e "\033[31mWarning: \033[0m "

#開始的說明資訊,其中Warning以紅色字型顯示


fdisk -l 2> /dev/null | grep -o "^Disk /dev/[sh]d[a-z]"

#顯示所有磁碟裝置


read -p "Your choice(Disk or quit):" PARTDISK


if [ $PARTDISK == ‘quit‘ ]; then

  echo "quit"

  exit 7

fi


for I in `mount | grep "$PARTDISK" | awk ‘{print $1}‘`;do

  fuser -km  $I

  umount $I

  echo "$I umount ok."

done        

            

until fdisk -l 2> /dev/null | grep -o "^Disk /dev/[sh]d[a-z]" | grep "Disk $PARTDISK$" &> /dev/null;do

  read -p "Wrong option,Your choice again:" PARTDISK

done       


read -p "Will destroy all data, continue(y or n):" CHOICE

      

until [ $CHOICE == ‘y‘ -o $CHOICE == ‘n‘ ]; do

  read -p "Will destroy all data, continue(y or n):" CHOICE

done


if [ $CHOICE == ‘n‘ ]; then

  echo "Quit"

  exit 9

else

dd if=/dev/zero of=$PARTDISK bs=512 count=1 &> /dev/null

sync

sleep 3 

echo ‘n

1


+2G

n

p

2


+3G

n

p

3


+1G

w‘ | fdisk $PARTDISK &> /dev/null


partprobe $PARTDISK

sync

sleep 2

mkfs.ext4 ${PARTDISK}1 &> /dev/null

mkfs.ext4 ${PARTDISK}2 &> /dev/null

mkswap ${PARTDISK}3 &> /dev/null

fi


fdisk -l $PARTDISK

#查看分區結果


本文出自 “汪立明” 部落格,請務必保留此出處http://80cto.blog.51cto.com/7503144/1611078

馬哥教育視頻學習筆記-shell指令碼完成磁碟分割格式化

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.