转载:http://blog.chinaunix.net/uid-23859284-id-57796.html
Linux U盘分区格式化 fdisk命令
今天为方便修复系统,做了个U盘WINPE的启动盘。当我兴高采烈的将这个U盘
插到Linux虚拟机上却发现出现了4个分区,而且根本就挂不上,顿时便郁闷了!
看来这样的分区Linux识别不了。只有用个专门的U盘来当启动盘了。这个U盘我
还得用来拷资料呢,那就乖乖的恢复它吧。
首先想到的是在windows下格式化,这是最简单的了。一试,没用,分区表格不了
看来得用命令行的删除分区信息的工具了,无奈,对windows 命令不熟悉,只能
放弃了。。。
于是想到了linux下fdisk这个东东,以前没仔细研究过,看来是刚拿来研究的时
候了。
Command action
a toggle a bootable flag设置引导扇区
b edit bsd disklabel 编辑卷标(linux下使用的卷标bsd通用)
c toggle the dos compatibility flag
d delete a partition 删除分区
l list known partition types 里出已知的分区类型
m print this menu 打印menu
n add a new partition 添加一个新的分区
o create a new empty DOS partition table 生成一个新的空DOS 分区列表
p print the partition table 打印分区列表
q quit without saving changes 不保存退出
s create a new empty Sun disklabel 生成一个新的空Sun磁盘列表
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 (experts only)
Disk /dev/sdb: 2055 MB, 2055208960 bytes
64 heads, 62 sectors/track, 1011 cylinders
Units = cylinders of 3968 * 512 = 2031616 bytes
Disk identifier: 0x00000000
Device Boot Start End Blocks Id System
/dev/sdb1 1 133 263871+ 6 FAT16
/dev/sdb2 * 134 200 132928 83 Linux /boot 分区/
Disk /dev/sdb: 2055 MB, 2055208960 bytes
64 heads, 62 sectors/track, 1011 cylinders
Units = cylinders of 3968 * 512 = 2031616 bytes
Disk identifier: 0x00000000
Device Boot Start End Blocks Id System
/dev/sdb2 * 134 200 132928 83 Linu
Selected partition 2
Disk /dev/sdb: 2055 MB, 2055208960 bytes
64 heads, 62 sectors/track, 1011 cylinders
Units = cylinders of 3968 * 512 = 2031616 bytes
Disk identifier: 0x00000000
Device Boot Start End Blocks Id System
The partition table has been altered!
Calling ioctl() to re-read partition table.
WARNING: Re-reading the partition table failed with error 16: Device or resource busy.
The kernel still uses the old table.
The new table will be used at the next reboot.
Syncing disks.
/下边给磁盘增加一分区并格式化/
#/dev/sda /dev/sda1 /dev/sda2 /dev/sdb
Command action
e extended
p primary partition (1-4)
Using default value 1
Using default value 1011
Disk /dev/sdb: 2055 MB, 2055208960 bytes
64 heads, 62 sectors/track, 1011 cylinders
Units = cylinders of 3968 * 512 = 2031616 bytes
Disk identifier: 0x00000000
Device Boot Start End Blocks Id System
/dev/sdb1 1 1011 2005793 83 Linux
The partition table has been altered!
Calling ioctl() to re-read partition table.
Syncing disks.
下面便是磁盘格式化了 命令是mkfs.ext3 设备名 这里的设备名要是分区名 , 而不是硬盘设备名 (切记先记好分区名 , 别输入错 , 不然格式化错了就麻烦了)
等待之后分区就格式化好了 , 记得复制文件之前要修复一下