1、查看新添加的硬盘
lshw -C disk
看到如下信息
*-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=cc57cc57
或者使用命令
fdisk -l
2、使用fdisk命令设置硬盘
fdisk /dev/sdb
进入fdisk模式:
Command (m for help):m//查看fdisk命令帮助
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) 注:扩展应用,专家功能;
输入n创建新的分区
Command (m for help):n
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(如果想要分第二或者第三分区的,在这里按照以上的要去输入相应的参数)
输入p查看分区
Command (m for help):p
输入w保存分区参数
Command (m for help):w
3、格式化分区
mkfs -t ext3 -c /dev/sdb1
4、挂载分区
mkdir /bakup
mount /dev/sdb1 /bakup
如果要在每次开机的时候自动挂载新建的分区,编辑/etc/fstab
vi /etc/fstab
添加以下行:
/dev/sdb1 /bakup ext3 defaults 1 2