CentOS根分区扩容方法

操作环境:

[[email protected] ~]# uname -a

Linux linux 2.6.32-358.18.1.el6.x86_64#1 SMP Wed Aug 28 17:19:38 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux

现状分析:

系统有两个硬盘,第一个硬盘107G,“/”分区空间当时分区时只给了7.7G过小,空间马上占完。现在系统有第二个硬盘sdb大小为16GB,希望把sdb的所有空间加入到“/”分区中,是其空间容量从7.7GB变成7.7GB+16GB(约2.4GB)。(当然如果这里只有一个硬盘sda,有很多空间尚未使用可以进行同样的操作)

操作步骤如下:

第一步、查看本机现有分区情况

[[email protected] ~]# df -h

文件系统容量已用可用已用%% 挂载点

/dev/mapper/VolGroup-lv_root

7.7G  7.1G 155M  98% /

tmpfs                3.9G  296K 3.9G  1% /dev/shm

/dev/sda1            485M  64M 396M  14% /boot

/dev/sda3              83G  350M  79G  1% /media

第二步、查看本机的磁盘情况

[[email protected] ~]# fdisk -l

Disk /dev/sda: 107.4 GB, 107374182400 bytes

255 heads, 63 sectors/track, 13054cylinders

Units = cylinders of 16065 * 512 = 8225280bytes

Sector size (logical/physical): 512 bytes /512 bytes

I/O size (minimum/optimal): 512 bytes / 512bytes

Disk identifier: 0x000dc0ad

Device Boot      Start        End      Blocks  Id  System

/dev/sda1  *          1          64      512000  83  Linux

Partition 1 does not end on cylinder boundary.

/dev/sda2              64        2089  16264192  8e  Linux LVM

/dev/sda3            2090      13054  88076362+  83  Linux

Disk /dev/mapper/VolGroup-lv_root: 8325 MB,8325693440 bytes

255 heads, 63 sectors/track, 1012 cylinders

Units = cylinders of 16065 * 512 = 8225280bytes

Sector size (logical/physical): 512 bytes /512 bytes

I/O size (minimum/optimal): 512 bytes / 512bytes

Disk identifier: 0x00000000

Disk /dev/mapper/VolGroup-lv_swap: 8325 MB,8325693440 bytes

255 heads, 63 sectors/track, 1012 cylinders

Units = cylinders of 16065 * 512 = 8225280bytes

Sector size (logical/physical): 512 bytes /512 bytes

I/O size (minimum/optimal): 512 bytes / 512bytes

Disk identifier: 0x00000000

注意:此时还没有在EXSI5.0中添加第二块硬盘

[[email protected] ~]#

第三步、添加第二块硬盘

查看此时系统磁盘情况

[email protected] ~]# fdisk -l

Disk /dev/sda: 107.4 GB, 107374182400 bytes

255 heads, 63 sectors/track, 13054cylinders

Units = cylinders of 16065 * 512 = 8225280bytes

Sector size (logical/physical): 512 bytes /512 bytes

I/O size (minimum/optimal): 512 bytes / 512bytes

Disk identifier: 0x000dc0ad

Device Boot      Start        End      Blocks  Id  System

/dev/sda1  *          1          64      512000  83  Linux

Partition 1 does not end on cylinderboundary.

/dev/sda2              64        2089  16264192  8e  Linux LVM

/dev/sda3            2090      13054  88076362+  83  Linux

Disk /dev/sdb: 17.2 GB, 17179869184 bytes

255 heads, 63 sectors/track, 2088 cylinders

Units = cylinders of 16065 * 512 = 8225280bytes

Sector size (logical/physical): 512 bytes /512 bytes

I/O size (minimum/optimal): 512 bytes / 512bytes

Disk identifier: 0x00000000

Disk /dev/mapper/VolGroup-lv_root: 8325 MB,8325693440 bytes

255 heads, 63 sectors/track, 1012 cylinders

Units = cylinders of 16065 * 512 = 8225280bytes

Sector size (logical/physical): 512 bytes /512 bytes

I/O size (minimum/optimal): 512 bytes / 512bytes

Disk identifier: 0x00000000

Disk /dev/mapper/VolGroup-lv_swap: 8325 MB,8325693440 bytes

255 heads, 63 sectors/track, 1012 cylinders

Units = cylinders of 16065 * 512 = 8225280bytes

Sector size (logical/physical): 512 bytes /512 bytes

I/O size (minimum/optimal): 512 bytes / 512bytes

