Mac環境でNTFSパーティションに読めるマウントのシェル
ファイル名:remount_ntfs.sh
対応:
Macのシェルスクリプトです、FUSEXのインストールが不要です。brewとコントロールだけ実行する。
サンプルコード:
mountCMD="/usr/local/sbin/mount_ntfs"
mountPath="/Volumes/BOOTCAMP"
targetDisk="
# check if brew formula `mount_ntfs`
if [ ! -f $mountCMD ]; then
echo " brew formula 'ntfs-3g’ またインストールしてない."
echo “'brew install ntfs-3g’を実行してください"
echo “説明内容に従ってNTFS Serverを設定する."
exit 1
fi
echo “Which disk right on your Desktop u want to remount:\n[Default BOOTCAMP]:"
read target
if [ ! -n $target ]; then
$mountPath="/Volumes/"$target
echo $mountPath" will be remount"
fi
# if bootcamp mounted, ejct it
if mount | grep BOOTCAMP
then
targetDisk=`mount|grep -o '.*BOOTCAMP’|grep -o '^.*[0-9]s[0-9]’`
echo 'Plese wait patiently while ecjting…’
diskutil eject $targetDisk
fi
# make Bootcamp dir at '/Volumes’
if [ ! -d “$mountPath" ]; then
mkdir $mountPath
fi
sleep 8
echo “trying to mount $targetDisk on $mountPath"
echo $targetDisk
sudo -k $mountCMD $targetDisk $mountPath