Skip to content

Instantly share code, notes, and snippets.

@ferengi82
Last active June 5, 2022 10:46
Show Gist options
  • Save ferengi82/bd49469445f03341749d74fcc3158fa7 to your computer and use it in GitHub Desktop.
Save ferengi82/bd49469445f03341749d74fcc3158fa7 to your computer and use it in GitHub Desktop.
seagate - change sector size
Download SeaChest_Lite here:
https://www.seagate.com/support/software/seachest/
In an elevated (admin) Command Prompt window, scan for your drive with the command:
Code:
SeaChest_Lite --scan
You should see your drive ID something like "PD1" for example.
Check to see if the drive supports changing the sector size using Fast Format:
Code:
SeaChest_Lite -d /dev/sg1 --showSupportedFormats
Change the format from 512e to 4Kn:
Code:
SeaChest_Lite -d /dev/sg1 --setSectorSize 4096 --confirm this-will-erase-data
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment