I have an external drive hooked up to my Mac, and I'm trying to determine things like, e.g., is this HFS or FAT, is it 32-bit or 64-bit, etc. It seems like there should be some trivial command that gives me this info, but I can't seem to find one. Ideas?
Asked
Active
Viewed 5.8k times
5 Answers
31
diskutil(8)
with the info
predicate will give you information about a disk or partition.

Ignacio Vazquez-Abrams
- 45,939
- 6
- 79
- 84
-
link is dead mate – Theo Jun 26 '18 at 09:22
-
2`diskutil list` also shows all available drives and volumes with their type (file-system). – Robert Nov 27 '18 at 10:04
-
2`diskutil info -all` – Shayan Oct 20 '19 at 22:48
6
Highlight the volume in finder (note, that it must be the root of the volume), and hit cmd + i. The info dialog that appears shows you the filesystem type against the Format
label.

Bryan
- 7,628
- 15
- 69
- 94
6
Running mount
in Terminal.app
also works and has way less noise when compared to diskutil info -all
.

erik.weathers
- 160
- 1
- 3
3
Unless you're wedded to doing it from the command line, use Disk Utility and it's "Info" button.

AlanGBaker
- 286
- 1
- 5