2
0
mirror of https://github.com/chubin/cheat.sheets synced 2024-11-05 12:00:16 +00:00
This commit is contained in:
Igor Chubin 2017-06-04 20:46:48 +00:00
parent 269bcf2b12
commit 9b58446f59

View File

@ -1,18 +1,14 @@
# diskutil
# Utility to manage local disks and volumes (Mac OS X)
diskutil
# List all currently available disks, partitions and mounted volumes:
diskutil list
Utility to manage local disks and volumes.
- List all currently available disks, partitions and mounted volumes:
diskutil list
- Repair the file system data structures of a volume:
diskutil repairVolume /dev/diskX
- Unmount a volume:
diskutil unmountDisk /dev/diskX
- Eject a CD/DVD (unmount first):
diskutil eject /dev/disk1
# Repair the file system data structures of a volume:
diskutil repairVolume /dev/diskX
# Unmount a volume:
diskutil unmountDisk /dev/diskX
# Eject a CD/DVD (unmount first):
diskutil eject /dev/disk1