Created
July 14, 2020 20:55
-
-
Save naveenkrdy/fe0d391fa90777eb0dc3c1b643d37e7d to your computer and use it in GitHub Desktop.
4k LBA Sector Format.
This file contains 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
# Enable Universe, Multiverse and Restricted repos on ubuntu. | |
sudo add-apt-repository universe | |
sudo add-apt-repository multiverse | |
sudo add-apt-repository restricted | |
sudo apt update | |
# Install smartmontools and nvme-cli | |
sudo apt install smartmontools nvme-cli | |
# Check Supported LBA size for /dev/nvmeXnY | |
sudo smartctl -a /dev/nvme0n1 | |
# Format /dev/nvmeXnY with 4k LBA size | |
sudo nvme format -l 1 /dev/nvme0n1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment