drive formatting

This commit is contained in:
Niccolo Borgioli 2025-02-01 11:16:08 +01:00
parent 914c29c087
commit 42dcee4dc0
2 changed files with 17 additions and 1 deletions

2
.nvmrc
View File

@ -1 +1 @@
v22.10.0
v22.13.0

16
pages/cli/format-drive.md Normal file
View File

@ -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
```