![]() |
VOOZH | about |
Here is a quick tutorial on how to migrate your saved games to the cloud so you can play your levels wherever you may be.
This guide assumes that you only want one integrated Minecraft save directory. If you wish to have separate directories (e.g., for other machines: Minecraft/Linux, Minecraft/Windows, Minecraft/Toaster, etc.), then you should create them on Dropbox and change the instructions here as needed. This guide also will only sync your saved game files, not any .jar customizations (such as mods) or texture packs. If you don't know what those are, then you're probably safe. Note also that you should be careful only to play on one machine (as server) at a time using the shared save folder, otherwise you risk corrupting your saved worlds. (This warning is applicable if, for example, you and your friend share a save directory from different machines. It is unlikely to be a problem if you are only using the machines yourself.)
The first step is to download Dropbox. Dropbox is a nifty little tool that automatically syncs content to their servers and allows you to access it both online and through a client on your PC. The good thing about Dropbox is that it is cross-platform, plus available on the web and web-enabled smartphones. (Note: you can also use another cloud storage program that has a downloadable client [folder that syncs to the web], such as Google Drive, etc.)
Go to https://www.dropbox.com. You get 2GB for free automatically.
Once you have installed Dropbox, you'll need to know where the Dropbox folder is:
"%UserProfile%\My Documents\Dropbox". Because "My Documents" contains a space, the quotation marks are required.C:\Users\username\Dropbox. Use the environmental variables %UserProfile%\Dropbox.~/DropboxWhichever operating system you are using, Dropbox has very good documentation and can assist you in finding help: http://www.dropbox.com/help
Next, we will need to make a copy of your Minecraft saved game data on the cloud Dropbox server. For the purposes of this tutorial, we will be copying the saves folder from the .minecraft folder into a folder called Minecraft inside your Dropbox folder. You can store it elsewhere in your Dropbox if you choose.
On Windows, your Minecraft data folder is in your application data folder. You can access this by holding Windows+R or hitting Start > Run and then typing %AppData%\.minecraft in the box. This will open your Minecraft folder. Copy the folder named saves to the desired location in your Dropbox. In this tutorial, we will be creating a folder called Minecraft in the main Dropbox folder and storing the saves folder inside that.
Once these files are done copying, navigate back up to your .minecraft folder, and rename the saves folder to saves-backup. This step ensures that you 1) Have a backup of your files in case of a catastrophe, and 2) allows us to make the symbolic link to the correct location in a later step.
In MacOS, the Minecraft data folder is located in your Username > Library > Application Support folder. You can get here quickly by opening Finder β Go β Go To Folder β type ~/Library/Application Support/minecraft. For future reference, it's best to make an alias for this folder and copy it to your desktop.
Now, copy the saves folder to the desired location in your Dropbox. It is a good idea to rename the original saves folder (in your minecraft Application Support folder) to saves-backup, to be saved as a backup in case something goes haywire. It also allows us to make the symbolic link to the correct location in a later step.
In Linux, your Minecraft data folder is located in your user home folder. However, it may be hidden from view. If you are using a GUI, ensure that you choose View > Show Hidden Files.
Copy the contents of the save folder to your Dropbox. As mentioned above, in this tutorial we create a folder inside the dropbox called Minecraft to store the saves folder in.
Once the copy is complete, rename the saves folder to saves-backup.
If you're command line savvy, here are the above steps in command line format.
mkdir -p ~/Dropbox/Minecraftcp -r ~/.minecraft/saves ~/Dropbox/Minecraft/savesmv ~/.minecraft/saves ~/Dropbox/saves-backupThis is the final step that will allow users to use the cloud versions of their files.
%appdata%\.minecraft) to a folder in your Dropbox.cd %appdata%\.minecraft\mklink /d /j "saves" "<dropbox_path>\Minecraft\saves"ln -s ~/Dropbox/Minecraft/saves ~/Library/Application\ Support/minecraft/savesIf you moved your Dropbox to something other than the default location youβll need to modify that first path.
saves folder over to Dropbox, drag it back and hold Alt while dropping it. This should create a symlink.ln -s ~/Dropbox/Minecraft/saves ~/.minecraft/savesIn order to link any additional computers you wish to play on, you just need to follow these steps: install Dropbox, and create the symbolic links. VoilΓ !