亚洲免费在线-亚洲免费在线播放-亚洲免费在线观看-亚洲免费在线观看视频-亚洲免费在线看-亚洲免费在线视频

Linux VPS新硬盤分區(qū)與掛載教程

系統(tǒng) 2239 0

Linux VPS新硬盤分區(qū)與掛載教程

通過此教程對(duì)未啟用的硬盤進(jìn)行分區(qū)并掛載,可以確保通過DiyVM面板 重裝系統(tǒng)是不丟失掛載分區(qū)的數(shù)據(jù)!

?

先通過fdisk -l查看目前磁盤分區(qū)狀況

?[root@MyVPS ~]#? fdisk -l
Disk /dev/xvda: 8589 MB, 8589934592 bytes
255 heads, 63 sectors/track, 1044 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/xvda1 * 1 13 104391 83 Linux
/dev/xvda2 14 1044 8281507+ 8e Linux LVM

Disk /dev/xvdb:?23.6 GB, 23622320128 bytes
255 heads, 63 sectors/track, 2871 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System

? 我們可以看到/dev/xvdb容量有23.6G,而且沒有分區(qū),接下來我們對(duì)它進(jìn)行分區(qū)和掛載
?

# fdisk /dev/xvdb

?[root@MyVPS ~]#? fdisk /dev/xvdb
The number of cylinders for this disk is set to 2871.
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)

輸入n新建分區(qū)
Command (m for help):? n
Command action
e extended
p primary partition (1-4)
p

?

--------------------------------------------------

? 選擇分區(qū)類型?
?
??? 這里有兩個(gè)選項(xiàng):?
??? p: 主分區(qū) linux上主分區(qū)最多能有4個(gè)?
??? e: 擴(kuò)展分區(qū) linux上擴(kuò)展分區(qū)只能有1個(gè),擴(kuò)展分區(qū)創(chuàng)建后不能直接使用,還要在擴(kuò)展分區(qū)上創(chuàng)建邏輯分區(qū)。?
這里我選擇的p。

--------------------------------------------------

/dev/xvdb中第1個(gè)分區(qū)

--------------------------------------------------

選擇分區(qū)個(gè)數(shù)?

可以選擇4個(gè)分區(qū),這里我只分成1個(gè)分區(qū)?

--------------------------------------------------
Partition number (1-4):? 1
First cylinder (1-2871, default 1):
Using default value 1
Last cylinder or +size or +sizeM or +sizeK (1-2871, default 2871):
Using default value 2871

輸入W保存退出
Command (m for help):? w
The partition table has been altered!
Calling ioctl() to re-read partition table.
Syncing disks.

通過上述步驟我們已將/dev/xvdb分區(qū)完成,下面我們對(duì)分區(qū)格式化并進(jìn)行掛載

將新分區(qū)xvdb1(此名稱因系統(tǒng)而異)格式化為ext3格式
?

# mkfs -t ext3 /dev/xvdb1

[root@MyVPS ~]#? mkfs -t ext3 /dev/xvdb1
mke2fs 1.39 (29-May-2006)
Filesystem label=
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
2883584 inodes, 5765319 blocks
288265 blocks (5.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=4294967296
176 block groups
32768 blocks per group, 32768 fragments per group
16384 inodes per group
Superblock backups stored on blocks:
32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208,
4096000
Writing inode tables: done
Creating journal (32768 blocks): done
Writing superblocks and filesystem accounting information: done
This filesystem will be automatically checked every 24 mounts or
180 days, whichever comes first. Use tune2fs -c or -i to override.

將新分區(qū)xvdb1掛載,我們示例掛載到/www目錄。 新建目錄/www,然后掛載:

# mkdir /www?? /*建立www目錄*/
# mount /dev/xvdb1 /www??? /*掛載到www目錄*/

完成后我們通過df -hal可以看到,新分區(qū)已經(jīng)掛載到目錄/www上了
?

[root@MyVPS ~]#? df -hal
Filesystem Size Used Avail Use% Mounted on
/dev/mapper/VolGroup00-LogVol00
5.7G 1.4G 4.1G 25% /
proc 0 0 0 - /proc
sysfs 0 0 0 - /sys
devpts 0 0 0 - /dev/pts
/dev/xvda1 99M 28M 67M 30% /boot
tmpfs 256M 0 256M 0% /dev/shm
none 0 0 0 - /proc/sys/fs/binfmt_misc
sunrpc 0 0 0 - /var/lib/nfs/rpc_pipefs
/dev/xvdb1 22G 173M 21G 1% /www

然后編輯/etc/fstab使分區(qū)在開機(jī)時(shí)自動(dòng)掛載到www

# echo "/dev/xvdb1 /www ext3 defaults 1 2" >> /etc/fstab

Linux VPS新硬盤分區(qū)與掛載教程


更多文章、技術(shù)交流、商務(wù)合作、聯(lián)系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號(hào)聯(lián)系: 360901061

您的支持是博主寫作最大的動(dòng)力,如果您喜歡我的文章,感覺我的文章對(duì)您有幫助,請(qǐng)用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點(diǎn)擊下面給點(diǎn)支持吧,站長(zhǎng)非常感激您!手機(jī)微信長(zhǎng)按不能支付解決辦法:請(qǐng)將微信支付二維碼保存到相冊(cè),切換到微信,然后點(diǎn)擊微信右上角掃一掃功能,選擇支付二維碼完成支付。

【本文對(duì)您有幫助就好】

您的支持是博主寫作最大的動(dòng)力,如果您喜歡我的文章,感覺我的文章對(duì)您有幫助,請(qǐng)用微信掃描上面二維碼支持博主2元、5元、10元、自定義金額等您想捐的金額吧,站長(zhǎng)會(huì)非常 感謝您的哦!??!

發(fā)表我的評(píng)論
最新評(píng)論 總共0條評(píng)論
主站蜘蛛池模板: 成人免费淫片免费观看 | 国产一级久久免费特黄 | 毛片色 | 国产成人亚洲综合a∨婷婷 国产成人亚洲综合欧美一部 | 亚洲 日本 欧美 中文幕 | 国产九九 | 天天干天天操天天做 | 色悠久久久久综合网小说 | 久久成人永久免费播放 | 国产成人精品久久一区二区小说 | 中文字幕综合 | 理论片黄色 | 欧美精品亚洲网站 | 亚洲成人aaa | 激情网婷婷 | 亚洲国产一区在线二区三区 | 日韩在线一区视频 | 久久国产精品久久久久久久久久 | 四虎午夜剧场 | 国产a v高清一区二区三区 | 亚洲国产成人久久 | 性新婚a大黄毛片 | 亚洲成人免费在线观看 | 在线免费观看一级毛片 | 国产成人久久 | 亚洲国产精品成人综合色在线婷婷 | 欧美性猛交xxx嘿人猛交 | 天天干精品 | 青青青爽视频在线观看 | 成年人免费网址 | 亚洲国产欧美日韩一区二区 | 台湾一级毛片永久免费 | 夜夜操天天摸 | 欧美一级成人毛片视频 | 天天做爽夜夜做爽 | 97久久久亚洲综合久久88 | 天天爽天天碰狠狠添 | 国产精品嫩草研究所永久网址 | 久久久中文字幕 | 九草视频在线 | 这里只有精品99re在线 |