Linux操做系統添加新硬盤方法
#fdisk /dev/sdb ide
進入fdisk模式: 操作系統
Command (m for help):p //查看新硬盤的分區 ci
Command (m for help):n //建立新分區 it
Command action io
e extended //輸入e爲建立擴展分區 table
p primary partition (1-4) //輸入p爲建立主分區,這裏咱們選擇p ast
Partion number(1-4):1 //第一個擴展分區,按您需求可以最多分4個主分區 class
First Cylinder(1-1014,default 1): 1 //第一個主分區起始的磁盤塊數 擴展
Last cylindet or +siza or +sizeM or +sizeK: +1024MB //可以是以MB爲單位的數字或以 sed
磁盤塊數,輸入+1024MB表示分區大小爲1G。
Command (m for help): w
The partition table has been altered!
Calling ioctl() to re-read partition table.
Syncing disks.
#mkfs -t ext3 -c /dev/sdb1 //假若有多個分區,則分區修改成sdb2這樣
#mkdir www //建立/www目錄,咱們將把新的分區掛到www下
#mount /dev/sdb1 /www //將/dev/sdb1掛載到/www
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/sda2 3771316 1388956 2190788 39% /
/dev/sda1 101089 9463 86407 10% /boot
none 62988 0 62988 0% /dev/shm
/dev/sdb1 485906 8239 452580 2% /www //
看到了,這就是剛纔新掛載的分區
#vi /etc/fstab
/dev/sdb1 /www ext3 defaults 1 2