Changes between Initial Version and Version 1 of Ticket #59316, comment 10


Ignore:
Timestamp:
Nov 4, 2019, 5:43:00 PM (4 years ago)
Author:
ryandesign (Ryan Carsten Schmidt)
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #59316, comment 10

    initial v1  
    22> After installing ntfs, I have another issue with using the commands on this link.
    33>
    4 > https://trac.macports.org/wiki/howto/Ntfs3gFinder
     4> wiki:howto/Ntfs3gFinder
    55>
    66> When I use this command,
    77>
    8 > {{{sudo mv /sbin/mount_ntfs /sbin/mount_ntfs.orig
    9 >
     8> {{{
     9> sudo mv /sbin/mount_ntfs /sbin/mount_ntfs.orig
    1010> }}}
    1111>
    1212> I get this error.
    1313>
    14 > {{{ mv: rename /sbin/mount_ntfs to /sbin/mount_ntfs.orig: Read-only file system
     14> {{{
     15> mv: rename /sbin/mount_ntfs to /sbin/mount_ntfs.orig: Read-only file system
    1516> }}}
    1617This is caused by the security changes in Catalina. The system is now in a read-only file system. You can manually mount NTFS filesystems from the command line. Or, if you want to have NTFS filesystems showing up automatically in Finder (with write permission), you have to do some extra work. Besides disabling (temporarily) SIP with the command "csrutil disable", you also have to unlock the volume so you can write to it. The following link explains how to do it:
     
    1819https://github.com/osxfuse/osxfuse/wiki/NTFS-3G#auto-mount-ntfs-volumes-in-read-write-mode-on-macos-1015-catalina
    1920
    20 I haven't tried it yet, but I would follow these instructions **only** to enable writing to the filesystem (i.e., disabling SIP, unlocking the volume, and re-enabling SIP). I would not do a symbolic link ("ln -s") as suggested there, as linking to a file outside /sbin can create a security issue. Instead, I will do what is suggested in https://trac.macports.org/wiki/howto/Ntfs3gFinder: You back-up /sbin/mount_ntfs and then create a new /sbin/mount_ntfs with the script provided in https://trac.macports.org/wiki/howto/Ntfs3gFinder.
     21I haven't tried it yet, but I would follow these instructions **only** to enable writing to the filesystem (i.e., disabling SIP, unlocking the volume, and re-enabling SIP). I would not do a symbolic link ("ln -s") as suggested there, as linking to a file outside /sbin can create a security issue. Instead, I will do what is suggested in wiki:howto/Ntfs3gFinder: You back-up /sbin/mount_ntfs and then create a new /sbin/mount_ntfs with the script provided in wiki:howto/Ntfs3gFinder.