博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
centos7扩展磁盘空间
阅读量:5110 次
发布时间:2019-06-13

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

[root@hn ~]# fdisk /dev/sdb

The device presents a logical sector size that is smaller than

the physical sector size. Aligning to a physical sector (or optimal
I/O) size boundary is recommended, or performance may be impacted.
欢迎使用 fdisk (util-linux 2.23.2)。

更改将停留在内存中,直到您决定将更改写入磁盘。

使用写入命令前请三思。

命令(输入 m 获取帮助):n
Partition type:
p primary (1 primary, 0 extended, 3 free)
e extended
Select (default p): p
分区号 (2-4,默认 2):
起始 扇区 (476773168-976773167,默认为 476774400):
将使用默认值 476774400
Last 扇区, +扇区 or +size{K,M,G} (476774400-976773167,默认为 976773167):
将使用默认值 976773167
分区 2 已设置为 Linux 类型,大小设为 238.4 GiB

命令(输入 m 获取帮助):w

The partition table has been altered!

Calling ioctl() to re-read partition table.

WARNING: Re-reading the partition table failed with error 16: 设备或资源忙.

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)
正在同步磁盘。
[root@hn ~]# ll /dev/sd
sda sda1 sda2 sda3 sdb sdb1
[root@hn ~]# ll /dev/sdb
sdb sdb1
[root@hn ~]# ll /dev/sdb
sdb sdb1
[root@hn ~]# partprobe

 

[root@hn ~]# mkfs.xfs /dev/sdb1

mkfs.xfs: /dev/sdb1 appears to contain an existing filesystem (LVM2_member).
mkfs.xfs: Use the -f option to force overwrite.

 

[root@hn ~]# mkfs.xfs -f /dev/sdb1

meta-data=/dev/sdb1 isize=256 agcount=4, agsize=14899098 blks
= sectsz=4096 attr=2, projid32bit=1
= crc=0 finobt=0
data = bsize=4096 blocks=59596390, imaxpct=25
= sunit=0 swidth=0 blks
naming =version 2 bsize=4096 ascii-ci=0 ftype=0
log =internal log bsize=4096 blocks=29099, version=2
= sectsz=4096 sunit=1 blks, lazy-count=1
realtime =none extsz=4096 blocks=0, rtextents=0

转载于:https://www.cnblogs.com/jenqz/p/4892127.html

你可能感兴趣的文章
hlg1414安装雷达【贪心】
查看>>
Blog文章待看
查看>>
NOI 题库 7084
查看>>
CF933A A Twisty Movement
查看>>
c++友元函数、友元类、友成员函数
查看>>
计算机体系结构--海明码
查看>>
Monitoring RMAN Backups
查看>>
spring事务传播属性
查看>>
正整数的任意进制转换
查看>>
iOS9.0 友盟分享详细过程
查看>>
c#选择打开本地图片,并在picturebox上显示
查看>>
Portal-Basic v3.1.1 beta-1 示例工程发布
查看>>
linux 用户管理命令学习
查看>>
微信app支付详细教程
查看>>
如何查看电脑配置
查看>>
转:30分钟了解Springboot整合Shiro
查看>>
WP7:模拟开始屏幕Tile漂动效果
查看>>
一、MyBatis简介与配置MyBatis+Spring+MySql
查看>>
Golang flag包使用详解(一)
查看>>
python文件IO
查看>>