原先磁盘做了分区,并且不是以 LVM 的方式做的磁盘管理,现在打算将剩下的空余容量全部分配给
/data
目录
sdb 8:16 0 20G 0 disk
└─sdb1 8:17 0 10G 0 part /data
查看原有的数据(这是我提前创建的数据)
创建命令:
for i in $(seq 1 10);do mkdir /data/test_$i;echo "this is no.$i" > /data/test_$i/test.log;done
for i in $(seq 1 10);do cat /data/test_$i/test.log;done
先用
fdisk
命令查看/dev/sdb
盘
fdisk /dev/sdb
fdisk 参数
a toggle a bootable flag # 切换可引导标志
b edit bsd disklabel # 编辑bsd磁盘标签
c toggle the dos compatibility flag # 切换dos兼容性标志
d delete a partition # 删除分区
g create a new empty GPT partition table # 创建一个新的空的GPT分区表
G create an IRIX (SGI) partition table # 创建一个IRIX(SGI)分区表
l list known partition types # 列出已知的分区类型
m print this menu # 帮助菜单
n add a new partition # 新建一个分区
o create a new empty DOS partition table # 创建一个新的空DOS分区表
p print the partition table # 打印分区表
q quit without saving changes # 退出不保存修改
s create a new empty Sun disklabel # 创建一个新的空的sun硬盘标签
t change a partition's system id # 更改分区的系统id
u change display/entry units # 更改显示/输入单位
v verify the partition table # 验证分区表
w write table to disk and exit # 将表写入磁盘并退出
x extra functionality (experts only) # 额外功能(仅限专家)
先用 p 参数参看分区表,记录起始扇区,重新分区的时候,起始扇区要一致,否则会数据丢失
Welcome to fdisk (util-linux 2.23.2).
Changes will remain in memory only, until you decide to write them.
Be careful before using the write command.
Command (m for help): p # 查看磁盘扇区
Disk /dev/sdb: 21.5 GB, 21474836480 bytes, 41943040 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk label type: dos
Disk identifier: 0x17c1b8fb
Device Boot Start End Blocks Id System
/dev/sdb1 2048 20973567 10485760 83 Linux # 起始扇区是 2048
Command (m for help): d # 删除分区,因为只有一个分区,所以直接删了,如果有多个分区,需要输入序号(扩容的话,要删除所有分区,只需要记住第一个分区的起始扇区就可以了)
Selected partition 1
Partition 1 is deleted
Command (m for help): n # 新建分区
Partition type:
p primary (0 primary, 0 extended, 4 free)
e extended
Select (default p): p # p 为主分区,e 为扩展分区(逻辑分区) [因为 ext4 只支持四个主分区]
Partition number (1-4, default 1): 1 # 主分区号码,默认按照顺序,可以直接回车
First sector (2048-41943039, default 2048): 2048 # 起始扇区,一定要和前面查看的一致
Last sector, +sectors or +size{K,M,G} (2048-41943039, default 41943039): # 结束扇区,如果是全部使用,可以直接回车,如果需要指定大小,就 +10G 表示分区大小为10G
Using default value 41943039
Partition 1 of type Linux and of size 20 GiB is set
Command (m for help): w # 将表写入磁盘并退出
The partition table has been altered!
Calling ioctl() to re-read partition table.
WARNING: Re-reading the partition table failed with error 16: Device or resource busy.
The kernel still uses the old table. The new table will be used at
the next reboot or after you run partprobe(8) or kpartx(8) # 需要执行 partprobe 或 kpartx 刷新分区表
Syncing disks.
刷新分区表
partprobe
调整分区大小
resize2fs /dev/sdb1
再次查看磁盘大小,已经从之前的10G变成了20G
sdb 8:16 0 20G 0 disk
└─sdb1 8:17 0 20G 0 part /data
再次查看文件内容,数据依然存在
for i in $(seq 1 10);do cat /data/test_$i/test.log;done
标签:扩容,分区,partition,扇区,test,分区表,fdisk,table
From: https://www.cnblogs.com/chen2ha/p/17087038.html