博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
expand linux partition to new size
阅读量:6339 次
发布时间:2019-06-22

本文共 1054 字,大约阅读时间需要 3 分钟。

Ext4 filesystem supports online (that is, without unmounting) resizing with resize2fs command.

First, you have to resize the partition itself with partition editor (parted):

parted /dev/sdb

GNU Parted 2.3

Using /dev/sdb
Welcome to GNU Parted! Type 'help' to view a list of commands.
(parted) p
Model: VMware Virtual disk (scsi)
Disk /dev/sdb: 5498GB
Sector size (logical/physical): 512B/512B
Partition Table: gpt

Number Start End Size File system Name Flags

1 1049kB 3298GB 3298GB ext4

Now, use resizepart command and give partition number as its parameter (in our case, 1). When asked for new size, enter -1 (means use all space up to the last available sector on disk):

(parted) resizepart 1

Partition /dev/sdb1 is being used. Are you sure you want to continue?
Yes/No? y
End? [3298GB]? -1
(parted) q
Information: You may need to update /etc/fstab.

Now you can call the resize2fs command. No need to input anything, it will automatically grow the filesystem to the new partition size:

resize2fs -p /dev/sdb1

转载于:https://blog.51cto.com/brave8898/2094749

你可能感兴趣的文章
thunderbird 导入通讯录乱码问题解决
查看>>
使用LVS+Keepalived实现Mysql的 负载均衡Web集群系统
查看>>
[.Net线程处理系列]专题四:线程同步
查看>>
lync Topology内Replication显示红X
查看>>
yum安装crontab
查看>>
取消列隐藏
查看>>
JVM初探- 内存分配、GC原理与垃圾收集器
查看>>
Ruby和SHELL中如何遍历指定目录的文件
查看>>
LevelDB
查看>>
CentOS7下安装mysql5.6修改字符集为utf8并开放端口允许远程访问
查看>>
初尝Mcafee之在ePO中进行策略和客户端任务设置【06】
查看>>
通过案例学调优之--和 BUFFER CACHE 相关的主要 Latch
查看>>
网络开发工具应用客户端下载Dreamweaver8在Windows XP中安装详解与步骤
查看>>
事务回滚后,自增ID仍然增加。
查看>>
sql2000数据库维护计划器
查看>>
IO Foundation 3 -文件解析器 FileParser
查看>>
查询MY SQL数据库IO,查询等各种指标
查看>>
【阿里云ACE】上海新春活动,辞旧迎新嗨起来!
查看>>
收集的一些关于域控的网络命令
查看>>
Spring Boot七:Spring boot集成MyBatis
查看>>