minecraft所有下载_如何在所有PC上备份,还原和同步您的Minecraft保存的内容

minecraft所有下载

minecraft所有下载

banner-01

Minecraft creations can be huge and intricate, so you may want to back up your saved games, just in case. With a Dropbox account, however, you can take it one step further and access your save files from any computer.

Minecraft的作品可能非常庞大且错综复杂,因此您可能需要备份保存的游戏,以防万一。 但是,使用Dropbox帐户,您可以更进一步,并可以从任何计算机访问保存文件。

保存文件在哪里? (Where Are the Save Files?)

As we mentioned in our How To Get Started With Minecraft article, the game is in the form of an executable Jar file. It creates a directory on your computer for your saved worlds and settings, but it differs depending on what OS you’re running.

正如我们在“ 如何开始Minecraft入门”一文中提到的那样,该游戏采用可执行Jar文件的形式。 它会在您的计算机上为您保存的世界和设置创建一个目录,但是根据您所运行的操作系统的不同而有所不同。

On Windows:

在Windows上:

C:\Users\username\AppData\Roaming\.minecraft

C:\ Users \用户名\ AppData \ Roaming \ .minecraft

Take note that the AppData directory is hidden, so be sure to show hidden files from within Folder Options.

请注意,AppData目录是隐藏的,因此请确保在“文件夹选项”中显示隐藏的文件。

On Mac OS:

在Mac OS上:

/Users/username/Library/Application Support/minecraft

/用户/用户名/库/应用程序支持/ minecraft

On Linux:

在Linux上:

/home/username/.minecraft

/ home /用户名/.minecraft

Take note that the .minecraft directory is hidden in your home folder, so if you’re using Nautilus, hit CTRL+H to show hidden files.

请注意,.minecraft目录隐藏在您的主文件夹中,因此,如果您使用的是Nautilus,请按CTRL + H以显示隐藏的文件。

Inside, you’ll find some files and folders, but the only really important one is the “saves” folder. Inside, you’ll find your different Minecraft worlds.

在内部,您会找到一些文件和文件夹,但是唯一真正重要的是“保存”文件夹。 在里面,您会发现自己的Minecraft世界。

save folder

The “saves” folder is what you want to back up. If you’re running a server, whatever directory the server’s executable file is in should have a folder with the world’s name. The default is just “world,” but you probably want to back up the entire server folder, so you save all of the settings as well. If you’re running a Bukkit server, this goes for double since all of your plugins will also have their own settings.

您要备份的是“保存”文件夹。 如果您正在运行服务器,则该服务器的可执行文件所在的目录均应包含一个具有世界名称的文件夹。 默认值为“世界”,但是您可能希望备份整个服务器文件夹,因此也要保存所有设置。 如果您运行的是Bukkit服务器,那么这会翻倍,因为所有插件都将具有自己的设置。

Dropbox同步 (Dropbox Synching)

Wouldn’t it be great if you could just keep your save files in one place, but have it be accessible by Minecraft on all of your computers? Using Dropbox, this is pretty easy to do.

如果仅将保存文件保存在一个地方,但是Minecraft是否可以在所有计算机上访问它,那不是很好吗? 使用Dropbox,这很容易做到。

First of all, make sure you have a backup of your save file somewhere else, in case you mess up. Next, move the “saves” folder from its original location to your Dropbox folder:

首先,请确保在其他地方有保存文件的备份,以防万一。 接下来,将“保存”文件夹从其原始位置移至您的Dropbox文件夹:

db save

To recap, you should NOT have a “saves” folder in your Minecraft settings folder. You should have one somewhere in Dropbox and saved somewhere else as a backup.

回顾一下,您的Minecraft设置文件夹中不应包含“保存”文件夹。 您应该在Dropbox的某处放置一个,并将其另存为备份。

Now comes the tricky part: you have to create “symbolic links” to that folder on your computer, using the command-line. It’s not very difficult, regardless of what system you’re on.

现在到了棘手的部分:您必须使用命令行在计算机上创建指向该文件夹的“符号链接”。 不管您使用什么系统,这都不是很困难。

On Windows:

在Windows上:

Go to Start > Accessories and right-clock on “Command Prompt.” Choose “Run as Administrator…”

转到“开始”>“附件”,然后在“命令提示符”上右击。 选择“以管理员身份运行...”

Navigate to your Minecraft directory with the following command:

使用以下命令导航到您的Minecraft目录:

cd “C:\Users\username\AppData\Roaming\.minecraft”

cd“ C:\ Users \ username \ AppData \ Roaming \ .minecraft”

The quotes will let the command execute properly even if there’s a space in there somewhere.

即使在某处有空格,引号也会使命令正确执行。

Next, make a symbolic link to your Dropbox saves folder with the following command:

接下来,使用以下命令建立指向您的Dropbox保存文件夹的符号链接:

mklink –d “saves” “C:\path\to\Dropbox\saves”

