{"id":114564,"date":"2026-06-06T21:02:45","date_gmt":"2026-06-06T18:02:45","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/nx-backup\/"},"modified":"2026-06-06T21:02:45","modified_gmt":"2026-06-06T18:02:45","slug":"nx-backup","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/nx-backup\/","title":{"rendered":"NX backup"},"content":{"rendered":"<p>The original author has abandoned this project, so I forked the repository to continue providing support https:\/\/github.com\/zly2006\/x-backup<br \/>\n# X Backup<\/p>\n<p>\u7b80\u4f53\u4e2d\u6587 | English<\/p>\n<p>The advanced backup mod for fabric.<\/p>\n<p>## Advantages<\/p>\n<p>&#8211; \u26a1\ufe0fLightning-Fast Speeds: Utilizes multithreading technology for rapid backup processes, completing tasks in a fraction of the time, **speeding up to 50 times faster**. [^1]<br \/>\n&#8211; \ud83d\udcbeSpace-Efficient: Implements incremental backups and automatically compresses large files, minimizing storage usage.<br \/>\n&#8211; \ud83d\udd04Seamless Restoring: Automatically restarts the server after restoring, allowing for a seamless experience.<br \/>\n&#8211; \u2728Regional Restoring: Restore only the chunks within a specified range, **Players outside the range will not be affected**.<br \/>\n&#8211; \ud83d\udee1\ufe0fFlexible Support: Designed to support both servers and clients, providing a versatile solution for all your backup needs.<br \/>\n&#8211; \u2601\ufe0fAutomatic Cloud Backup: Effortlessly back up your data to the cloud, with support for Microsoft OneDrive, ensuring your information is safe and accessible from anywhere.<\/p>\n<p>## Usage<\/p>\n<p>### Creating a Backup<\/p>\n<p>You can use the `\/xb create` command to create a new backup. This command saves the current state of the game so you can restore it later. If you want to add a note to the backup, you can add it after the command, for example:<\/p>\n<p>&#8220;`<br \/>\n\/xb create This is my first backup<br \/>\n&#8220;`<\/p>\n<p>This way, you create a backup with a note.<\/p>\n<p>### Viewing Created Backups<\/p>\n<p>If you want to view the backups you have created, you can use the `\/xb list` command. This command lists all the backups and displays the number, creation time, and note of each backup. For example:<\/p>\n<p>&#8220;`<br \/>\n\/xb list<br \/>\n&#8220;`<\/p>\n<p>This command displays the last 6 backups. If you have many backups, you can click the gray font button to view more backups.<\/p>\n<p>### Restoring a Backup<\/p>\n<p>If you want to restore to a specific backup, you can use the `\/xb restore <id>` command, where `<id>` is the number of the backup. For example:<\/p>\n<p>&#8220;`<br \/>\n\/xb restore 1<br \/>\n&#8220;`<\/p>\n<p>This command restores the game to the state of backup number 1. If you want to restore a specific range, you can use the `&#8211;chunk` parameter to specify the coordinates from which to which, for example:<\/p>\n<p>&#8220;`<br \/>\n\/xb restore 1 &#8211;chunk 0 0 10 10<br \/>\n&#8220;`<\/p>\n<p>> [!TIP]<br \/>\n> These are the x\/z coordinates of the blocks, do not confuse them with chunk coordinates.<\/p>\n<p>This will restore the game to backup 1, but only restore the area from block coordinates (0, 0) to (10, 10).<br \/>\n### Scheduled Backup Configuration<\/p>\n<p>You can set the automatic backup interval using the `\/xb backup-interval <seconds>` command. For example, if you want to automatically back up every 3 hours, you can set it like this:<\/p>\n<p>&#8220;`<br \/>\n\/xb backup-interval 10800<br \/>\n&#8220;`<\/p>\n<p>This command sets the automatic backup interval to 10,800 seconds (i.e., 3 hours).<\/p>\n<p>### Mirror Server Configuration<\/p>\n<p>If you are using a mirror server, you can use the `\/mirror` command to synchronize the latest backup from the main server. For example:<\/p>\n<p>First, you need to create a backup on the main server:<\/p>\n<p>&#8220;`<br \/>\n\/xb create<br \/>\n&#8220;`<\/p>\n<p>Then, in the mirror server configuration, set the main server&#8217;s file path (the one containing `server.properties`) and `blob_path`, and enable mirror mode:<\/p>\n<p>&#8220;`json<br \/>\n{<br \/>\n  &#8220;mirror_mode&#8221;: true,<br \/>\n  &#8220;mirror_from&#8221;: &#8220;C:\\MinecraftServer\\My-Server&#8221;,<br \/>\n  &#8220;blob_path&#8221;: &#8220;C:\\MinecraftServer\\My-Server\\blob&#8221;<br \/>\n}<br \/>\n&#8220;`<\/p>\n<p>After that, execute the `\/mirror` command. This command will synchronize the latest backup state from the main server to the mirror server. You can also add the `id` parameter to specify the backup number to synchronize:<\/p>\n<p>&#8220;`<br \/>\n\/mirror 1<br \/>\n&#8220;`<\/p>\n<p>If you want to stop the server and restore the backup, you can use the `&#8211;stop` parameter:<\/p>\n<p>&#8220;`<br \/>\n\/mirror &#8211;stop<br \/>\n&#8220;`<\/p>\n<p>### Cleaning Up Unnecessary Backups<\/p>\n<p>The mod also provides an automatic cleanup feature for old backups. You can set the `keep_policy` in the configuration file, for example:<\/p>\n<p>&#8220;`json<br \/>\n{<br \/>\n  &#8220;prune&#8221;: {<br \/>\n    &#8220;enabled&#8221;: false,<br \/>\n    &#8220;keep_policy&#8221;: {<br \/>\n      &#8220;1d&#8221;: &#8220;30m&#8221;,<br \/>\n      &#8220;1w&#8221;: &#8220;6h&#8221;,<br \/>\n      &#8220;1M&#8221;: &#8220;1d&#8221;,<br \/>\n      &#8220;1y&#8221;: &#8220;1w&#8221;,<br \/>\n      &#8220;2y&#8221;: &#8220;1M&#8221;<br \/>\n    }<br \/>\n  }<br \/>\n}<br \/>\n&#8220;`<\/p>\n<p>This configuration means:<br \/>\n&#8211; Keep backups every 30 minutes for the last 1 day<br \/>\n&#8211; Keep backups every 6 hours for the last 1 week<br \/>\n&#8211; Keep daily backups for the last 1 month<br \/>\n&#8211; Keep weekly backups for the last 1 year<br \/>\n&#8211; Keep monthly backups for the last 2 years<\/p>\n<p>You can adjust these settings according to your needs.<\/p>\n<p>When `enabled` is `true`, the mod will automatically clean up backups that do not meet the retention policy. Alternatively, you can manually clean up unnecessary backups using the `\/xb prune` command.<\/p>\n<p>### Viewing Backup Information<\/p>\n<p>If you want to view detailed information about a specific backup, you can use the `\/xb info <id>` command, for example:<\/p>\n<p>&#8220;`<br \/>\n\/xb info 1<br \/>\n&#8220;`<\/p>\n<p>This command will display detailed information about backup #1, including backup time, notes, size, etc.<\/p>\n<p>## Credits<\/p>\n<p>Some part (GUI) of this mod is based on BackupManager by CreeperHost LTD.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>The advanced backup mod for fabric fork from x-backup<\/p>\n","protected":false},"featured_media":0,"template":"","meta":{"_minecraft_slug":"nx-backup","_minecraft_project_id":"wqsbtL6W","_minecraft_author":"NagaResst","_minecraft_license":"AGPL-3.0-only","_minecraft_downloads":7,"_minecraft_follows":0,"_minecraft_client_side":"optional","_minecraft_server_side":"optional","_minecraft_storage_type":"zip","_minecraft_archive_name":"nx-backup.zip","_minecraft_size_bytes":11561262,"_minecraft_version_count":1,"_minecraft_updated_at":"2026-05-16T12:54:33.222310Z","_minecraft_date_created":"2026-05-08T01:17:29.509620Z","_minecraft_date_modified":"2026-05-04T05:51:20.562036Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/nx-backup","_minecraft_icon_attachment_id":0,"_minecraft_imported_at":"2026-06-06T18:02:46+00:00","_minecraft_import_hash":"f3107a132b4a596bed5e992b6b3bfee6","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[97],"mod_loader":[99],"minecraft_version":[41],"class_list":["post-114564","mod","type-mod","status-publish","hentry","mod_category-fabric","mod_loader-fabric","minecraft_version-1-21-11"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>NX backup - Minecraft<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/vpesports.com\/minecraft\/mods\/nx-backup\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"NX backup - Minecraft\" \/>\n<meta property=\"og:description\" content=\"The advanced backup mod for fabric fork from x-backup\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/nx-backup\/\" \/>\n<meta property=\"og:site_name\" content=\"Minecraft\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/nx-backup\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/nx-backup\\\/\",\"name\":\"NX backup - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"datePublished\":\"2026-06-06T18:02:45+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/nx-backup\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/nx-backup\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/nx-backup\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Mods\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"NX backup\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\",\"name\":\"Minecraft\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"NX backup - Minecraft","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/vpesports.com\/minecraft\/mods\/nx-backup\/","og_locale":"en_US","og_type":"article","og_title":"NX backup - Minecraft","og_description":"The advanced backup mod for fabric fork from x-backup","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/nx-backup\/","og_site_name":"Minecraft","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/vpesports.com\/minecraft\/mods\/nx-backup\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/nx-backup\/","name":"NX backup - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"datePublished":"2026-06-06T18:02:45+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/nx-backup\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/nx-backup\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/nx-backup\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/vpesports.com\/minecraft\/"},{"@type":"ListItem","position":2,"name":"Mods","item":"https:\/\/vpesports.com\/minecraft\/mods\/"},{"@type":"ListItem","position":3,"name":"NX backup"}]},{"@type":"WebSite","@id":"https:\/\/vpesports.com\/minecraft\/#website","url":"https:\/\/vpesports.com\/minecraft\/","name":"Minecraft","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/vpesports.com\/minecraft\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod\/114564","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod"}],"about":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/types\/mod"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=114564"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=114564"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=114564"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=114564"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}