linux 新添加的硬盤

一、查看新添加的硬盤
lshw -C diskide

看到以下信息
*-disk:1
description: ATA Disk
product: ST3320620AS
vendor: Seagate
physical id: 1
bus info: scsi@1:0.1.0
logical name: /dev/sdb
version: 3.AA
serial: 5QF1MZ2D
size: 298GiB (320GB)
capabilities: partitioned partitioned:dos
configuration: ansiversion=5 signature=cc57cc57ui

或者使用命令this

fdisk -lspa

二、使用fdisk命令設置硬盤
fdisk /dev/sdbip

進入fdisk模式:
Command (m for help):m //查看fdisk命令幫助it

Command action
a toggle a bootable flag
b edit bsd disklabel
c toggle the dos compatibility flag
d delete a partition 注:這是刪除一個分區的動做;
l list known partition types 注:l是列出分區類型,以供咱們設置相應分區的類型;
m print this menu 注:m 是列出幫助信息;
n add a new partition 注:添加一個分區;
o create a new empty DOS partition table
p print the partition table 注:p列出分區表;
q quit without saving changes 注:不保存退出;
s create a new empty Sun disklabel
t change a partition’s system id 注:t 改變分區類型;
u change display/entry units
v verify the partition table
w write table to disk and exit 注:把分區表寫入硬盤並退出;
x extra functionality (experts only) 注:擴展應用,專家功能;
io

輸入n建立新的分區table

Command (m for help):nast

e extended //輸入e爲建立擴展分區
p primary partition (1-4) //輸入p爲建立主分區,這裏咱們選擇pfunction

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(若是想要分第二或者第三分區的,在這裏按照以上的要去輸入相應的參數)

輸入p查看分區

Command (m for help):p


輸入w保存分區參數

Command (m for help):w

三、格式化分區
mkfs -t ext3 -c /dev/sdb1

四、掛載分區
mkdir /bakup
mount /dev/sdb1 /bakup

若是要在每次開機的時候自動掛載新建的分區,編輯/etc/fstab

vi /etc/fstab

添加如下行:
/dev/sdb1 /bakup ext3 defaults 1 2

相關文章
相關標籤/搜索