九色国产,午夜在线视频,新黄色网址,九九色综合,天天做夜夜做久久做狠狠,天天躁夜夜躁狠狠躁2021a,久久不卡一区二区三区

打開APP
userphoto
未登錄

開通VIP,暢享免費(fèi)電子書等14項(xiàng)超值服

開通VIP
Linux添加新硬盤、分區(qū)、格式化、自動(dòng)掛載
第一步:創(chuàng)建分區(qū)
root# fdisk  /dev/had        à進(jìn)入到新添加的硬盤中
The number of cylinders for this disk is set to 10402.
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): n           à創(chuàng)建新分區(qū)
Command action
e   extended
p   primary partition (1-4)
p                             à創(chuàng)建主分區(qū)
Partition number (1-4): 1          à新建的主分區(qū)序號(hào)
First cylinder (1-10402, default 1):
Using default value 1
Last cylinder or +size or +sizeM or +sizeK (1-10402, default 10402): +500M   à創(chuàng)建主分區(qū)大小
Command (m for help): w       à保存創(chuàng)建的主分區(qū)
第二步:使新創(chuàng)建的分區(qū)在系統(tǒng)中立即生效
root#partprobe
第三步:格式化新創(chuàng)建的分區(qū)
[root@server ~]# mkfs.ext3 /dev/hda1
mke2fs 1.39 (29-May-2006)
Filesystem label=
OS type: Linux
Block size=1024 (log=0)
Fragment size=1024 (log=0)
122400 inodes, 488848 blocks
24442 blocks (5.00%) reserved for the super user
First data block=1
Maximum filesystem blocks=67633152
60 block groups
8192 blocks per group, 8192 fragments per group
2040 inodes per group
Superblock backups stored on blocks:
8193, 24577, 40961, 57345, 73729, 204801, 221185, 401409
Writing inode tables: done
Creating journal (8192 blocks): done
Writing superblocks and filesystem accounting information: done
This filesystem will be automatically checked every 27 mounts or
180 days, whichever comes first.  Use tune2fs -c or -i to override.
[root@server ~]#
第四步:使新創(chuàng)建的分區(qū)掛載/mnt/rhce01 目錄下
Root#mount /dev/hda1 /mnt/rhce01
第五步:讓掛載在系統(tǒng)重啟后仍然有效
root# vim /etc/fstab       à編輯這個(gè)文件,添加上下面的一行,使掛載在重啟后有效;
LABEL=/1                /                       ext3    defaults        1 1
tmpfs                   /dev/shm                tmpfs   defaults        0 0
devpts                  /dev/pts                devpts  gid=5,mode=620  0 0
sysfs                   /sys                    sysfs   defaults           0 0
proc                    /proc                   proc    defaults         0 0
LABEL=SWAP-sda3         swap                    swap    defaults        0 0
/dev/hda1              /mnt/rhce01              ext3    defaults        0 0
另:
在為主機(jī)添加硬盤前,首先要了解Linux系統(tǒng)下對(duì)硬盤和分區(qū)的命名方法?! ≡贚inux下對(duì)SCSI的設(shè)備是以sd命名的,第一個(gè)scsi設(shè)備是sda,第二個(gè)是sdb。依此類推
一般主板上有兩個(gè)SCSI接口,一共可以安裝四個(gè)SCSI設(shè)備。主SCSI上的兩個(gè)設(shè)備分別對(duì)應(yīng)sda和sdb,第二個(gè)SCSI口上的兩個(gè)設(shè)備對(duì)應(yīng)sdc和sdd。
一般硬盤安裝在主SCSI的主接口上,所以是sda或者sdb,光驅(qū)一般安裝在第二個(gè)SCSI的主接口上,所以是sdc.
(IDE接口設(shè)備是用hd命名的,第一個(gè)設(shè)備是hda,第二個(gè)是hdb。依此類推.)
分區(qū)是用設(shè)備名稱加數(shù)字命名的。例如hda1代表hda這個(gè)硬盤設(shè)備上的第一個(gè)分區(qū)。
每個(gè)硬盤可以最多有四個(gè)主分區(qū),作用是1-4命名硬盤的主分區(qū)。邏輯分區(qū)是從5開始的,每多一個(gè)分區(qū),數(shù)字加1就可以。
1、給硬盤分區(qū)
fdisk /dev/sda
Command (m for help): n
Command action
e extended
p primary partition (1-4)
輸入:e
Partition number (1-4): 1
First cylinder (1-9729, default 1):回車
Last cylinder or +size or +sizeM or +sizeK (1-9729, default 9729):回車
Command (m for help):w(保存退出)
2、格式化硬盤
fdisk -l
mkfs -t ext3 /dev/sda1
Writing superblocks and filesystem accounting information:直接回車。
3、掛載
mount /dev/sda1 /test
4、開機(jī)直接掛載
編輯/etc/fstab 文件
添加:/dev/sda1 /test ext3 defaults 1 1
重啟則發(fā)選已經(jīng)掛載上去。
本文出自 “Richard Shen運(yùn)維/架構(gòu)” 博客,請(qǐng)務(wù)必保留此出處http://lxsym.blog.51cto.com/1364623/321643
本站僅提供存儲(chǔ)服務(wù),所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊舉報(bào)。
打開APP,閱讀全文并永久保存 查看更多類似文章
猜你喜歡
類似文章
硬盤重新分區(qū)后 Linux分區(qū)表的重新設(shè)置
Linux下硬盤分區(qū)詳解
[轉(zhuǎn)載]openSUSE?11.4?安裝教程(分區(qū))
Linux硬盤分區(qū)簡(jiǎn)介
linux磁盤分區(qū)詳解
安裝Ubuntu Linux分區(qū)的推薦方案和方法
更多類似文章 >>
生活服務(wù)
熱點(diǎn)新聞
分享 收藏 導(dǎo)長(zhǎng)圖 關(guān)注 下載文章
綁定賬號(hào)成功
后續(xù)可登錄賬號(hào)暢享VIP特權(quán)!
如果VIP功能使用有故障,
可點(diǎn)擊這里聯(lián)系客服!

聯(lián)系客服