Skip to content

Instantly share code, notes, and snippets.

@JamesAndresCM
Created March 2, 2023 02:34

Revisions

  1. JamesAndresCM created this gist Mar 2, 2023.
    18 changes: 18 additions & 0 deletions ntfs-mac-m1-ventura.md
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,18 @@
    ## Install ntfs-3g
    ```
    brew tap gromgit/homebrew-fuse
    brew install --cask macfuse
    brew install ntfs-3g-mac
    ```

    ## Enable Security development in your mac (startup boot configuration -> utilities)

    ## Identify your ntfs HDD
    `diskutil list`

    ## Create new dir for mount partition
    `sudo mkdir /Volumes/NTFS`

    ## unmount disk and mount disk
    `sudo umount /dev/diskXX`
    `sudo /opt/homebrew/Cellar/ntfs-3g-mac/2022.10.3/bin/ntfs-3g /dev/diskXX /Volumes/NTFS -olocal -oallow_other`