Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Linux系統教程 >> Linux教程 >> Linux操作系統添加新硬盤方法

Linux操作系統添加新硬盤方法

日期:2017/2/7 16:57:50      編輯:Linux教程

#fdisk /dev/sdb

進入fdisk模式:

Command (m for help):p //查看新硬盤的分區

Command (m for help):n //創建新分區


Command action

e extended //輸入e為創建擴展分區

p primary partition (1-4) //輸入p為創建主分區,這裡我們選擇p


Partion number(1-4):1 //第一個擴展分區,按您需求能夠最多分4個主分區

First Cylinder(1-1014,default 1): 1 //第一個主分區起始的磁盤塊數

Last cylindet or +siza or +sizeM or +sizeK: +1024MB //能夠是以MB為單位的數字或以


磁盤塊數,輸入+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

# df //用df命令進行查看

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

Copyright © Windows教程網 All Rights Reserved