• Linux下调整根目录的空间大小


    原文

    一、目的

    在使用CentOS6.3版本Linux系统的时候,发现根目录(/)的空间不是很充足,而其他目录空间有很大的空闲,所以本文主要是针对现在已有的空间进行调整。首先,先来查看一下系统的空间分配情况:

     
    1. [root@CentOS-78 /]# df -h  
    2. Filesystem            Size  Used Avail Use% Mounted on  
    3. /dev/mapper/vg_centos-lv_root  
    4.                        50G   14G   34G  30% /  
    5. tmpfs                 1.9G     0  1.9G   0% /dev/shm  
    6. /dev/sda1             485M   37M  423M   8% /boot  
    7. /dev/mapper/vg_centos-lv_home  
    8.                       404G  670M  382G   1% /home  

    下面的详细步骤部分将从vg_centos-lv_home分区下取出100G的空间添加到/vg_centos-lv_root分区上去。

    二、详细步骤

    1、卸载vg_centos-lv_home分区

     
    1. [root@CentOS-78 /]# umount /home  

    此时在用df命令查看将会发现/home目录已经看不见了,如下所示:

     
    1. [root@CentOS-78 /]# df -h  
    2. Filesystem            Size  Used Avail Use% Mounted on  
    3. /dev/mapper/vg_centos-lv_root  
    4.                        50G   14G   34G  30% /  
    5. tmpfs                 1.9G     0  1.9G   0% /dev/shm  
    6. /dev/sda1             485M   37M  423M   8% /boot  

    2、从新设定vg_home-lv_home的大小

     
    1. [root@CentOS-78 /]# resize2fs -p /dev/mapper/vg_centos-lv_home 282G  
    2. resize2fs 1.41.12 (17-May-2010)  
    3. Please run 'e2fsck -f /dev/mapper/vg_centos-lv_home' first.  

    这一步设定vg_home-lv_home大小没有成功,系统提示我们先运行下面的命令,操作如下:

     
    1. [root@CentOS-78 /]# e2fsck -f /dev/mapper/vg_centos-lv_home  
    2. e2fsck 1.41.12 (17-May-2010)  
    3. Pass 1: Checking inodes, blocks, and sizes  
    4. Pass 2: Checking directory structure  
    5. Pass 3: Checking directory connectivity  
    6. Pass 4: Checking reference counts  
    7. Pass 5: Checking group summary information  
    8. /dev/mapper/vg_centos-lv_home: 1386/26836992 files (0.9% non-contiguous), 1855856/107344896 blocks  

    从新设定vg_home-lv_home的大小:

     
    1. [root@CentOS-78 /]# resize2fs -p /dev/mapper/vg_centos-lv_home 282G  
    2. resize2fs 1.41.12 (17-May-2010)  
    3. Resizing the filesystem on /dev/mapper/vg_centos-lv_home to 73924608 (4k) blocks.  
    4. Begin pass 2 (max = 43)  
    5. Relocating blocks             XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX  
    6. Begin pass 3 (max = 3276)  
    7. Scanning inode table          XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX  
    8. Begin pass 4 (max = 266)  
    9. Updating inode references     XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX  
    10. The filesystem on /dev/mapper/vg_centos-lv_home is now 73924608 blocks long.  

    检查是否成功:

     
    1. [root@CentOS-78 /]# mount /home  
    2. [root@CentOS-78 /]#  
    3. [root@CentOS-78 /]# df -h  
    4. Filesystem            Size  Used Avail Use% Mounted on  
    5. /dev/mapper/vg_centos-lv_root  
    6.                        50G   14G   34G  30% /  
    7. tmpfs                 1.9G     0  1.9G   0% /dev/shm  
    8. /dev/sda1             485M   37M  423M   8% /boot  
    9. /dev/mapper/vg_centos-lv_home  
    10.                       278G  663M  263G   1% /home  
    11. [root@CentOS-78 /]#  

    3、将lv_home逻辑分区减小到指定大小

     
    1. [root@CentOS-78 /]# lvreduce -L 282G /dev/mapper/vg_centos-lv_home  
    2.   WARNING: Reducing active and open logical volume to 282.00 GiB  
    3.   THIS MAY DESTROY YOUR DATA (filesystem etc.)  
    4. Do you really want to reduce lv_home? [y/n]: y  
    5.   Reducing logical volume lv_home to 282.00 GiB  
    6.   Logical volume lv_home successfully resized  
    7. [root@CentOS-78 /]#  

    我认为这个命令是将已经减少的100G空间拿到系统公共的区域,可以被其他分区加载和利用。

    查询卷组的信息:

     
    1. [root@CentOS-78 /]# vgdisplay  
    2.   --- Volume group ---  
    3.   VG Name               vg_centos  
    4.   System ID  
    5.   Format                lvm2  
    6.   Metadata Areas        1  
    7.   Metadata Sequence No  5  
    8.   VG Access             read/write  
    9.   VG Status             resizable  
    10.   MAX LV                0  
    11.   Cur LV                3  
    12.   Open LV               3  
    13.   Max PV                0  
    14.   Cur PV                1  
    15.   Act PV                1  
    16.   VG Size               465.27 GiB  
    17.   PE Size               4.00 MiB  
    18.   Total PE              119109  
    19.   Alloc PE / Size       86472 / 337.78 GiB  
    20.   Free  PE / Size       32637 / 127.49 GiB  
    21.   VG UUID               1k4ooN-RFV9-uyf1-uMYf-aERG-YaGs-ZNoSD6  

    Free PE / Size指定的应该是现在可在分配的空间。

    4、增加vg_centos-lv_root分区的大小

    将可用的空间添加到vg_centos-lv_root分区上面:

     
    1. [root@CentOS-78 /]# lvextend -L +127.40G /dev/mapper/vg_centos-lv_root  
    2.   Rounding up size to full physical extent 127.40 GiB  
    3.   Extending logical volume lv_root to 177.40 GiB  
    4.   Logical volume lv_root successfully resized  
    5. [root@CentOS-78 /]#  

    从新设定该分区的大小:

     
    1. [root@CentOS-78 /]# resize2fs -p /dev/mapper/vg_centos-lv_root  
    2. resize2fs 1.41.12 (17-May-2010)  
    3. Filesystem at /dev/mapper/vg_centos-lv_root is mounted on /; on-line resizing required  
    4. old desc_blocks = 4, new_desc_blocks = 12  
    5. Performing an on-line resize of /dev/mapper/vg_centos-lv_root to 46504960 (4k) blocks.  
    6. The filesystem on /dev/mapper/vg_centos-lv_root is now 46504960 blocks long.  

    5、再次查看分区大小

     
    1. [root@CentOS-78 /]# df -h  
    2. Filesystem            Size  Used Avail Use% Mounted on  
    3. /dev/mapper/vg_centos-lv_root  
    4.                       175G   14G  153G   9% /  
    5. tmpfs                 1.9G     0  1.9G   0% /dev/shm  
    6. /dev/sda1             485M   37M  423M   8% /boot  
    7. /dev/mapper/vg_centos-lv_home  
    8.                       278G  663M  263G   1% /home  

    我们发现vg_centos-lv_root分区的空间已经增加了125G,之所以比lv_home减少的空间要多25G主要是由于我们把系统所有的可用的空间都加在了lv_root分区。

    三、所遇到的问题

    1、在卸载/home目录的时候失败

    可先执行如下fuser命令,然后再umount即可:

     
    1. [root@CentOS-78 /]# fuser -m /home  
    2. [root@CentOS-78 /]#  

    2、设定完lv_home的大小,再次mount该分区时,发现用df命令无法看到给分区,此时只要在mount一次即可

    3、在设定lv_root的大小时,不要把Free PE / Size的空间全部都用上,这很可能会出现Free PE空间不足的现象,建议保留一点Free PE的空间。


    ==================================================================

    参考:

    http://hi.baidu.com/%B7%E7%B6%C0/blog/item/c4aa9a81b204dbc89023d956.html

    http://qianxunniao.iteye.com/blog/1393726

  • 相关阅读:
    枚举
    张三先唱一遍要表演的歌曲,老师觉得张三唱歌不过关,
    不断要求用户输入一个数字(假定用户输入的都是正整数
    不断要求用户输入学生姓名,输入q结束.
    要求用户输入用户名和密码,只要不是admin、888888就
    计算1到100的整数和
    c# 九九乘法表
    c#三角形
    C#循环判断密码
    什么是发动机号,发动机号码是什么?
  • 原文地址:https://www.cnblogs.com/hei-hei-hei/p/7050577.html
Copyright © 2020-2023  润新知