Created
August 16, 2011 20:20
-
-
Save Zettt/1150070 to your computer and use it in GitHub Desktop.
Backing up/moving your Minecraft folder to a new location and linking back to the old location so Minecraft thinks it wasn't moved.
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
# Moving to a new location. | |
# This can actually be done in Nautilus as well. | |
mv ~/.minecraft/ /mnt/mythumbdrive/ | |
# Link back to the original location. | |
# Note how the last part needs to be the same location as in the previous command. | |
# ~ is short for /home/YOURUSER | |
ln -s /mnt/mythumdrive/minecraft/ /home/YOURUSER/.minecraft |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment