Skip to content

Instantly share code, notes, and snippets.

@mstrauss
Created December 14, 2010 17:24
Show Gist options
  • Save mstrauss/740740 to your computer and use it in GitHub Desktop.
Save mstrauss/740740 to your computer and use it in GitHub Desktop.
Partition with correct NetApp alignment (4k block size)
sfdisk -uS /dev/sdc <<EOF
64
0,0
0,0
0,0
EOF
@mstrauss
Copy link
Author

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 :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment