Linux系统怎么挂载数据盘以及初始化

2022-11-13 0 771

Linux系统怎么挂载数据盘以及初始化?

新建的开发项目是用的Linux服务器,操作系统是CentOS Linux 8.2,下面我们将对新购买的服务器进行一些初始化操作,并配置相关的运行环境,以方便新项目的使用。
[root@iZbp1emne76ykf63euczfpZ ~]# cat /etc/redhat-release
CentOS Linux release 8.2.2004 (Core)
1、查看磁盘目前的初始情况
[root@iZbp1emne76ykf63euczfpZ ~]# 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: 0x4500abcf
Device     Boot Start      End  Sectors Size Id Type
/dev/vda1  *     2048 41943039 41940992  20G 83 Linux
Disk /dev/vdb: 40 GiB, 42949672960 bytes, 83886080 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、对/dev/vdb磁盘进行初始化
[root@iZbp1emne76ykf63euczfpZ ~]# fdisk /dev/vdb
Welcome to fdisk (util-linux 2.32.1).
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.
Created a new DOS disklabel with disk identifier 0x8333cdc4.
输入命令(输入“n”,按“Enter”,开始新建分区)
Command (m for help): n
Partition type
   p   primary (0 primary, 0 extended, 4 free)
   e   extended (container for logical partitions)
输入命令(输入“p”,按“Enter”,开始新建主分区)
Select (default p): p
输入命令(输入主分区编号“1”,按“Enter”)
Partition number (1-4, default 1): 1
First sector (2048-83886079, default 2048):
Last sector, +sectors or +size{K,M,G,T,P} (2048-83886079, default 83886079):
Created a new partition 1 of type ‘Linux’ and of size 40 GiB.
输入命令(输入“p”,按“Enter”),查看新建分区的详细信息
Command (m for help): p
Disk /dev/vdb: 40 GiB, 42949672960 bytes, 83886080 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: 0x8333cdc4
Device     Boot Start      End  Sectors Size Id Type
/dev/vdb1        2048 83886079 83884032  40G 83 Linux
输入命令(输入“w”,按“Enter”),保存分区表信息。
Command (m for help): w
The partition table has been altered.
Calling ioctl() to re-read partition table.
Syncing disks.
3、设置/dev/vdb1数据盘文件系统的格式
[root@iZbp1emne76ykf63euczfpZ ~]# mkfs -t ext4 /dev/vdb1
mke2fs 1.45.4 (23-Sep-2019)
Creating filesystem with 10485504 4k blocks and 2621440 inodes
Filesystem UUID: c2f07f3a-a93d-4e29-8d2b-7326f66fbf39
Superblock backups stored on blocks:
32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208,
4096000, 7962624
Allocating group tables: done
Writing inode tables: done
Creating journal (65536 blocks): done
Writing superblocks and filesystem accounting information: done
4、设置挂载的目录
[root@iZbp1emne76ykf63euczfpZ /]# mkdir www
5、将/dev/vdb1数据盘挂载到www目录
[root@iZbp1emne76ykf63euczfpZ /]# mount /dev/vdb1 /www
6、挂载成功之后,查看挂载结果
[root@iZbp1emne76ykf63euczfpZ /]# df -TH
Filesystem     Type      Size  Used Avail Use% Mounted on
devtmpfs       devtmpfs  888M     0  888M   0% /dev
tmpfs          tmpfs     904M     0  904M   0% /dev/shm
tmpfs          tmpfs     904M  484k  904M   1% /run
tmpfs          tmpfs     904M     0  904M   0% /sys/fs/cgroup
/dev/vda1      xfs        22G  2.8G   19G  13% /
tmpfs          tmpfs     181M     0  181M   0% /run/user/0
/dev/vdb1      ext4       43G   51M   40G   1% /www
7、设置开机自动挂载/dev/vdb1数据盘
查询/dev/vdb1数据盘的UUID
[root@iZbp1emne76ykf63euczfpZ /]# blkid /dev/vdb1
/dev/vdb1: UUID=”c2f07f3a-a93d-4e29-8d2b-7326f66fbf39″ TYPE=”ext4″ PARTUUID=”8333cdc4-01″
使用vi命令编辑fstab文件,将数据盘的UUID信息保存至fstab文件中。
[root@iZbp1emne76ykf63euczfpZ /]#vi /etc/fstab
#
# /etc/fstab
# Created by anaconda on Mon Aug 24 06:23:59 2020
#
# 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.
#
# After editing this file, run ‘systemctl daemon-reload’ to update systemd
# units generated from this file.
#
UUID=32f2af94-a1cd-4880-bb61-9ede22264d88 /                       xfs     defaults        0 0
UUID=c2f07f3a-a93d-4e29-8d2b-7326f66fbf39 /www ext4 defaults 0 2
按“i”,进入编辑模式。
将光标移至文件末尾,按“Enter”,添加如下内容。UUID=UUID=c2f07f3a-a93d-4e29-8d2b-7326f66fbf39 /mnt/sdc ext4 defaults 0 2
按“ESC”后,输入“:wq”,按“Enter”,保存设置并退出编辑器,至此,数据盘的操作已经完成,我们可以开始布署运行环境。

1. 本站所有资源来源于用户上传和网络,因此不包含技术服务请大家谅解!如有侵权请邮件联系客服!cheeksyu@vip.qq.com
2. 本站不保证所提供下载的资源的准确性、安全性和完整性,资源仅供下载学习之用!如有链接无法下载、失效或广告,请联系客服处理!
3. 您必须在下载后的24个小时之内,从您的电脑中彻底删除上述内容资源!如用于商业或者非法用途,与本站无关,一切后果请用户自负!
4. 如果您也有好的资源或教程,您可以投稿发布,成功分享后有积分奖励和额外收入!
5.严禁将资源用于任何违法犯罪行为,不得违反国家法律,否则责任自负,一切法律责任与本站无关

源码下载

发表评论
暂无评论