首頁 > 運維 > linux運維 > 阿里雲主機linux系統分割區格式化與掛載資料盤

阿里雲主機linux系統分割區格式化與掛載資料盤

缘亦
發布: 2021-09-10 15:37:50
原創
1984 人瀏覽過

在阿里雲除贈送的系統盤,所購買的第2塊雲盤預設是不自動掛載的,需要手動配置掛載上。

使用【管理終端機】,或遠端連線工具,輸入使用者名稱 root 和密碼登入linux系統。

1、執行fdisk -l指令查看資料盤。在沒有分割區和格式化資料磁碟之前,使用 “df –h”指令,是無法看到資料碟的,可以使用「fdisk -l」指令查看。

執行指令後,若不存在 /dev/vdb,表示沒有資料磁碟。確認資料碟是否已掛載。

2、依序執行下列指令以建立單一分割區資料盤:

(1)執行fdisk -u /dev/vdb:分割區資料碟。

(2)輸入p:查看資料盤的分割區情況。本範例中,資料盤沒有分割區。

(3)輸入n:建立一個新分割區。

(4)輸入p:選擇分割區類型為主分割區。

說明 本範例中建立一個單一分割區資料盤,所以只需要建立主分割區。如果要建立四個以上分割區,您應該建立至少一個擴充分割區,也就是選擇 e(extended)。

(5)輸入分區編號並按下回車鍵。本範例中,僅建立一個分區,輸入1。

(6)輸入第一個可用的磁區編號:按回車鍵採用預設值2048。

(7)輸入最後一個磁區編號:此範例僅建立一個分割區,按回車鍵採用預設值。

(8)輸入p:查看該資料盤的規劃分割區狀況。

(9)輸入w:開始分割區,並在分割區後退出。

[root@ecshost~ ]# fdisk -u /dev/vdb
Welcome to fdisk (util-linux 2.23.2).
Changes will remain in memory only, until you decide to write them.
Be careful before using the write command.
Device does not contain a recognized partition table
Building a new DOS disklabel with disk identifier 0x3e60020e.
 
Command (m for help): p
Disk /dev/vdb: 21.5 GB, 21474836480 bytes, 41943040 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk label type: dos
Disk identifier: 0x3e60020e
Device Boot Start End Blocks Id System
 
Command (m for help): n
Partition type:
p primary (0 primary, 0 extended, 4 free)
e extended
Select (default p): p
Partition number (1-4, default 1): 1
First sector (2048-41943039, default 2048):
Using default value 2048
Last sector, +sectors or +size{K,M,G} (2048-41943039, default 41943039):
Using default value 41943039
Partition 1 of type Linux and of size 20 GiB is set
 
Command (m for help): p
 
Disk /dev/vdb: 21.5 GB, 21474836480 bytes, 41943040 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk label type: dos
Disk identifier: 0x3e60020e
Device Boot Start End Blocks Id System
/dev/vdb1 2048 41943039 20970496 83 Linux
 
Command (m for help): w
The partition table has been altered!
 
Calling ioctl() to re-read partition table.
Syncing disks.
登入後複製

3、執行指令fdisk -lu /dev/vdb 查看新分割區。

如果出現以下訊息,表示新分割區/dev/vdb1建立成功。

[root@ecshost~ ]# fdisk -lu /dev/vdb
 
Disk /dev/vdb: 21.5 GB, 21474836480 bytes, 41943040 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk label type: dos
Disk identifier: 0x3e60020e
 
Device Boot Start End Blocks Id System
/dev/vdb1 2048 41943039 20970496 83 Linux
登入後複製

4、執行指令mkfs.ext4 /dev/vdb1在新分割區上建立一個檔案系統。

本範例中,建立一個ext4檔案系統。您也可以根據自己的需要,選擇建立其他文件系統,例如:如果您需要在 Linux、Windows和Mac系統之間共用文件,可以使用mkfs.vfat建立VFAT檔案系統。

說明 建立檔案系統所需時間取決於資料碟大小。

[root@ecshost~ ]# mkfs.ext4 /dev/vdb1
 
mke2fs 1.42.9 (28-Dec-2013)
Filesystem label=
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
Stride=0 blocks, Stripe width=0 blocks
1310720 inodes, 5242624 blocks
262131 blocks (5.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=2153775104
160 block groups
32768 blocks per group, 32768 fragments per group
8192 inodes per group
Superblock backups stored on blocks:
32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208,
4096000
 
Allocating group tables: done
Writing inode tables: done
Creating journal (32768 blocks): done
Writing superblocks and filesystem accounting information: done
登入後複製

5、(建議)執行指令cp /etc/fstab /etc/fstab.bak備份etc/fstab檔。

6、執行指令echo /dev/vdb1 /data0 ext4 defaults 0 0 >> /etc/fstab寫入新分割區資訊給/etc/fstab。

說明 Ubuntu 12.04系統不支援barrier,您需要執行指令 echo '/dev/vdb1 /data0 ext4 barrier=0 0 0' >> /etc/fstab。

如要把資料碟單獨掛載到某個資料夾,例如單獨用來存放網頁,則將指令中/data0替換成所需的掛載點路徑。

7、執行指令cat /etc/fstab檢視/etc/fstab中的新分割區資訊。

[root@ecshost~ ]# cat /etc/fstab
#
# /etc/fstab
# Created by anaconda on Wed Dec 12 07:53:08 2018
#
# Accessible filesystems, by reference, are maintained under '/dev/disk'
# See man pages fstab(5), findfs(8), mount(8) and/or blkid(8) for more info
#
UUID=d67c3b17-255b-4687-be04-f29190d37396 / ext4 defaults 1 1
/dev/vdb1 /mnt ext4 defaults 0 0
登入後複製

8、執行指令mount /dev/vdb1 /data0掛載檔案系統。

9、執行指令df -h 查看目前磁碟空間和使用情況。

出現新建檔案系統的訊息,表示掛載成功。

<div><br class="Apple-interchange-newline">[root@ecshost~ ]# df -h

Filesystem Size Used Avail Use% Mounted on
/dev/vda1 40G 1.6G 36G 5% /
devtmpfs 234M 0 234M 0% /dev
tmpfs 244M 0 244M 0% /dev/shm
tmpfs 244M 484K 244M 1% /run
tmpfs 244M 0 244M 0% /sys/fs/cgroup
tmpfs 49M 0 49M 0% /run/user/0
/dev/vdb1 20G 45M 19G 1% /mnt</div>
12345678910    [root@ecshost~ ]# df -h Filesystem Size Used Avail Use% Mounted on/dev/vda1 40G 1.6G 36G 5% /devtmpfs 234M 0 234M 0% /devtmpfs 244M 0 244M 0% /dev/shmtmpfs 244M 484K 244M 1% /runtmpfs 244M 0 244M 0% /sys/fs/cgrouptmpfs 49M 0 49M 0% /run/user/0/dev/vdb1 20G 45M 19G 1% /mnt
登入後複製

10、最後 reboot,重啟伺服器。

推薦:《linux影片教學

以上是阿里雲主機linux系統分割區格式化與掛載資料盤的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板