欢迎来到天天文库
浏览记录
ID:15382349
大小:237.00 KB
页数:8页
时间:2018-08-03
《5-文件系统和磁盘管理》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、实验五文件系统和磁盘管理实验五文件系统和磁盘管理(一)磁盘分区管理【需求】u为一个有空闲空间的磁盘新建一个分区;u对该分区进行格式化;u把该分区挂载到/mnt/music目录;u要求每次机器启动都自动挂载。【系统及软件环境】操作系统:RedHatAS4.0【实验配置文件及命令】1.配置文件:/etc/fstab2.命令:/sbin/fdisk,/sbin/mkfs.ext3,/bin/mkdir,/bin/mount【实验步骤】1.系统当前的分区表信息。[root@linux/]#fdisk-lDisk/dev/hda:80.0GB,80060424192by
2、tes255heads,63sectors/track,9733cylindersUnits=cylindersof16065*512=8225280bytesDeviceBootStartEndBlocksIdSystem/dev/hda1*11310439183Linux/dev/hda214128810241437+83Linux/dev/hda3128914151020127+82Linuxswap/dev/hda414169733668143355Extended/dev/hda5141614966506018eLinuxLVM/dev/hda614
3、971517168651fdLinuxraidautodetect/dev/hda715181538168651fdLinuxraidautodetect/dev/hda81539155715258683Linux/dev/hda9155823216136798+83Linux/dev/hda102322238652208182Linuxswap69实验五文件系统和磁盘管理由上面的信息可知,系统的扩展分区/dev/hda4中还有空闲的空间(因为该磁盘共有9733个柱面,/dev/hda4的结束柱面为9733,而该扩展分区中的最后一个逻辑分区/dev/hda10
4、的结束柱面为2386,所以柱面2387~9733都是空闲的),于是可以新建一个100M的分区。2.用fdisk新建一个分区。[root@linux/]#fdisk/dev/hdaThenumberofcylindersforthisdiskissetto9733.Thereisnothingwrongwiththat,butthisislargerthan1024,andcouldincertainsetupscauseproblemswith:1)softwarethatrunsatboottime(e.g.,oldversionsofLILO)2)boot
5、ingandpartitioningsoftwarefromotherOSs(e.g.,DOSFDISK,OS/2FDISK)Command(mforhelp):nFirstcylinder(2387-9733,default2387):2387Usingdefaultvalue2387Lastcylinderor+sizeor+sizeMor+sizeK(2387-9733,default9733):+100MCommand(mforhelp):wThepartitiontablehasbeenaltered!Callingioctl()tore-readp
6、artitiontable.WARNING:Re-readingthepartitiontablefailedwitherror16:Deviceorresourcebusy.Thekernelstillusestheoldtable.Thenewtablewillbeusedatthenextreboot.Syncingdisks.[root@linux/]#reboot最后的警告,要求系统重启,新的分区表才会生效。3.再查看系统的分区表,可以看到多了1个分区/dev/hda11。[root@linux/]#fdisk-lDisk/dev/hda:80.0G
7、B,80060424192bytes255heads,63sectors/track,9733cylindersUnits=cylindersof16065*512=8225280bytes69实验五文件系统和磁盘管理DeviceBootStartEndBlocksIdSystem/dev/hda1*11310439183Linux/dev/hda214128810241437+83Linux/dev/hda3128914151020127+82Linuxswap/dev/hda414169733668143355Extended/dev/hda5141614
8、966506018eLinuxLVM/
此文档下载收益归作者所有