mklink –d“保存”“ C:\ path \ to \ Dropbox \ saves”

Remember to enter the proper path in place of “path\to\Dropbox”. You’ll see a message pop up if you did it correctly.

请记住输入正确的路径来代替“ path \ to \ Dropbox”。 如果操作正确,您会看到一条消息弹出。

cp mklink

On Mac OS:

在Mac OS上:

Open up Terminal and enter the following command:

打开终端并输入以下命令:

ln -s /Users/username/path/to/Dropbox/saves /Users/username/Library/Application\ Support/minecraft/saves

ln -s /用户/用户名/路径/到/ Dropbox /保存/用户/用户名/库/应用程序\支持/ minecraft /保存

Remember to fill in your username in place of “username” and enter the proper path in place of “path/to/Dropbox”.

记住,请填写用户名代替“用户名”,并输入正确的路径代替“ path / to / Dropbox”。

On Linux:

在Linux上:

Open up a terminal and enter the following command:

打开一个终端并输入以下命令:

ln –s /path/to/Dropbox/saves /home/username/.minecraft/saves

ln –s / path / to / Dropbox / saves / home /用户名/.minecraft/saves

Remember to fill in your username in place of “username” and enter the proper path in place of “path/to/Dropbox”.

记住,请填写用户名代替“用户名”,并输入正确的路径代替“ path / to / Dropbox”。

That’s it! Now, instead of having to manually copy/paste the saves folder on your computers, they’re configured to automatically use the “saves” folder in your Dropbox. We’re big Dropbox fans here at How-To Geek, but you could use another service if you like as well, such as Ubuntu One if you’re using Linux. Be sure to backup this folder to somewhere safe every so often!

而已! 现在,无需在计算机上手动复制/粘贴保存文件夹,而是将它们配置为自动使用Dropbox中的“ saves”文件夹。 我们在How-To Geek上是Dropbox的忠实粉丝,但如果您愿意,也可以使用其他服务,例如,如果使用Linux,则可以使用Ubuntu One。 确保经常将这个文件夹备份到安全的地方!

If you’re new to Minecraft and want a run-down of what it’s about, check out How To Get Started With Minecraft, a Game Geeks Love, and if you’re looking for multiplayer, check out How To Start Your Own Minecraft Server. Now go forth, fellow crafters, and build without fear!

如果您是Minecraft的新手,并且想要了解它的内容,请查看《 Minecraft入门》,《 Game Geeks Love》 ,如果您正在寻找多人游戏,请查看如何启动自己的Minecraft服务器 。 现在,同工们,继续前进,不用担心!

翻译自: https://www.howtogeek.com/60264/how-to-backup-restore-and-sync-your-minecraft-saves-on-all-your-pcs/

minecraft所有下载

在Fedora上安装和配置Minecraft服务器的步骤大致如下: 1. 打开终端并切换到root用户(如果你还不是root用户的话): ``` su - ``` 2. 安装Java开发工具包(JDK),因为Minecraft服务器需要Java环境运行。你可以通过安装OpenJDK或者Oracle JDK来实现: ``` dnf install java-1.8.0-openjdk ``` 3. 创建一个专门的用户来运行Minecraft服务器,以提升安全性: ``` useradd -r -s /bin/false minecraft ``` 4. 使用wget或curl下载Minecraft服务器的.jar文件: ``` cd /opt wget https://launcher.mojang.com/v1/objects/版本号/服务器.jar ``` 5. 将下载的文件重命名为易于识别的名称: ``` mv 服务器.jar minecraft_server.jar ``` 6. 修改服务器.jar文件的权限,确保它可执行: ``` chmod +x minecraft_server.jar ``` 7. 运行Minecraft服务器首次运行配置,它会自动生成配置文件和world数据文件夹: ``` su - minecraft -c 'java -Xmx1024M -Xms1024M -jar minecraft_server.jar nogui' ``` 这里`-Xmx1024M`和`-Xms1024M`分别指定了最大和初始分配给服务器的内存。你可以根据需要调整这个值,但不要超过你服务器的物理内存。 8. 之后,你可以通过以下命令启动Minecraft服务器: ``` su -Xmx1024M -Xms1024M -jar minecraft_server.jar nogui' ``` 9. 你可以编辑`eula.txt`文件,将`eula=false`改为`eula=true`以接受Mojang的最终用户许可协议。 10. 为了方便管理,建议创建一个shell脚本,例如`start_server.sh`,在其中包含启动服务器的命令,然后赋予其执行权限: ``` echo 'java -jar minecraft_server.jar nogui' > start_server.sh chmod +x start_server.sh ``` 11. 最后,你可以通过运行这个脚本启动服务器: ``` ./start_server.sh ``` 请记住,运行Minecraft服务器可能会占用较多的CPU和内存资源,确保你的Fedora服务器具有足够的资源。此外,你可能还需要考虑安全性、备份、服务器配置调整以及玩家管理等方面的问题。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值