赞
踩
磁盘分区、格式化与挂载
磁盘分区、格式化与挂载
一、给磁盘分区
分区工具介绍
fdisk:分区时只修改分区表信息;操作简单;不支持大于2T的分区;只能使用交互式来分区。
parted:直接将分区信息写入磁盘;操作比较复杂;支持大于2T的分区,并且允许调整分区的大小;可以使用交互式或非交互式进行分区。
1、fdisk分区过程
1)选择所需要分区的硬盘:fdisk -uc /dev/xvdb[root@lt1 ~]# fdisk -uc /dev/xvdb #<==-uc是分区参数,如果不加会有警告;/dev/xvdb是需要分区的磁盘
Device contains neither a valid DOSpartition table, nor Sun, SGI or OSF disklabel
Building a new DOS disklabel with diskidentifier 0x12c129c5.
Changes will remain in memory only,until you decide to write them.
After that, of course, the previouscontent won't be recoverable.
Warning: invalid flag 0x0000 ofpartition table 4 will be corrected by w(rite)
Command (m for help):
2)打印fdisk的功能菜单:mCommand (m for help): m
Command action
a toggle a bootable flag
b edit bsd disklabel
c toggle the dos compatibilityflag
d delete a partition #<==删除一个已有分区
l listknown partition types #<==打印分区类型
m print this menu #<==打印这个功能菜单
n add a new partition #<==添加一个新分区
o create a new empty DOSpartition table
p print the partition table #<==打印分区表
q quit without saving changes #<==不保存退出
s create a new empty Sundisklabel
t change a partition's system id #<==修改分区的ID号(改变分区类型)
u change display/entry units
v verify the partition table
w write table to disk and exit #<==保存退出
x extra functionality (expertsonly)
3)添加一个新的分区:n
注意:
主分区和拓展分区最多有4个(因为分区表只有64字节,一个分区会占用16字节)
扩展分区之后还要建立逻辑分区才能使用(逻辑分区可以有多个)
无论主分区和扩展分区有多少个,逻辑分区的分区号都是从5开始的Command (m for help): n
Command action
e extended #<==e表示新建一个扩展分区
p primary partition (1-4) #<==p表示新建一个主分区
4)新建一个主分区(扩展分区和逻辑分区同理):pp #<==如果是扩展分区就选e,逻辑分区选l
Partition number (1-4): #<==选择主分区号(1~4)
5)选择分区号:1(是第几个主分区就选几)Partition number (1-4): 1
First sector (2048-20971519, default2048): #<==选择起始的扇区,默认是2048
6)选择起始扇区:直接回车选择默认First sector (2048-20971519, default2048):
Using default value 2048
Last sector, +sectors or +size{K,M,G}(2048-20971519, default 20971519): #<==选择结束扇区,可以通过+size设置大小,默认到最后一个扇区
7)设置分区大小:+10MLast sector, +sectors or +size{K,M,G} (2048-20971519,default 20971519): +10M
Command (m for help):
8)打印分区表信息:pCommand (m for help): p
Disk /dev/xvdb: 10.7 GB, 10737418240bytes
255 heads, 63 sectors/track, 1305cylinde
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。