Linux磁盘分区浅谈(1)
作者 佚名技术
来源 Linux系统
浏览
发布时间 2012-04-09
我们都知道在windows系统中,右键我的电脑-》管理 其中有一个磁盘管理,在这里面可以很直观的看到目前计算机上硬盘的分区情况,在这里可以删除分区,创建新分区,更改分区号等等.当然,Linux中通过命令,同样可以实现这些操作,在此,我就说说在Linux中创建分区,删除分区和编辑分区.
对于Linux分区的操作,主要使用fdisk命令,fdisk -l是显示当前系统的分区情况
[root@localhost /]# fdisk -l
Disk /dev/sda: 10.7 GB, 10737418240 bytes 255 heads, 63 sectors/track, 1305 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes Device Boot Start End Blocks Id System /dev/sda1 * 1 13 104391 83 Linux /dev/sda2 14 144 1052257 82 Linux swap / Solaris /dev/sda3 145 1305 9325732 83 Linux 如果要看fdisk到底怎么用,输入fdisk --help是没用的,这里要输入要重新分区的分区号 [root@localhost /]# fdisk /dev/sda The number of cylinders for this disk is set to 1305. There is nothing wrong with that, but this is larger than 1024, and could in certain setups cause problems with: 1) software that runs at boot time (e.g., old versions of LILO) 2) booting and partitioning software from other OSs (e.g., DOS FDISK, OS/2 FDISK) Command (m for help): 这是一个命令交互式的命令窗口,输入m,查看所有可以输入的交互命令 Command (m for help): m Command action a toggle a bootable flag //设定硬盘启动
b edit bsd disklabel //编辑一个BSD类型分区 c toggle the dos compatibility flag d delete a partition //删除一个分区 l list known partition types //列出分区表的类型 m print this 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 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) //执行高级模式 下面就根据自己的要求输入交互式命令,此处需创建分区输入n Command (m for help): n Command action e extended p primary partition (1-4) 提示要创建是什么类型的分区,1-4为主分区,此处输入p Command action e extended p primary partition (1-4) p //创建一个主分区 Partition number (1-4): 3 //分区编号为3 First cylinder (145-1305, default 145): //第一个柱面 一般都保持不变 Using default value 145 Last cylinder or size or sizeM or sizeK (145-1305, default 1305): 5G //分区大小,5G Command (m for help):
|
||
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
上一篇: linux重新编译内核下一篇: Linux 命令一句话
关于Linux磁盘分区浅谈(1)的所有评论