fdsik 能划分磁盘成为若干个区,同时也能为每个分区指定并格局化分区的文件系统,好比linux 、fat3
2、linux swap 、fat16 以及其它Unix类操做系统的文件系统等。
fdisk -l 查看机器所有硬盘及其分区情况;
也能够用fdisk -l /dev/xxx零丁查看某个硬盘的分区情况。
fdisk /dev/xxx 起头对某个设备的分区操做的会话。按m能够查看所有号令。
常用的有:
d delete a partition 注:那是删除一个分区的动做;
l list known partition types 注:l是列出分区类型,以供我们设置响应分区的类型;
m print this menu 注:m 是列出帮忙信息;
n add a new partition 注:添加一个分区;
p print the partition table 注:p列出分区表;
q quit without saving changes 注:不保留退出;
t change a partition's system id 注:t 改动分区类型;
w write table to disk and exit 注:把分区表写入硬盘并退出;
通过fdisk的d指令删除分区的例子:
Command (m for help): p 注:列出分区情况;
Disk /dev/sda: 1035 MB, 1035730944 bytes
256 heads, 63 sectors/track, 125 cylinders
Units = cylinders of 16128 * 512 = 8257536 bytes
Device Boot Start End Blocks Id System
/dev/sda1 1 25 201568+ c W95 FAT32 (LBA)
/dev/sda2 26 125 806400 5 Extended
/dev/sda5 26 50 201568+ 83 Linux
/dev/sda6 51 76 200781 83 Linux
Command (m for help): d 注:施行删除分区指定;
Partition number (1-6): 6 注:我想删除 sda6 ,就在那里输入 6 ;
Command (m for help): p 注:再查看一下硬盘分区情况,看能否删除了?。