美文网首页
阿里云 linux 在线扩容

阿里云 linux 在线扩容

作者: 归隐小赵 | 来源:发表于2020-07-01 23:47 被阅读0次

    系统:CNTOS7.7,高板内核
    首先,安装阿里的2个工具

    yum install cloud-utils-growpart
    yum install xfsprogs
    

    运行fdisk -l命令查看现有云盘大小。

    fdisk -l
    
    Disk /dev/vda: 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: 0x000bad2b
    
       Device Boot      Start         End      Blocks   Id  System
    /dev/vda1   *        2048    83886046    41941999+  83  Linux
    

    现在云盘有107G
    使用df -h,查看当前空间

    df -h
    Filesystem     Type      Size  Used Avail Use% Mounted on
    devtmpfs       devtmpfs  869M     0  869M   0% /dev
    tmpfs          tmpfs     879M     0  879M   0% /dev/shm
    tmpfs          tmpfs     879M  460K  878M   1% /run
    tmpfs          tmpfs     879M     0  879M   0% /sys/fs/cgroup
    /dev/vda1      ext4       40G  1.8G   36G   5% /
    tmpfs          tmpfs     176M     0  176M   0% /run/user/0
    

    运行growpart <DeviceName> <PartionNumber>命令扩容分区。
    示例命令表示扩容系统盘的第一个分区(/dev/vda1)。

    growpart /dev/vda 1
    
    如果报错,就更改一下编码
    growpart /dev/vda 1
     LANG=en_US.UTF-8
    

    运行resize2fs <PartitionName>命令。
    示例命令表示为扩容系统盘的/dev/vda1分区的文件系统。

    resize2fs /dev/vda1
    
    运行成功返回值如下:
    resize2fs 1.42.9 (28-Dec-2013)
    Filesystem at /dev/vda1 is mounted on /; on-line resizing required
    old_desc_blocks = 3, new_desc_blocks = 7
    The filesystem on /dev/vda1 is now 26214139 blocks long.
    

    再次使用df -h查看空间大小,成功

    阿里云的文档还是很好的,简单清晰明了

    官方文档传送门

    相关文章

      网友评论

          本文标题:阿里云 linux 在线扩容

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