Skip to content

Commit

Permalink
Remove outdated text
Browse files Browse the repository at this point in the history
10.11 is such an old version, we don't need to mention it here
  • Loading branch information
simeg committed Jul 7, 2020
1 parent 9c63c2c commit 15daef5
Showing 1 changed file with 0 additions and 56 deletions.
56 changes: 0 additions & 56 deletions SystemPreferences/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,59 +71,3 @@ killall Dock # Restart the Dock process
your screenshots: `mkdir -p /path/to/screenshots/`
- Then run the following command: `defaults write com.apple.screencapture
location /path/to/screenshots/ && killall SystemUIServer`

## How to write to NTFS on macOS Yosemite (10.10) and El Capitan (10.11)

### 1) Install Homebrew and Homebrew Cask

Instructions [here](https://sourabhbajaj.com/mac-setup/Homebrew/README.html).

### 2) Update Homebrew formulae

```sh
brew update
```

### 3) Install osxfuse

If you are on macOS El Capitan (10.11), install the (3.x.x) from [the
repo](https://github.com/osxfuse/osxfuse/releases).

```sh
brew cask install osxfuse
```

### 4) Install ntfs-3g

```sh
brew install ntfs-3g
```

### 5) If you are on macOS El Capitan (10.11), temporarily disable System Integrity Protection

- **Reboot** and hold `CMD + R` to get in recovery mode
- Open the terminal and type:

```sh
csrutil disable
```

- **Reboot** normally

### 6) Create a symlink for mount_ntfs

```sh
sudo mv /sbin/mount_ntfs /sbin/mount_ntfs.original
sudo ln -s /usr/local/sbin/mount_ntfs /sbin/mount_ntfs
```

### 7) If you are on macOS El Capitan (10.11), re-enable System Integrity Protection

- **Reboot** and hold `CMD + R` to get in recovery mode
- Open the terminal and type:

```sh
csrutil enable
```

- **Reboot** normally

0 comments on commit 15daef5

Please sign in to comment.