Disk identifier: 0x00000000

可以看到我们新添加的硬盘sdb

[[email protected] ~]#

第四步、对第二块硬盘sdb进行分区

[[email protected] ~]# fdisk /dev/sdb

Device contains neither a valid DOSpartition table, nor Sun, SGI or OSF disklabel

Building a new DOS disklabel with diskidentifier 0xfa4abbdc.

Changes will remain in memory only, untilyou decide to write them.

After that, of course, the previous contentwon‘t be recoverable.

Warning: invalid flag 0x0000 of partitiontable 4 will be corrected by w(rite)

WARNING: DOS-compatible mode is deprecated.It‘s strongly recommended to

switch off the mode (command ‘c‘) and change display units to

sectors (command ‘u‘).

Command (m for help): m

Command action

a  toggle a bootable flag

b  edit bsd disklabel

c  toggle the dos compatibilityflag

d  delete a partition

l  list known partition types

m  print this menu

n  add a new partition

o  create a new empty DOSpartition table

p  print the partition table

q  quit without saving changes

s  create a new empty Sundisklabel

t  change a partition‘s system id

u  change display/entry units

v  verify the partition table

w  write table to disk and exit

x  extra functionality (expertsonly)

Command (m for help): n

Command action

e  extended

p  primary partition (1-4)

p

Partition number (1-4): 4

First cylinder (1-2088, default 1):

Using default value 1

Last cylinder, +cylinders or +size{K,M,G}(1-2088, default 2088):

Using default value 2088

Command (m for help): w

The partition table has been altered!

Calling ioctl() to re-read partition table.

Syncing disks.

说明:上面操作对sdb硬盘进行了分区操作,设为sdb4分区了(当然上面建立的主分区可以为1-4中的任意一个,我这里选择的4)。

第五步、对新建立的sdb4分区进行格式

[[email protected] ~]# mkfs.ext4 /dev/sdb4

mke2fs 1.41.12 (17-May-2010)

文件系统标签=

操作系统:Linux

块大小=4096 (log=2)

分块大小=4096 (log=2)

Stride=0 blocks, Stripe width=0 blocks

1048576 inodes, 4192957 blocks

209647 blocks (5.00%) reserved for thesuper user

第一个数据块=0

Maximum filesystem blocks=4294967296

128 block groups

32768 blocks per group, 32768 fragments pergroup

8192 inodes per group

Superblock backups stored on blocks:

32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208,

4096000

正在写入inode表: 完成

Creating journal (32768 blocks): 完成

Writing superblocks and filesystemaccounting information: done完成

This filesystem will be automaticallychecked every 20 mounts or

180 days, whichever comes first.  Use tune2fs -c or -i to override.

说明:将sdb4分区格式化为ext4格式,因为CentOS安装是系统的格式ext4,所以这里要注意一下。

第六步、格式后的sdb4分区添加为物理卷

[[email protected] ~]# pvcreate /dev/sdb4

Physical volume "/dev/sdb4" successfully created

第七步、查看当前系统的物理卷(PV)情况

[[email protected] ~]# pvdisplay

---Physical volume ---

PVName /dev/sda2

VGName VolGroup

PVSize 15.51 GiB / not usable3.00 MiB

Allocatable yes (butfull)

PESize 4.00 MiB

Total PE 3970

Free PE 0

Allocated PE 3970

PVUUID Up77sG-sNKf-Ja0k-crBf-N0wz-a5hy-T6sVFh

"/dev/sdb4" is a new physical volume of "15.99 GiB"

---NEW Physical volume ---

PVName /dev/sdb4

VGName

PVSize 15.99 GiB

Allocatable NO

PESize 0

Total PE 0

Free PE 0

Allocated PE 0

PVUUID Gqnw7N-HooX-S2Nz-1NIZ-YpOe-g0jo-grG1rQ

说明:可以看到添加的新物理卷sdb4,大小都符合我们添加时的设置

第八步、查看当前卷组情况

[[email protected] ~]# vgdisplay

---Volume group ---

VGName VolGroup

System ID

Format lvm2

Metadata Areas 1

Metadata Sequence No 3

VGAccess read/write

VGStatus resizable

MAXLV 0

CurLV 2

Open LV 2

MaxPV 0

CurPV 1

ActPV 1

VGSize 15.51 GiB

PESize 4.00 MiB

Total PE 3970

Alloc PE / Size 3970 / 15.51GiB

Free PE / Size 0 / 0

VGUUID PPrifh-glzl-nnxX-YkBm-xJ1s-rgnw-d1WsJd

第九步、将分区sdb4转换为扩展分区

[[email protected] ~]# vgextend VolGroup/dev/sdb4

Volume group "VolGroup" successfully extended

第十步、查看当前的逻辑卷

[[email protected] ~]# lvdisplay

---Logical volume ---

LVPath /dev/VolGroup/lv_root

LVName lv_root

VGName VolGroup

LVUUID dCIsej-0NWX-bVFe-bT6L-c4eY-oy4G-9lNBOC

LVWrite Access read/write

LVCreation host, time ,

LVStatus available

#open 1

LVSize 7.75 GiB

Current LE 1985

Segments 1

Allocation inherit

Read ahead sectors auto

-currently set to 256

Block device 253:0

---Logical volume ---

LVPath /dev/VolGroup/lv_swap

LVName lv_swap

VGName VolGroup

LVUUID K5bxJo-2SmM-6NCU-mBJP-Qzp1-ZODH-nbLK0k

LVWrite Access read/write

LVCreation host, time ,

LVStatus available

#open 1

LVSize 7.75 GiB

Current LE 1985

Segments 1

Allocation inherit

Read ahead sectors auto

-currently set to 256

Block device 253:1

说明:这里可以看到“/”根分区的路径名称为:/dev/VolGroup/lv_root

第十一步、查看扩展后的卷组情况

[[email protected] ~]# vgdisplay

---Volume group ---

VGName VolGroup

System ID

Format lvm2

Metadata Areas 2

Metadata Sequence No 4

VGAccess read/write

VGStatus resizable

MAXLV 0

CurLV 2

Open LV 2

MaxPV 0

CurPV 2

ActPV 2

VGSize 31.50 GiB

PESize 4.00 MiB

Total PE 8064

Alloc PE / Size 3970 / 15.51GiB

Free PE / Size 4094 / 15.99 GiB

VGUUID PPrifh-glzl-nnxX-YkBm-xJ1s-rgnw-d1WsJd

说明:扩展后的卷子情况,可以看出大小增加了16GB(与第八步中的对比)

第十二步、将新增的逻辑卷全部扩展到“/”分区中

[[email protected] ~]# lvextend -L +15.99G/dev/VolGroup/lv_root

Rounding size to boundary between physical extents: 15.99 GiB

Extending logical volume lv_root to 23.75 GiB

Logical volume lv_root successfully resized

说明:这里sdb4总共有16G,所以把16BG全部添加给根分区。

第十三步、查看“/”根分区格式,并重新刷新根分区的大小

[[email protected] ~]# e2fsck -f/dev/VolGroup/lv_root

e2fsck 1.41.12 (17-May-2010)

/dev/VolGroup/lv_root is mounted.

e2fsck: 无法继续, 中止.

[[email protected] ~]# resize2fs /dev/VolGroup/lv_root

resize2fs 1.41.12 (17-May-2010)

Filesystem at /dev/VolGroup/lv_root ismounted on /; on-line resizing required

old desc_blocks = 1, new_desc_blocks = 2

Performing an on-line resize of/dev/VolGroup/lv_root to 6224896 (4k) blocks.

The filesystem on /dev/VolGroup/lv_root isnow 6224896 blocks long.

说明:命令resize2fs即刷新根分区“/dev/VolGroup/lv_root”的容量。

第十三步、查看刷新后根分区的大小

[[email protected] ~]# df -h

文件系统容量已用可用已用%% 挂载点

/dev/mapper/VolGroup-lv_root

24G 7.1G 16G 32% /

tmpfs 3.9G 144K 3.9G 1% /dev/shm

/dev/sda3 83G 350M 79G 1% /media/Lucene

说明:可以看到根分区的大小有7.7G变成了24G,重启一下系统再来看情况。此时就可以继续安装软件了,不会提示空间不足了。

时间: 2024-10-19 13:25:42

CentOS根分区扩容方法的相关文章

从yum提示空间不足到根分区扩容

记录一次安装软件的报错 --[email protected]         1.系统版本(VMware 虚拟机) [[email protected] ~]# cat /etc/redhat-release CentOS Linux release 7.3.1611 (Core) 2.当执行yum安装软件时报如下错 Error: Error writing to file /var/cache/yum/x86_64/7/epel/gen/filelists_db.sqlite: [Errno

linux根分区扩容

今天网站上传图片出问题了,一开始还以为是程序问题,后来发现原来是服务器存储空间不够,明明有200G的磁盘空间,没理由这么快就用完,查了一下分区情况,原来有两块磁盘,根分区只挂载在大少只有10g那块磁盘上面,而且已使用了100%了!接着就要为根分区扩容了:(环境:redhat 5.2 x64) 1:查看分区情况 shell>fdisk -l Disk /dev/sda doesn't contain a valid partition table, 这句说明了190g的磁盘没分区 2:磁盘分区 s

centos7上对LVM根分区扩容vg无法添加pv故障解决

一次,我们的备份数据库的虚拟机出现了异常,备份程序异常终止.经过检查是根分区满了.如下所示:因为根分区默认是采用LVM,所以我就想着直接添加一块硬盘,然后添加到LVM里面,直接对根分区扩容.根分区扩容方式参考之前的写的博客https://blog.51cto.com/11555417/2336797但是在执行到vgextend命令时,一直提示错误,无法对vg进行扩充 Couldn't create temporary archive name.后来查询到问题所在原来是根分区满了,无法创建归档名称

Lliux单磁盘根分区扩容(非LVM)

硬件:DELL R720 系统:XEN 虚拟系统:CentOS 6.5 安装分区:总共三个/和/sawp和/boot 前言 本文适合单块磁盘扩容,比如一个物理250G的硬盘,刚开始只分配了100G,不够用,后期想在把剩余的磁盘都是用了. 一.操作,如果你是想扩容根分区(系统使用分区),分区和我一样,那就必须先进入救援模式.如果是非系统分区比如/test,这不需要进入救援模式. 最简单的方法测试方法,umoun(卸载磁盘)如果成功说明不受系统影响,如果不成功说明系统在使用,就需要先用其他设备引导系

centos7根分区扩容(适用目前主流版本)

查看根分区不够用了 1.关掉系统,从新增加一块硬盘,开机.(云主机不用关机直接添加就行) 2.fdisk –l   本次增加的磁盘叫做/dev/vdb 3.给新增加的磁盘分区: fdisk /dev/vdb 输入p,查看分区:(新加的硬盘是没有分区的,如果有 数据可以情况,输入d删除) 输入n ,创建新分区: 输入p,创建主分区 输入1,新建xvdc的第一个主分区,(或者回车即可) 回车(默认从开始分) 输入最大的柱面数,也就是磁盘的最大数:或者回车(默认最大的) 选择格式t 列出格式l 输入格

Centos7下,LVM根分区扩容

本次扩容是由于之前给gitlab分配的硬盘空间太小,只有8G.然后有一天,开发人员突然无法上传代码,gitlab网页也打不开.经过一番排查,发现是git服务器的根分区空间满了.那么就对其进行扩容. 1.gitlab是一台vbox虚拟机,所以先对该虚拟机增加一块虚拟硬盘. VBoxManage clonehd "E:\vbox\xp.vdi" "E:\vbox\xp22.vdi" 2.centos7使用的是默认分区,其格式是LVM分区格式.使用 fdisk 命令对新盘

根分区扩容

前言: 默认情况下linux的根目录做成了lvm,比如: 但如果前期分区分的不合理,那么这个空间可能很小,会影响存储数据多少.那么如何去扩展根目录的空间大小呢? 原料: 比如虚拟机新建一块磁盘用于扩容. 步骤: 一.分区并配置参数 fdisk /dev/sdc    新建sdc1分区,并分配所有空间 修改分区类型    改成8e(Linux LVM) partprobe    更新分区表 二.创建物理卷 pvcreate /dev/sdc1    创建物理卷 三.扩展物理卷组 vgdisplay

centos7根分区扩容(亲测有效)

[email protected]:~# df -h 文件系统 容量 已用 可用 已用% 挂载点 /dev/mapper/centos_test2-root 28G 14G 15G 48% / devtmpfs 1.9G 0 1.9G 0% /dev /dev/xvda1 497M 267M 231M 54% /boot fdisk -l 已经可以看到新磁盘/dev/sdb. 对新磁盘进行分区: # fdisk /dev/sdb 在fdisk的交互模式中,依次输入: n --创建新分区 p --

linux扩容根分区脚本,适合用于centos 6、centos 7版本

#!/bin/bash#auther chentongsan,time 2019-05-30#Description: 适用于系统根分区扩容,第一次.第二次.第三次--..适合用于centos 6.centos 7版本#扫描总线,识别新增添加的磁盘.echo "- - -" > /sys/class/scsi_host/host0/scanecho "- - -" > /sys/class/scsi_host/host1/scanecho "-