Last active
January 22, 2022 09:28
-
-
Save mikedamoiseau/c26a089d6cb2e489d5d942a7d5ab2e29 to your computer and use it in GitHub Desktop.
mount NTFS partition with write permission on OSX Monterey (12.0)
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
Diskutil list | |
sudo mkdir /Volumes/disk2s1 | |
sudo mount -t ntfs -o rw,auto,nobrowse /dev/disk2s1 /Volumes/disk2s1 | |
Diskutil list will return something similar to this: | |
``` | |
/dev/disk0 (internal, physical): | |
#: TYPE NAME SIZE IDENTIFIER | |
0: GUID_partition_scheme *251.0 GB disk0 | |
1: EFI NO NAME 536.9 MB disk0s1 | |
2: Apple_APFS Container disk1 125.1 GB disk0s2 | |
3: Linux Filesystem 125.4 GB disk0s3 | |
/dev/disk1 (synthesized): | |
#: TYPE NAME SIZE IDENTIFIER | |
0: APFS Container Scheme - +125.1 GB disk1 | |
Physical Store disk0s2 | |
1: APFS Volume MACOSX - Data 64.3 GB disk1s1 | |
2: APFS Volume Preboot 272.1 MB disk1s2 | |
3: APFS Volume Recovery 1.1 GB disk1s3 | |
4: APFS Volume VM 1.1 GB disk1s4 | |
5: APFS Volume MACOSX 15.7 GB disk1s5 | |
6: APFS Snapshot com.apple.os.update-... 15.7 GB disk1s5s1 | |
/dev/disk2 (external, physical): | |
#: TYPE NAME SIZE IDENTIFIER | |
0: GUID_partition_scheme *640.1 GB disk2 | |
1: Microsoft Basic Data MEDIA 640.1 GB disk2s1 | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment