resize2fs命令是用来增大或者收缩未加载的“ext2/ext3/ext4”文件系统的大小。
The resize2fs program will resize ext2, ext3, or ext4 file systems. It can be used to enlarge or shrink an unmounted file system located on device. If the filesystem is mounted, it can be used to expand the size of the mounted filesystem, assuming the kernel and the file system supports on-line resizing. (Modern Linux 2.6 kernels will support on- line resize for file systems mounted using ext3 and ext4; ext3 file systems will require the use of file systems with the resize_inode fea‐ ture enabled.)
语法格式:resize2fs [参数] [文件]
常用参数:
-d | 打开调试特性 |
---|---|
-p | 打印已完成的百分比进度条 |
-f | 强制执行调整大小操作,覆盖掉安全检查操作 |
-F | 开始执行调整大小前,刷新文件系统设备的缓冲区 |
参考实例
调整逻辑卷文件系统大小:
代码语言:javascript复制[root@linuxcool ~]# resize2fs /dev/linuxprobe/vo
打开调试特性:
代码语言:javascript复制[root@linuxcool ~]# resize2fs -d /dev/linuxprobe/vo
打印已完成的百分比进度条:
代码语言:javascript复制[root@linuxcool ~]# resize2fs -p /dev/linuxprobe/vo
强制执行调整大小操作,覆盖掉安全检查操作:
代码语言:javascript复制[root@linuxcool ~]# resize2fs -f /dev/linuxprobe/vo
开始执行调整大小前,刷新文件系统设备的缓冲区:
代码语言:javascript复制[root@linuxcool ~]# resize2fs -F /dev/linuxprobe/vo
https://www.linuxcool.com/resize2fs
https://blog.csdn.net/weixin_33701617/article/details/92898330?utm_medium=distribute.pc_relevant.none-task-blog-2~default~BlogCommendFromMachineLearnPai2~default-3.control&depth_1-utm_source=distribute.pc_relevant.none-task-blog-2~default~BlogCommendFromMachineLearnPai2~default-3.control
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/179644.html原文链接:https://javaforall.cn