Skip to content

Instantly share code, notes, and snippets.

@Amakata
Last active April 13, 2018 20:53
Show Gist options
  • Save Amakata/b902bdd5cf0b45b5fcf50bd4ac76fd5e to your computer and use it in GitHub Desktop.
Save Amakata/b902bdd5cf0b45b5fcf50bd4ac76fd5e to your computer and use it in GitHub Desktop.
macでiscisi経由でntfsを編集できるようにする。
# System Integrity Protection 解除
事前にリカバリモードでSystem Integrity Protectionを解除
```
csrutil disable
```
作業がおわったら
```
csrutil enable
```
する
# ntfsの書込マウントができるようにする
https://www.tuxera.com/products/tuxera-ntfs-for-mac/download/
```
brew install ntfs-3g
sudo mv /sbin/mount_ntfs /sbin/mount_ntfs.original
sudo ln -s /usr/local/sbin/mount_ntfs /sbin/mount_ntfs
```
# iscsiイニシエーター
https://github.com/iscsi-osx/iSCSIInitiator
から、ダウンロードして入れる。
# ターゲットの追加と編集
```
iscsictl add target 作成したiSCSIのIQN名,iSCSIのターゲットホスト
iscsictl login 作成したiSCSIのIQN名,iSCSIのターゲットホスト
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment