возможные проблемы с русскими буквами в именах файлов NTFS
http://www.applelife.ru/Soft12/NTFS_read_write_dlya_MacOS_X/1668.html
defaults write /Library/Preferences/com.apple.TimeMachine MaxSize 81920
#!/bin/sh
OSA=/usr/bin/osascript
echo OUTPUT_MUTED=`$OSA -e "output muted of (get volume settings)"`
> /etc/volume.settings
$OSA -e "set volume with output muted"
#!/bin/sh
OSA=/usr/bin/osascript
if [ -r /etc/volume.settings ]; then
. /etc/volume.settings
# If the volume wasn't muted before shutting down, unmute it on
# startup
if [ $OUTPUT_MUTED = "false" ]; then
$OSA -e "set volume without output muted"
fi
fi