linux 下加挂硬盘的具体做法
作者 佚名技术
来源 Linux系统
浏览
发布时间 2012-05-03
linux 下加挂硬盘的具体做法 实验环境 VMware 6.5 redhat Enterprise linux 5 大致可分这么个步骤 1 :先加挂一块硬盘 2 :创建分区 3 :格式化硬盘 4 :设置卷标 5 :创建挂载点 6 :挂载 (自动,手动) 挂硬盘就不说了, 创建分区 [root@localhost ~]# fdisk /dev/sdb sda是第一块SCSI硬盘,sdb第二块,以此类推...物理分区使用a、b编号,每个物理硬盘最多有四个主逻辑分区(或扩展分区),自动分区中,扩展分区sda2下第一个逻辑分区编号从5开始 Device contains neither a valid DOS partition table, nor Sun, SGI or OSF disklabel Building a new DOS disklabel. Changes will remain in memory only, until you decide to write them. After that, of course, the previous content won''t be recoverable. Warning: invalid flag 0x0000 of partition table 4 will be corrected by w(rite) Command (m for help): 这里按m获得帮助 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 m print this menu n add a new partition o create a new empty DOS partition table p print the partition tableq 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) 输入 p 显示硬盘分割情形. 输入 a 设定硬盘启动区. 输入 n 设定新的硬盘分割区. 输入 e 硬盘为[延伸]分割区(extend). 输入 p 硬盘为[主要]分割区(primary). 输入 t 改变硬盘分割区属性. 输入 d 删除硬盘分割区属性. 输入 q 结束不存入硬盘分割区属性. 输入 w 结束并写入硬盘分割区属性 Command (m for help): p Disk /dev/sdb: 4294 MB, 4294967296 bytes 255 heads, 63 sectors/track, 522 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes Device Boot Start End Blocks Id System (我挂了个4G的硬盘) Command (m for help): n Command action e extended p primary partition (1-4) 输入p p Partition number (1-4): 分区号 输入1 Partition number (1-4): 1 First cylinder (1-522, default 1): 第几个柱面我们从1开始 First cylinder (1-522, default 1): 1 Last cylinder or size or sizeM or sizeK (1-522, default 522): 4000M 这里我们按大小输入 即 4000M (注意这个M为大写) Command (m for help): P Disk /dev/sdb: 4294 MB, 4294967296 bytes 255 heads, 63 sectors/track, 522 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes Device Boot Start End Blocks Id System /dev/sdb1 1 487 3911796 83 Linux 输入p Command (m for help): wThe partition table has been altered! Calling ioctl() to re-read partition table. Syncing disks. [root@localhost ~]# 输入w保存退出 下一步 格式化 [root@localhost ~]# mkfs -t ext3 /dev/sdb1 mke2fs 1.39 (29-May-2006) Filesystem label= OS type: Linux Block size=4096 (log=2) Fragment size=4096 (log=2) 489600 inodes, 977949 blocks 48897 blocks (5.00%) reserved for the super user First data block=0 Maximum filesystem blocks=1002438656 30 block groups 32768 blocks per group, 32768 fragments per group 16320 inodes per group |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
上一篇: Linux 文件类型 及文件的扩展名下一篇: LINUX网络服务 NIS服务
关于linux 下加挂硬盘的具体做法的所有评论