Created
December 14, 2010 17:24
-
-
Save mstrauss/740740 to your computer and use it in GitHub Desktop.
Partition with correct NetApp alignment (4k block size)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sfdisk -uS /dev/sdc <<EOF | |
64 | |
0,0 | |
0,0 | |
0,0 | |
EOF |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
NetApp has a block size of 4k (= 8 sectors). That means all partition boundaries (in blocks) must be divisable by 8.
The -uS is quite important here :)