首页 > 代码库 > 解决parted分区时The resulting partition is not properly aligned for best performance报警
解决parted分区时The resulting partition is not properly aligned for best performance报警
操作系统的sdb和sdc需要以lvm的方式给原来的分区扩容,由于是3T的磁盘,fdisk已经不能用了,只能用parted做成gpt格式。
parted /dev/sdb
mklabel gpt
用mkpart指令的时候,有个报警:
The resulting partition is not properly aligned for best performance
google了一下,找到解决方法,mark一下
# cat /sys/block/sdb/queue/optimal_io_size 1048576
# cat /sys/block/sdb/alignment_offset 0
(1048576 + 0) / 512 = 2048
用这个公式得出2048
所以用这条指令创建就行了
mkpart primary 2048s 100%
原文链接:http://rainbow.chard.org/2013/01/30/how-to-align-partitions-for-best-performance-using-parted/
解决parted分区时The resulting partition is not properly aligned for best performance报警
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。