diff --git a/.nvmrc b/.nvmrc index e4f846d..2c02202 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -v22.10.0 +v22.13.0 diff --git a/pages/cli/format-drive.md b/pages/cli/format-drive.md new file mode 100644 index 0000000..d68f48b --- /dev/null +++ b/pages/cli/format-drive.md @@ -0,0 +1,16 @@ +# Format a Drive + +## macOS + +Some times Disk Utility cannot format a whole drive for some reason. + +``` +# Check devices +diskutil list + +# To exfat +diskutil eraseDisk EXFAT "NAME" GPT /dev/diskN + +# To fat32, with mbr + diskutil eraseDisk FAT32 "NAME" MBR /dev/diskN +```