Introduction | I have never been exposed to CentOS 7 before and do not understand the features it has changed. I accidentally came into contact with LVM in centos 7. The method of creating LVM is the same as that in 6, but the expansion of LVM is a little different. However, the expansion using the previous method never took effect. It took me a long time to figure out the expansion method. Xfs is the default file system type of CentOS7, and different file system types have different creation, inspection, and adjustment commands. |
Xfs is the default file system type of CentOS7, and different file system types have different creation, inspection, and adjustment commands.
In the xfs file system, the partition can only be increased but not reduced.
[root@localhost ~]# ls /lib//modules/3.10.0-229.20.1.el7.x86_64/kernel/fs #查看内核所支持的所有文件系统类型 binfmt_misc.ko ceph dlm fat gfs2 lockd nfs_common overlayfs udf btrfs cifs exofs fscache isofs mbcache.ko nfsd pstore xfs cachefiles cramfs ext4 fuse jbd2 nfs nls squashfs
I have previously created a new partition and added it to vg, and the physical boundaries have also been expanded.
When extending the logical boundary, the error is reported as follows:
[root@localhost ~]# resize2fs -p /dev/mapper/centos-root resize2fs 1.42.9 (28-Dec-2013) resize2fs: Bad magic number in super-block 当尝试打开 /dev/mapper/centos-root 时 找不到有效的文件系统超级块.
First I thought of using fsck to repair it, but it didn’t work. After seeing the error message, I realized that the xfs file needs to be repaired using xfs_repair
[root@localhost ~]# fsck /dev/mapper/centos-root fsck,来自 util-linux 2.23.2 If you wish to check the consistency of an XFS filesystem or repair a damaged filesystem, see xfs_repair(8).
Then try to repair it, but it doesn't work. You need to uninstall it to repair it. This file system is mounted under /, so don't even think about it.
[root@localhost ~]# xfs_repair /dev/mapper/centos-root xfs_repair: /dev/mapper/centos-root contains a mounted filesystem xfs_repair: /dev/mapper/centos-root contains a mounted and writable filesystem fatal error -- couldn't initialize XFS library
Finally, after some research on the Internet, I found out that after the logical expansion of the xfs file system, there is still one more step to complete:
[root@localhost ~]# lvs LV VG Attr LSize Pool Origin Data% Meta% Move Log Cpy%Sync Convert root centos -wi-ao---- 95.00g swap centos -wi-ao---- 3.88g [root@localhost ~]# df -lh 文件系统 容量 已用 可用 已用% 挂载点 /dev/mapper/centos-root 46G 42G 4.5G 91% / ------------>46G devtmpfs 1.9G 0 1.9G 0% /dev tmpfs 1.9G 164K 1.9G 1% /dev/shm tmpfs 1.9G 8.7M 1.9G 1% /run tmpfs 1.9G 0 1.9G 0% /sys/fs/cgroup /dev/sda1 497M 208M 290M 42% /boot [root@localhost ~]# xfs_growfs /dev/mapper/centos-root #执行调整,扩展后需要执行此步骤 meta-data=/dev/mapper/centos-root isize=256 agcount=4, agsize=2987776 blks = sectsz=512 attr=2, projid32bit=1 = crc=0 finobt=0 data = bsize=4096 blocks=11951104, imaxpct=25 = sunit=0 swidth=0 blks naming =version 2 bsize=4096 ascii-ci=0 ftype=0 log =internal bsize=4096 blocks=5835, version=2 = sectsz=512 sunit=0 blks, lazy-count=1 realtime =none extsz=4096 blocks=0, rtextents=0 data blocks changed from 11951104 to 24903680 [root@localhost ~]# df -lh 文件系统 容量 已用 可用 已用% 挂载点 /dev/mapper/centos-root 95G 42G 54G 44% / ------------>已经完成扩展 devtmpfs 1.9G 0 1.9G 0% /dev tmpfs 1.9G 164K 1.9G 1% /dev/shm tmpfs 1.9G 8.7M 1.9G 1% /run tmpfs 1.9G 0 1.9G 0% /sys/fs/cgroup /dev/sda1 497M 208M 290M 42% /boot
xfs related common commands
xfs_admin: 调整 xfs 文件系统的各种参数 xfs_copy: 拷贝 xfs 文件系统的内容到一个或多个目标系统(并行方式) xfs_db: 调试或检测 xfs 文件系统(查看文件系统碎片等) xfs_check: 检测 xfs 文件系统的完整性 xfs_bmap: 查看一个文件的块映射 xfs_repair: 尝试修复受损的 xfs 文件系统 xfs_fsr: 碎片整理 xfs_quota: 管理 xfs 文件系统的磁盘配额 xfs_metadump: 将 xfs 文件系统的元数据 (metadata) 拷贝到一个文件中 xfs_mdrestore: 从一个文件中将元数据 (metadata) 恢复到 xfs 文件系统 xfs_growfs: 调整一个 xfs 文件系统大小(只能扩展) xfs_freeze 暂停(-f)和恢复(-u)xfs 文件系统 xfs_logprint: 打印xfs文件系统的日志 xfs_mkfile: 创建xfs文件系统 xfs_info: 查询文件系统详细信息 xfs_ncheck: generate pathnames from i-numbers for XFS xfs_rtcp: XFS实时拷贝命令 xfs_io: 调试xfs I/O路径
Notice:
After using the mke2fs command on the Xfs file system, it becomes ext2. You need to modify the corresponding file system type in the file /etc/fstab!
The above is the detailed content of Capacity expansion of xfs file system in LVM. For more information, please follow other related articles on the PHP Chinese website!

linux设备节点是应用程序和设备驱动程序沟通的一个桥梁;设备节点被创建在“/dev”,是连接内核与用户层的枢纽,相当于硬盘的inode一样的东西,记录了硬件设备的位置和信息。设备节点使用户可以与内核进行硬件的沟通,读写设备以及其他的操作。

区别:1、open是UNIX系统调用函数,而fopen是ANSIC标准中的C语言库函数;2、open的移植性没fopen好;3、fopen只能操纵普通正规文件,而open可以操作普通文件、网络套接字等;4、open无缓冲,fopen有缓冲。

端口映射又称端口转发,是指将外部主机的IP地址的端口映射到Intranet中的一台计算机,当用户访问外网IP的这个端口时,服务器自动将请求映射到对应局域网内部的机器上;可以通过使用动态或固定的公共网络IP路由ADSL宽带路由器来实现。

在linux中,eof是自定义终止符,是“END Of File”的缩写;因为是自定义的终止符,所以eof就不是固定的,可以随意的设置别名,linux中按“ctrl+d”就代表eof,eof一般会配合cat命令用于多行文本输出,指文件末尾。

在linux中,可以利用“rpm -qa pcre”命令判断pcre是否安装;rpm命令专门用于管理各项套件,使用该命令后,若结果中出现pcre的版本信息,则表示pcre已经安装,若没有出现版本信息,则表示没有安装pcre。

在linux中,交叉编译是指在一个平台上生成另一个平台上的可执行代码,即编译源代码的平台和执行源代码编译后程序的平台是两个不同的平台。使用交叉编译的原因:1、目标系统没有能力在其上进行本地编译;2、有能力进行源代码编译的平台与目标平台不同。

linux查询mac地址的方法:1、打开系统,在桌面中点击鼠标右键,选择“打开终端”;2、在终端中,执行“ifconfig”命令,查看输出结果,在输出信息第四行中紧跟“ether”单词后的字符串就是mac地址。

在linux中,rpc是远程过程调用的意思,是Reomote Procedure Call的缩写,特指一种隐藏了过程调用时实际通信细节的IPC方法;linux中通过RPC可以充分利用非共享内存的多处理器环境,提高系统资源的利用率。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver CS6
Visual web development tools

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

WebStorm Mac version
Useful JavaScript development tools

Atom editor mac version download
The most popular open source editor

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.
