tft每日頭條

 > 科技

 > linux磁盤添加及分區挂載

linux磁盤添加及分區挂載

科技 更新时间:2024-11-25 12:23:34

linux磁盤添加及分區挂載?本操作步驟是在 CentOS / 8.4 x86_64 (64bit) 系統中為一塊新的 100 GB 數據盤(設備名為/dev/vdb)創建一個單分區,今天小編就來聊一聊關于linux磁盤添加及分區挂載?接下來我們就一起去研究一下吧!

linux磁盤添加及分區挂載(Linux系統挂載磁盤後使用GPT格式化分區)1

linux磁盤添加及分區挂載

使用 GPT 分區

本操作步驟是在 CentOS / 8.4 x86_64 (64bit) 系統中為一塊新的 100 GB 數據盤(設備名為/dev/vdb)創建一個單分區。

1.查看當前磁盤信息

執行fdisk -l命令查看當前磁盤信息,可以看到當前 /dev/vdb 磁盤處于未分區狀态。

[root@instance-xxxx ~]# fdisk -l Disk /dev/vda: 20 GiB, 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 Disklabel type: dos Disk identifier: 0x013315e2 Device Boot Start End Sectors Size Id Type /dev/vda1 * 2048 41943006 41940959 20G 83 Linux Disk /dev/vdb: 100 GiB, 107374182400 bytes, 209715200 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

提示:

查看前請确認數據盤已經挂載。若未挂載,請将磁盤挂載後查看。

2.對該磁盤進行分區

  • 使用 parted 對數據盤進行分區,執行命令 parted /dev/vdb後回車。根據提示,依次操作如下:
  • 輸入 mklabel gpt後回車,轉為 GPT 分區格式;
  • 輸入 mkpart primary 1 100%後回車,劃分一個主分區,并設置其開始和結束位置;
  • 輸入align-check optimal 1 後回車,檢查分區是否對齊,若返回1,則對齊;
  • 輸入 print後回車 ,查看當前磁盤的分區表
  • 輸入 quit後回車,退出。

[root@instance-xxxx ~]# parted /dev/vdb GNU Parted 3.2 Using /dev/vdb Welcome to GNU Parted! Type 'help' to view a list of commands. (parted) mklabel gpt (parted) mkpart primary 1 100% (parted) align-check optimal 1 1 aligned (parted) print Model: Virtio Block Device (virtblk) Disk /dev/vdb: 107GB Sector size (logical/physical): 512B/512B Partition Table: gpt Disk Flags: Number Start End Size File system Name Flags 1 1049kB 107GB 107GB primary (parted) quit Information: You may need to update /etc/fstab.

3.系統重讀分區表

運行命令 partprobe ,使系統重讀分區表。

[root@instance-xxxx ~]# partprobe Warning: Unable to open /dev/sr0 read-write (Read-only file system). /dev/sr0 has been opened read-only.

4.創建文件系統

運行命令 mkfs -t <文件系統格式> /dev/vdb1 創建文件系統,本示例以 ext4 為例。

[root@instance-xxxx ~]# mkfs -t ext4 /dev/vdb1 mke2fs 1.45.6 (20-Mar-2020) Creating filesystem with 26213888 4k blocks and 6553600 inodes Filesystem UUID: 566ca5f3-5de7-4500-81d4-e41c3fbf7e6e Superblock backups stored on blocks: 32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208, 4096000, 7962624, 11239424, 20480000, 23887872 Allocating group tables: done Writing inode tables: done Creating journal (131072 blocks): done Writing superblocks and filesystem accounting information: done

5.創建挂載點并挂載文件系統

執行 mkdir <挂載點> 創建挂載點,本實例挂載至 /set 挂載點; 執行 mount /dev/vdb1 /set,将分區 /dev/vdb1 挂載到 /set; 執行 df -h ,查看目前磁盤空間和使用情況。

[root@instance-xxxx ~]# mkdir /set [root@instance-xxxx ~]# mount /dev/vdb1 /set [root@instance-xxxx ~]# df -h Filesystem Size Used Avail Use% Mounted on devtmpfs 7.9G 0 7.9G 0% /dev tmpfs 7.9G 0 7.9G 0% /dev/shm tmpfs 7.9G 620K 7.9G 1% /run tmpfs 7.9G 0 7.9G 0% /sys/fs/cgroup /dev/vda1 20G 3.6G 16G 20% / tmpfs 1.6G 0 1.6G 0% /run/user/0 /dev/vdb1 98G 61M 93G 1% /set

6.添加開機啟動配置使用 vim 編輯 /etc/fstab,在最後一行寫入磁盤挂載信息 /dev/vdb1 /set ext4 defaults,nofail 0 0,配置完成後執行 reboot -h now 重啟機器後驗證配置是否正确。

[root@instance-xxxx ~]# vim /etc/fstab /dev/vdb1 /set ext4 defaults,nofail 0 0 [root@instance-xxxx ~]# reboot -h now ... [root@instance-xxxx ~]# df -h Filesystem Size Used Avail Use% Mounted on devtmpfs 7.9G 0 7.9G 0% /dev tmpfs 7.9G 0 7.9G 0% /dev/shm tmpfs 7.9G 624K 7.9G 1% /run tmpfs 7.9G 0 7.9G 0% /sys/fs/cgroup /dev/vda1 20G 3.5G 16G 19% / /dev/vdb1 98G 61M 93G 1% /set tmpfs 1.6G 0 1.6G 0% /run/user/0

/etc/fstab 中配置信息的各列含義如下:

· device name,設備名,例如/dev/vdb1。

· mount point,系統挂載點,例如/set。

· fs-type,要挂載設備的類型,例如ext4。

· 用man fstab可以查到支持的類型。

· options,挂載時采用的參數,一般是defaults。

· dump-freq和pass-num,一般都設置為0,啟動時不檢查要挂載的設備。

,

更多精彩资讯请关注tft每日頭條,我们将持续为您更新最新资讯!

查看全部

相关科技资讯推荐

热门科技资讯推荐

网友关注

Copyright 2023-2024 - www.tftnews.com All Rights Reserved