操做系統的sdb和sdc須要以lvm的方式給原來的分區擴容,因爲是3T的磁盤,fdisk已經不能用了,只能用parted作成gpt格式。ide
parted /dev/sdbgoogle
mklabel gptspa
用mkpart指令的時候,有個報警:操作系統
The resulting partition is not properly aligned for best performanceorm
google了一下,找到解決方法,mark一下it
# cat /sys/block/sdb/queue/optimal_io_size 1048576
# cat /sys/block/sdb/alignment_offset 0
(1048576 + 0) / 512 = 2048io
用這個公式得出2048form
因此用這條指令建立就好了class
mkpart primary 2048s 100%performance
原文連接:http://rainbow.chard.org/2013/01/30/how-to-align-partitions-for-best-performance-using-parted/