|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
如果您觉得本篇CentOSLinux教程讲得好,请记得点击右边漂浮的分享程序,把好文章分享给你的好朋友们!第一步:创立分区
root#fdisk/dev/hadà进进到新增加的硬盘中
Thenumberofcylindersforthisdiskissetto10402.
Thereisnothingwrongwiththat,butthisislargerthan1024,
andcouldincertainsetupscauseproblemswith:
1)softwarethatrunsatboottime(e.g.,oldversionsofLILO)
2)bootingandpartitioningsoftwarefromotherOSs
(e.g.,DOSFDISK,OS/2FDISK)
Command(mforhelp):nà创立新分区
Commandaction
eextended
pprimarypartition(1-4)
pà创立主分区
Partitionnumber(1-4):1à新建的主分区序号
Firstcylinder(1-10402,default1):
Usingdefaultvalue1
Lastcylinderor+sizeor+sizeMor+sizeK(1-10402,default10402):+500Mà创立主分区巨细
Command(mforhelp):wà保留创立的主分区
第二步:使新创立的分区在体系中当即失效
root#partprobe
第三步:格局化新创立的分区
[root@server~]#mkfs.ext3/dev/hda1
mke2fs1.39(29-May-2006)
Filesystemlabel=
OStype:Linux
Blocksize=1024(log=0)
Fragmentsize=1024(log=0)
122400inodes,488848blocks
24442blocks(5.00%)reservedforthesuperuser
Firstdatablock=1
Maximumfilesystemblocks=67633152
60blockgroups
8192blockspergroup,8192fragmentspergroup
2040inodespergroup
Superblockbackupsstoredonblocks:
8193,24577,40961,57345,73729,204801,221185,401409
Writinginodetables:done
Creatingjournal(8192blocks):done
Writingsuperblocksandfilesystemaccountinginformation:done
Thisfilesystemwillbeautomaticallycheckedevery27mountsor
180days,whichevercomesfirst.Usetune2fs-cor-itooverride.
[root@server~]#
第四步:使新创立的分区挂载/mnt/rhce01目次下
Root#mount/dev/hda1/mnt/rhce01
第五步:让挂载在体系重启后仍旧无效
root#vim/etc/fstabà编纂这个文件,增加高低面的一行,使挂载在重启后无效;
LABEL=/1/ext3defaults11
tmpfs/dev/shmtmpfsdefaults00
devpts/dev/ptsdevptsgid=5,mode=62000
sysfs/syssysfsdefaults00
proc/procprocdefaults00
LABEL=SWAP-sda3swapswapdefaults00
/dev/hda1/mnt/rhce01ext3defaults00
另:
在为主机增加硬盘前,起首要懂得Linux体系下对硬盘和分区的定名***。 在Linux下对SCSI的设备是以sd定名的,第一个scsi设备是sda,第二个是sdb。依此类推
一样平常主板上有两个SCSI接口,一共能够安装四个SCSI设备。主SCSI上的两个设备分离对应sda和sdb,第二个SCSI口上的两个设备对应sdc和sdd。
一样平常硬盘安装在主SCSI的主接口上,以是是sda大概sdb,光驱一样平常安装在第二个SCSI的主接口上,以是是sdc.
(IDE接口设备是用hd定名的,第一个设备是hda,第二个是hdb。依此类推.)
分区是用设备称号加数字定名的。比方hda1代表hda这个硬盘设备上的第一个分区。
每一个硬盘能够最多有四个主分区,感化是1-4定名硬盘的主分区。逻辑分区是从5入手下手的,每多一个分区,数字加1就能够。
1、给硬盘分区
fdisk/dev/sda
Command(mforhelp):n
Commandaction
eextended
pprimarypartition(1-4)
输出:e
Partitionnumber(1-4):1
Firstcylinder(1-9729,default1):回车
Lastcylinderor+sizeor+sizeMor+sizeK(1-9729,default9729):回车
Command(mforhelp):w(保留加入)
2、格局化硬盘
fdisk-l
mkfs-text3/dev/sda1
Writingsuperblocksandfilesystemaccountinginformation:间接回车。
3、挂载
mount/dev/sda1/test
4、开机间接挂载
编纂/etc/fstab 文件
增加:/dev/sda1/testext3defaults11
重启则发选已挂载上往。
如果您觉得本篇CentOSLinux教程讲得好,请记得点击右边漂浮的分享程序,把好文章分享给你的好朋友们! |
|