2022年linux下fdisk命令详解 .pdf
《2022年linux下fdisk命令详解 .pdf》由会员分享,可在线阅读,更多相关《2022年linux下fdisk命令详解 .pdf(8页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、linux下 fdisk命令详解 fdisk 操作硬盘的命令格式如下: rootlocalhost beinan# fdisk 设备 比如我们通过 fdisk -l 得知 /dev/hda 或者 /dev/sda设备;我们如果想再添加或者删除一些分区,可以用 rootlocalhost beinan# fdisk /dev/hda 或 rootlocalhost beinan# fdisk /dev/sda 注 在以后的例子中,我们要以 /dev/sda设备为例,来讲解如何用fdisk 来操作添加、删除分区等动作; 1、fdisk 的说明; 当我们通过 fdisk 设备, 进入相应设备的操作时
2、,会发现有如下的提示;以 fdisk /dev/sda 设备为例,以下同; rootlocalhost beinan# fdisk /dev/sda Command (m for help): 在这里按m ,就会输出帮助; 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 是列出分区类型,以供我们设置相应分区的类型;
3、 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 partitions system id 注:t 改变分区类型; 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - -
4、- - - - - - - - - 名师精心整理 - - - - - - - 第 1 页,共 8 页 - - - - - - - - - u change display/entry units v verify the partition table w write table to disk and exit 注:把分区表写入硬盘并退出; x extra functionality (experts only) 注:扩展应用,专家功能; 其实我们常用的只有注有中文的,其它的功能我们不常用(呵,主要是我不会用,否则早会卖弄一下了);x扩展功能,也不是常用的;一般的情况下只要懂得 d l m
5、p q t w 就行了; 下面以实例操作来详述,没有例子没有办法就,新手也看不懂; 2、列出当前操作硬盘的分区情况,用p; 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) /
6、dev/sda2 26 125 806400 5 Extended /dev/sda5 26 50 201568+ 83 Linux /dev/sda6 51 76 200781 83 Linux 3、通过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 Boo
7、t 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 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 2 页,共 8 页 - - - - - - - - - /dev/sda6 51 76 200781 83 Linux Command (m for help):
8、d 注:执行删除分区指定; Partition number (1-6): 6 注:我想删除 sda6 ,就在这里输入 6 ; 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 201
9、568+ c W95 FAT32 (LBA) /dev/sda2 26 125 806400 5 Extended /dev/sda5 26 50 201568+ 83 Linux Command (m for help): 警告:删除分区时要小心,请看好分区的序号,如果您删除了扩展分区,扩展分区之下的逻辑分区都会删除;所以操作时一定要小心;如果知道自己操作错了,请不要惊慌,用q 不保存退出;切记切记!在分区操作错了之时,千万不要输入w保存退出! 4、通过 fdisk的 n 指令增加一个分区; Command (m for help): p Disk /dev/sda: 1035 MB, 10
10、35730944 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 Command (m for help): n 注:增加一个分区; Command act
11、ion l logical (5 or over) 注:增加逻辑分区,分区编号要大于5;为什么要大于5,因为已经有 sda5 了; 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 3 页,共 8 页 - - - - - - - - - p primary partition (1-4) 注:增加一个主分区;编号从 1-4 ;但sda1 和 sda2 都被占用,所以只能从3 开始; p Partition number (1-4): 3 No free sectors availabl
12、e 注:失败中,为什么失败? 注:我试图增加一个主分区,看来是失败了,为什么失败?因为我们看到主分区+扩展分区把整个磁盘都用光了,看扩展分区的End 的值,再看一下 p输出信息中有125 cylinders;最好还是看前面部份;那里有提到; 所以我们只能增加逻辑分区了; Command (m for help): n Command action l logical (5 or over) p primary partition (1-4) l 注:在这里输入l ,就进入划分逻辑分区阶段了; First cylinder (51-125, default 51): 注:这个就是分区的Start
13、 值;这里最好直接按回车,如果您输入了一个非默认的数字,会造成空间浪费; Using default value 51 Last cylinder or +size or +sizeM or +sizeK (51-125, default 125): +200M 注:这个是定义分区大小的, +200M 就是大小为200M ;当然您也可以根据p 提示的单位cylinder的大小来算, 然后来指定 End 的数值。回头看看是怎么算的;还是用 +200M这个办法来添加,这样能直观一点。如果您想添加一个10G左右大小的分区,请输入 +10000M ; Command (m for help): 5、通
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 2022年linux下fdisk命令详解 2022 linux fdisk 命令 详解
限制150内