Linux fdisk命令使用方法

     一块硬盘只能有四个主分区(hda1,had2,hda3,hda4)

     一个主分区可以转换为一个扩展分区。在扩展分区上,可以以链表的方式建立逻辑分区

    Linux下逻辑分区自hda5编号,hda1、hda2、hda3、hda4预留为四个主分区

     查看硬盘分区信息 fdisk -l

一、创建分区

 

   fdisk /dev/sda

Command (m for help): 
   a toggle a bootable flag
   b edit bsd disklabel
   c toggle the dos compatibility flag
   d delete a partition ;删除一个分区
   l list known partition types;
列出分区类型

m print this menu ;列出帮助信息;
   n add a new partition ;添加一个分区;包括两个选项

  输入e 硬盘为扩展分割区(extend)。

  输入p 硬盘为主分割区(primary)。 
   o create a new empty DOS partition table
   p print the partition table ;列出分区表;
   q quit without saving changes ;不保存退出;
   s create a new empty Sun disklabel
   t change a partition's system id ;改变分区类型;
   u change display/entry units
   v verify the partition table
   w write table to disk and exit ;把分区表写入硬盘并退出;
   x extra functionality (experts only) ;扩展应用,专家功能;

用fdisk更改分区表后,使更改的分区表立即生效,需要运行partprobe命令。

 

二、格式化

 

mkfs.分区类型 命令来格式化分区,比如我想格式化 sda3为ext3文件系统,则mkfs.ext3 /dev/sda3

 

三、加载文件系统

 

加载 sda3到目前系统来存取文件

mkdir /mnt/sda3

mount /dev/sda3 /mnt/sda3