美文网首页
云服务器挂磁盘

云服务器挂磁盘

作者: Rainy丶Wang | 来源:发表于2019-03-22 16:36 被阅读0次

    刚申请了一台华为云的服务器,安装好系统后发现有哥100G的磁盘没有挂载到服务器中。
    下面进行记录一下。

    [root@cmzw-03 ~]# df -hT
    Filesystem     Type      Size  Used Avail Use% Mounted on
    /dev/vda1      ext4       40G  1.8G   36G   5% /
    devtmpfs       devtmpfs  3.9G     0  3.9G   0% /dev
    tmpfs          tmpfs     3.9G     0  3.9G   0% /dev/shm
    tmpfs          tmpfs     3.9G  8.6M  3.9G   1% /run
    tmpfs          tmpfs     3.9G     0  3.9G   0% /sys/fs/cgroup
    tmpfs          tmpfs     783M     0  783M   0% /run/user/0
    

    没有发现磁盘的信息

    使用lsblk查询。

    [root@cmzw-03 ~]# lsblk 
    NAME   MAJ:MIN RM  SIZE RO TYPE MOUNTPOINT
    vda    253:0    0   40G  0 disk 
    vda1 253:1    0   40G  0 part /
    vdb    253:16   0  100G  0 disk 
    

    现在发现了这个100G的磁盘,应该就是这个vdb的磁盘。
    执行fdisk /dev/vdb

    [root@cmzw-03 ~]# fdisk /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 0x90b32dc0.
    
    Command (m for help): 
    

    输入“n”,按“Enter”,开始新建分区。

    Command (m for help): n
    Partition type:
       p   primary (0 primary, 0 extended, 4 free)
       e   extended
    

    表示磁盘有两种分区类型:
    "p”表示主要分区。
    "e”表示延伸分区。
    以创建一个主要分区为例,输入“p”,按“Enter”,开始创建一个主分区。
    回显类似如下信息:

    Select (default p): p
    Partition number (1-4, default 1): 
    

    “Partition number”表示主分区编号,可以选择1-4。

    以分区编号选择“1”为例,输入主分区编号“1”,按“Enter”。
    回显类似如下信息

    Partition number (1-4, default 1): 1
    First sector (2048-209715199, default 2048): 
    

    “First sector”表示初始磁柱区域,可以选择2048-20971519,默认为2048。

    以选择默认初始磁柱编号2048为例,直接按“Enter”。
    回显类似如下信息:

    First sector (2048-209715199, default 2048): 
    Using default value 2048
    Last sector, +sectors or +size{K,M,G} (2048-209715199, default 209715199): 
    

    “Last sector”表示截止磁柱区域,可以选择2048-209715199,默认为209715199。

    以选择默认截止磁柱编号209715199为例,按“Enter”。
    回显类似如下信息:

    Using default value 209715199
    Partition 1 of type Linux and of size 100 GiB is set
    
    Command (m for help):
    

    表示分区完成,即为50GB的数据盘新建了1个分区。

    输入“p”,按“Enter”,查看新建分区的详细信息。
    回显类似如下信息:

    Command (m for help): p
    
    Disk /dev/vdb: 107.4 GB, 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
    Disk label type: dos
    Disk identifier: 0x90b32dc0
    
       Device Boot      Start         End      Blocks   Id  System
    /dev/vdb1            2048   209715199   104856576   83  Linux
    
    Command (m for help): 
    

    表示新建分区“/dev/vdb1”的详细信息。

    输入“w”,按“Enter”,将分区结果写入分区表中。
    回显类似如下信息:

    Command (m for help): w
    The partition table has been altered!
    
    Calling ioctl() to re-read partition table.
    Syncing disks.
    

    执行以下命令,将新的分区表变更同步至操作系统。

    [root@cmzw-03 ~]# partprobe
    

    执行以下命令,将新建分区文件系统设为系统所需格式。
    mkfs -t 文件系统格式 /dev/vdb1
    以设置文件系统为“ext4”为例:
    mkfs -t ext4 /dev/vdb1
    回显类似如下信息:

    [root@cmzw-03 ~]# mkfs -t 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
    6553600 inodes, 26214144 blocks
    1310707 blocks (5.00%) reserved for the super user
    First data block=0
    Maximum filesystem blocks=2174746624
    800 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, 7962624, 11239424, 20480000, 23887872
    
    Allocating group tables: done                            
    Writing inode tables: done                            
    Creating journal (32768 blocks): done
    Writing superblocks and filesystem accounting information: done
    

    然后就可以把这个磁盘挂载到指定目录中了。
    命令 mount /dev/vdb1 挂载点

    [root@cmzw-03 ~]# mkdir /data
    [root@cmzw-03 ~]# mount
    mount       mountpoint  
    [root@cmzw-03 ~]# mount
    mount       mountpoint  
    [root@cmzw-03 ~]# mount /dev/vdb1 /data/
    [root@cmzw-03 ~]# df -hT
    Filesystem     Type      Size  Used Avail Use% Mounted on
    /dev/vda1      ext4       40G  1.8G   36G   5% /
    devtmpfs       devtmpfs  3.9G     0  3.9G   0% /dev
    tmpfs          tmpfs     3.9G     0  3.9G   0% /dev/shm
    tmpfs          tmpfs     3.9G  8.6M  3.9G   1% /run
    tmpfs          tmpfs     3.9G     0  3.9G   0% /sys/fs/cgroup
    tmpfs          tmpfs     783M     0  783M   0% /run/user/0
    /dev/vdb1      ext4       99G   61M   94G   1% /data
    

    设置开机自动挂载磁盘
    如果您需要在云服务器系统启动时自动挂载磁盘,不能采用在 /etc/fstab直接指定 /dev/xvdb1的方法,因为云中设备的顺序编码在关闭或者开启云服务器过程中可能发生改变,例如/dev/xvdb1可能会变成/dev/xvdb2。推荐使用UUID来配置自动挂载数据盘。
    1.执行如下命令,查询磁盘分区的UUID。
    blkid 磁盘分区
    blkid /dev/vdb1

    [root@cmzw-03 ~]# blkid /dev/vdb1
    /dev/vdb1: UUID="a4488913-9eba-4b3d-957a-d82c475c1ed6" TYPE="ext4"
    

    通过vim编辑/etc/fstab

    在末尾增加一行

    UUID=f5c5c392-4704-4475-9abc-f6a2e049f2ea /data ext4 defaults 0 0

    挂载完成

    相关文章

      网友评论

          本文标题:云服务器挂磁盘

          本文链接:https://www.haomeiwen.com/subject/godrvqtx.html