Last active
April 23, 2016 17:36
-
-
Save StoneMoe/4f20585c08a05c84e3f68999a94b70de to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 1. Create Disk Image | |
# ref: | |
# FileSystem type: https://support.apple.com/en-us/HT202784 | |
cd Desktop | |
hdiutil create -size 512g -fs "Journaled HFS+" -volname "TimeMachine" -type SPARSEBUNDLE -nospotlight -verbose volume_nas_timemachine.sparsebundle | |
# 2. Move the Disk Image File to Windows SMB Share Folder | |
# 3. Mount the Disk Image through Network | |
# 4. Enable Time Machine Not Support Network Volumes | |
defaults write com.apple.systempreferences TMShowUnsupportdNetworkVolumes 1 | |
# 5. Add Volume to Time Machine | |
# if this error, type the command only, drag your mounted volume to terminal for the path | |
# ref: https://www.reddit.com/r/osx/comments/2bm082/time_machine_to_windows_7_desktop/ | |
sudo tmutil setdestination /Volumes/TimeMachine\ 1 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi....