{"id":3503,"date":"2025-11-03T03:48:01","date_gmt":"2025-11-03T00:48:01","guid":{"rendered":"https:\/\/gameteam.io\/blog\/minecraft-server-on-ubuntu-22-04-linux-setup\/"},"modified":"2025-11-03T03:48:01","modified_gmt":"2025-11-03T00:48:01","slug":"minecraft-server-on-ubuntu-22-04-linux-setup","status":"publish","type":"post","link":"https:\/\/gameteam.io\/blog\/minecraft-server-on-ubuntu-22-04-linux-setup\/","title":{"rendered":"Minecraft Server on Ubuntu 22.04: Linux Setup"},"content":{"rendered":"<p>Setting up a Minecraft server on Ubuntu 22.04 gives you complete control over your game world without the bloat of a desktop environment eating your RAM. The command-line approach might seem intimidating at first, but it\u2019s actually the most efficient way to run a stable, high-performance server that won\u2019t crash when your friends all log in at once.<\/p>\n<h2 id=\"what-you-need-before-starting\">What You Need Before Starting<\/h2>\n<p>Ubuntu 22.04 LTS is the sweet spot for Minecraft hosting\u2014it\u2019s stable, supported until 2027, and doesn\u2019t waste resources on unnecessary graphical interfaces. You\u2019ll need at least 2GB of RAM for a small server (5-10 players), but 4GB is better if you\u2019re planning to use mods or host more people. A dual-core CPU works, but more cores help with chunk generation and plugin processing.<\/p>\n<p>Make sure you have SSH access to your server and sudo privileges. If you\u2019re running this on a home network, you\u2019ll also need to forward port 25565 on your router. Cloud hosting providers like DigitalOcean or AWS work great, but they can get expensive fast. <strong>Want to skip the setup headaches? GameTeam.io offers managed Minecraft hosting starting at $1\/GB with 20% off for new users.<\/strong><\/p>\n<h2 id=\"installing-java-on-ubuntu-22-04\">Installing Java on Ubuntu 22.04<\/h2>\n<p>Minecraft runs on Java, and the version matters. Java 17 is the current requirement for Minecraft 1.18 and newer, while older versions need Java 8 or 11. Here\u2019s how to install Java 17:<\/p>\n<pre><code>sudo apt update\nsudo apt install openjdk-17-jre-headless -y\njava -version<\/code><\/pre>\n<p>That last command confirms your Java installation. You should see something like \u201copenjdk version 17.0.x\u201d in the output. The headless version skips GUI components you don\u2019t need on a server, saving memory for actual gameplay.<\/p>\n<h3 id=\"creating-a-dedicated-minecraft-user\">Creating a Dedicated Minecraft User<\/h3>\n<p>Running Minecraft as root is a security nightmare. Create a dedicated user account:<\/p>\n<pre><code>sudo adduser minecraft\nsudo su - minecraft<\/code><\/pre>\n<p>This isolates your Minecraft server from system-critical processes. If something goes wrong with the server, it won\u2019t take down your entire system.<\/p>\n<h2 id=\"downloading-and-configuring-the-minecraft-server\">Downloading and Configuring the Minecraft Server<\/h2>\n<p>Navigate to your new user\u2019s home directory and create a folder for the server files:<\/p>\n<pre><code>mkdir ~\/minecraft-server\ncd ~\/minecraft-server<\/code><\/pre>\n<p>Download the latest server JAR from Mojang\u2019s official website. As of now, you can grab it with wget:<\/p>\n<pre><code>wget https:\/\/piston-data.mojang.com\/v1\/objects\/[version-hash]\/server.jar<\/code><\/pre>\n<p>Replace the URL with the current version from <a href=\"https:\/\/www.minecraft.net\/en-us\/download\/server\">Minecraft\u2019s official download page<\/a>. The first time you run the server, it\u2019ll create configuration files and exit:<\/p>\n<pre><code>java -Xmx2G -Xms1G -jar server.jar nogui<\/code><\/pre>\n<p>The <strong>-Xmx2G<\/strong> flag sets maximum memory to 2GB, while <strong>-Xms1G<\/strong> allocates 1GB at startup. Adjust these based on your available RAM\u2014just leave at least 1GB free for the operating system.<\/p>\n<h3 id=\"accepting-the-eula\">Accepting the EULA<\/h3>\n<p>Minecraft won\u2019t start until you accept the End User License Agreement. Edit the eula.txt file:<\/p>\n<pre><code>nano eula.txt<\/code><\/pre>\n<p>Change <code>eula=false<\/code> to <code>eula=true<\/code>, then save with Ctrl+X, Y, and Enter. Now you can actually start your server.<\/p>\n<h2 id=\"optimizing-server-performance-on-linux\">Optimizing Server Performance on Linux<\/h2>\n<p>The default server.properties file needs tweaking for optimal performance. Open it with nano:<\/p>\n<pre><code>nano server.properties<\/code><\/pre>\n<p>Key settings to adjust:<\/p>\n<ul>\n<li><strong>view-distance=10<\/strong> \u2013 Lower this to 6-8 if you\u2019re experiencing lag. Each chunk loaded multiplies server load.<\/li>\n<li><strong>max-players=20<\/strong> \u2013 Set this realistically based on your hardware. Don\u2019t promise 100 slots on a 2GB server.<\/li>\n<li><strong>spawn-protection=0<\/strong> \u2013 Unless you want a protected spawn area, set this to zero.<\/li>\n<li><strong>enable-command-block=true<\/strong> \u2013 Only enable if you\u2019re using command blocks for custom gameplay.<\/li>\n<\/ul>\n<p>For servers with limited resources, consider installing <strong>Paper<\/strong> or <strong>Purpur<\/strong> instead of vanilla Minecraft. These optimized server implementations reduce lag significantly without changing gameplay. You can learn more about <a href=\"https:\/\/gameteam.io\/blog\/minecraft-server-on-ubuntu-linux-hosting-setup-guide\/\">advanced Ubuntu server configurations<\/a> for better performance.<\/p>\n<h2 id=\"running-minecraft-as-a-system-service\">Running Minecraft as a System Service<\/h2>\n<p>Manually starting your server every time is annoying. Create a systemd service to handle automatic startup and restarts. Exit from the minecraft user account back to your sudo-enabled user:<\/p>\n<pre><code>exit\nsudo nano \/etc\/systemd\/system\/minecraft.service<\/code><\/pre>\n<p>Paste this configuration:<\/p>\n<pre><code>[Unit]\nDescription=Minecraft Server\nAfter=network.target\n\n[Service]\nUser=minecraft\nWorkingDirectory=\/home\/minecraft\/minecraft-server\nExecStart=\/usr\/bin\/java -Xmx2G -Xms1G -jar server.jar nogui\nRestart=on-failure\nRestartSec=10\n\n[Install]\nWantedBy=multi-user.target<\/code><\/pre>\n<p>Enable and start the service:<\/p>\n<pre><code>sudo systemctl enable minecraft\nsudo systemctl start minecraft\nsudo systemctl status minecraft<\/code><\/pre>\n<p>Your server now starts automatically on boot and restarts if it crashes. Check logs with <code>sudo journalctl -u minecraft -f<\/code> to troubleshoot issues.<\/p>\n<h2 id=\"firewall-configuration-and-port-forwarding\">Firewall Configuration and Port Forwarding<\/h2>\n<p>Ubuntu 22.04 uses UFW (Uncomplicated Firewall) by default. Allow Minecraft traffic:<\/p>\n<pre><code>sudo ufw allow 25565\/tcp\nsudo ufw enable\nsudo ufw status<\/code><\/pre>\n<p>If you\u2019re hosting from home, log into your router and forward port 25565 to your server\u2019s local IP address. Every router interface is different, but look for \u201cPort Forwarding\u201d or \u201cVirtual Server\u201d in the settings. You\u2019ll need your server\u2019s internal IP (find it with <code>ip addr show<\/code>).<\/p>\n<h3 id=\"using-a-reverse-proxy-for-multiple-servers\">Using a Reverse Proxy for Multiple Servers<\/h3>\n<p>Running multiple Minecraft servers on one machine? Install <strong>BungeeCord<\/strong> or <strong>Velocity<\/strong> as a proxy. These tools let players connect to one IP address and get routed to different servers behind the scenes. It\u2019s how large networks like Hypixel operate.<\/p>\n<h2 id=\"backup-strategies-that-actually-work\">Backup Strategies That Actually Work<\/h2>\n<p>Minecraft worlds corrupt. Players grief. Drives fail. Automate your backups or lose everything eventually. Create a simple backup script:<\/p>\n<pre><code>nano ~\/backup-minecraft.sh<\/code><\/pre>\n<p>Add this content:<\/p>\n<pre><code>#!\/bin\/bash\nBACKUP_DIR=\"\/home\/minecraft\/backups\"\nWORLD_DIR=\"\/home\/minecraft\/minecraft-server\/world\"\nDATE=$(date +%Y-%m-%d-%H%M)\n\nmkdir -p $BACKUP_DIR\ntar -czf $BACKUP_DIR\/world-backup-$DATE.tar.gz -C $WORLD_DIR .\nfind $BACKUP_DIR -name \"world-backup-*.tar.gz\" -mtime +7 -delete<\/code><\/pre>\n<p>Make it executable and add to cron:<\/p>\n<pre><code>chmod +x ~\/backup-minecraft.sh\ncrontab -e<\/code><\/pre>\n<p>Add this line to run backups daily at 3 AM:<\/p>\n<pre><code>0 3 * * * \/home\/minecraft\/backup-minecraft.sh<\/code><\/pre>\n<p>This keeps seven days of backups and automatically deletes older ones. Store critical backups offsite using <strong>rsync<\/strong> or cloud storage solutions.<\/p>\n<h2 id=\"common-issues-and-quick-fixes\">Common Issues and Quick Fixes<\/h2>\n<p><strong>Server won\u2019t start:<\/strong> Check Java version compatibility. Minecraft 1.18+ requires Java 17. Run <code>java -version<\/code> to verify.<\/p>\n<p><strong>Out of memory errors:<\/strong> Either increase the -Xmx value in your startup command or reduce view-distance in server.properties. Also check for memory leaks in plugins.<\/p>\n<p><strong>Players can\u2019t connect:<\/strong> Verify firewall rules with <code>sudo ufw status<\/code> and confirm port forwarding is configured correctly. Test with <code>telnet your-ip 25565<\/code> from an external network.<\/p>\n<p><strong>Lag spikes:<\/strong> Install <strong>Spark<\/strong> profiler to identify performance bottlenecks. Usually it\u2019s either poorly optimized plugins, too many entities, or insufficient RAM allocation.<\/p>\n<h2 id=\"faq\">FAQ<\/h2>\n<h3 id=\"can-i-run-minecraft-server-on-ubuntu-20-04-instead-of-22-04\">Can I run Minecraft server on Ubuntu 20.04 instead of 22.04?<\/h3>\n<p>Yes, the process is nearly identical. Ubuntu 20.04 LTS is still supported until 2025, but 22.04 offers better performance and newer package versions. Both work fine for Minecraft hosting.<\/p>\n<h3 id=\"how-much-ram-does-a-minecraft-server-actually-need\">How much RAM does a Minecraft server actually need?<\/h3>\n<p>Vanilla Minecraft needs 2GB minimum for 5-10 players. Add 1GB for every 10 additional players, and double that if you\u2019re running heavy modpacks. A 20-player server with plugins runs comfortably on 4-6GB.<\/p>\n<h3 id=\"should-i-use-docker-for-minecraft-on-ubuntu\">Should I use Docker for Minecraft on Ubuntu?<\/h3>\n<p>Docker adds complexity without major benefits for single-server setups. It\u2019s useful if you\u2019re running multiple isolated servers or need easy migration between hosts. For most people, a direct installation is simpler and performs better.<\/p>\n<h3 id=\"can-i-run-bedrock-and-java-servers-on-the-same-ubuntu-machine\">Can I run Bedrock and Java servers on the same Ubuntu machine?<\/h3>\n<p>Absolutely. Bedrock uses port 19132 by default, so there\u2019s no conflict with Java Edition\u2019s 25565. Just make sure you have enough RAM for both servers and configure firewall rules for both ports.<\/p>\n<h3 id=\"whats-the-best-way-to-update-my-minecraft-server\">What\u2019s the best way to update my Minecraft server?<\/h3>\n<p>Stop the server with <code>sudo systemctl stop minecraft<\/code>, backup your world folder, replace the server.jar with the new version, and restart. Always test updates on a copy of your world first\u2014some updates break plugins or change world generation.<\/p>\n<p>Running a Minecraft server on Ubuntu 22.04 gives you full control over performance, plugins, and customization that hosted solutions often restrict. The command-line setup takes an hour, but you\u2019ll have a stable server that can handle your growing player base without monthly costs scaling out of control.<\/p>\n","protected":false},"excerpt":{"rendered":"Setting up a Minecraft server on Ubuntu 22.04 gives you complete control over your game world without the&hellip;\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[4],"tags":[],"class_list":{"0":"post-3503","1":"post","2":"type-post","3":"status-publish","4":"format-standard","6":"category-minecraft-tutorials","7":"vision-entry","8":"vision-video-wrap"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Minecraft Server on Ubuntu 22.04: Linux Setup - GameTeam - Blog<\/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:\/\/gameteam.io\/blog\/minecraft-server-on-ubuntu-22-04-linux-setup\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Minecraft Server on Ubuntu 22.04: Linux Setup - GameTeam - Blog\" \/>\n<meta property=\"og:description\" content=\"Setting up a Minecraft server on Ubuntu 22.04 gives you complete control over your game world without the&hellip;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/gameteam.io\/blog\/minecraft-server-on-ubuntu-22-04-linux-setup\/\" \/>\n<meta property=\"og:site_name\" content=\"GameTeam - Blog\" \/>\n<meta property=\"article:published_time\" content=\"2025-11-03T00:48:01+00:00\" \/>\n<meta name=\"author\" content=\"gameteam\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"gameteam\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/minecraft-server-on-ubuntu-22-04-linux-setup\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/minecraft-server-on-ubuntu-22-04-linux-setup\\\/\"},\"author\":{\"name\":\"gameteam\",\"@id\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/#\\\/schema\\\/person\\\/0cc694e709c1805f635ede3a5e1dbf83\"},\"headline\":\"Minecraft Server on Ubuntu 22.04: Linux Setup\",\"datePublished\":\"2025-11-03T00:48:01+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/minecraft-server-on-ubuntu-22-04-linux-setup\\\/\"},\"wordCount\":1152,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/#organization\"},\"articleSection\":[\"Minecraft Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/gameteam.io\\\/blog\\\/minecraft-server-on-ubuntu-22-04-linux-setup\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/minecraft-server-on-ubuntu-22-04-linux-setup\\\/\",\"url\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/minecraft-server-on-ubuntu-22-04-linux-setup\\\/\",\"name\":\"Minecraft Server on Ubuntu 22.04: Linux Setup - GameTeam - Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/#website\"},\"datePublished\":\"2025-11-03T00:48:01+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/minecraft-server-on-ubuntu-22-04-linux-setup\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/gameteam.io\\\/blog\\\/minecraft-server-on-ubuntu-22-04-linux-setup\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/minecraft-server-on-ubuntu-22-04-linux-setup\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Minecraft Tutorials\",\"item\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/category\\\/minecraft-tutorials\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Minecraft Server on Ubuntu 22.04: Linux Setup\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/\",\"name\":\"GameTeam - Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/#organization\",\"name\":\"GameTeam - Blog\",\"url\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/i0.wp.com\\\/gameteam.io\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/11\\\/image_2023-11-04_031100865.png?fit=837%2C167&ssl=1\",\"contentUrl\":\"https:\\\/\\\/i0.wp.com\\\/gameteam.io\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/11\\\/image_2023-11-04_031100865.png?fit=837%2C167&ssl=1\",\"width\":837,\"height\":167,\"caption\":\"GameTeam - Blog\"},\"image\":{\"@id\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/#\\\/schema\\\/person\\\/0cc694e709c1805f635ede3a5e1dbf83\",\"name\":\"gameteam\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/i0.wp.com\\\/gameteam.io\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/11\\\/image_2023-11-17_210836342.png?resize=96%2C96&ssl=1\",\"url\":\"https:\\\/\\\/i0.wp.com\\\/gameteam.io\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/11\\\/image_2023-11-17_210836342.png?resize=96%2C96&ssl=1\",\"contentUrl\":\"https:\\\/\\\/i0.wp.com\\\/gameteam.io\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/11\\\/image_2023-11-17_210836342.png?resize=96%2C96&ssl=1\",\"caption\":\"gameteam\"},\"sameAs\":[\"https:\\\/\\\/gameteam.io\\\/blog\"],\"url\":\"https:\\\/\\\/gameteam.io\\\/blog\\\/author\\\/gameteam\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Minecraft Server on Ubuntu 22.04: Linux Setup - GameTeam - Blog","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:\/\/gameteam.io\/blog\/minecraft-server-on-ubuntu-22-04-linux-setup\/","og_locale":"en_US","og_type":"article","og_title":"Minecraft Server on Ubuntu 22.04: Linux Setup - GameTeam - Blog","og_description":"Setting up a Minecraft server on Ubuntu 22.04 gives you complete control over your game world without the&hellip;","og_url":"https:\/\/gameteam.io\/blog\/minecraft-server-on-ubuntu-22-04-linux-setup\/","og_site_name":"GameTeam - Blog","article_published_time":"2025-11-03T00:48:01+00:00","author":"gameteam","twitter_card":"summary_large_image","twitter_misc":{"Written by":"gameteam","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/gameteam.io\/blog\/minecraft-server-on-ubuntu-22-04-linux-setup\/#article","isPartOf":{"@id":"https:\/\/gameteam.io\/blog\/minecraft-server-on-ubuntu-22-04-linux-setup\/"},"author":{"name":"gameteam","@id":"https:\/\/gameteam.io\/blog\/#\/schema\/person\/0cc694e709c1805f635ede3a5e1dbf83"},"headline":"Minecraft Server on Ubuntu 22.04: Linux Setup","datePublished":"2025-11-03T00:48:01+00:00","mainEntityOfPage":{"@id":"https:\/\/gameteam.io\/blog\/minecraft-server-on-ubuntu-22-04-linux-setup\/"},"wordCount":1152,"commentCount":0,"publisher":{"@id":"https:\/\/gameteam.io\/blog\/#organization"},"articleSection":["Minecraft Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/gameteam.io\/blog\/minecraft-server-on-ubuntu-22-04-linux-setup\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/gameteam.io\/blog\/minecraft-server-on-ubuntu-22-04-linux-setup\/","url":"https:\/\/gameteam.io\/blog\/minecraft-server-on-ubuntu-22-04-linux-setup\/","name":"Minecraft Server on Ubuntu 22.04: Linux Setup - GameTeam - Blog","isPartOf":{"@id":"https:\/\/gameteam.io\/blog\/#website"},"datePublished":"2025-11-03T00:48:01+00:00","breadcrumb":{"@id":"https:\/\/gameteam.io\/blog\/minecraft-server-on-ubuntu-22-04-linux-setup\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/gameteam.io\/blog\/minecraft-server-on-ubuntu-22-04-linux-setup\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/gameteam.io\/blog\/minecraft-server-on-ubuntu-22-04-linux-setup\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/gameteam.io\/blog\/"},{"@type":"ListItem","position":2,"name":"Minecraft Tutorials","item":"https:\/\/gameteam.io\/blog\/category\/minecraft-tutorials\/"},{"@type":"ListItem","position":3,"name":"Minecraft Server on Ubuntu 22.04: Linux Setup"}]},{"@type":"WebSite","@id":"https:\/\/gameteam.io\/blog\/#website","url":"https:\/\/gameteam.io\/blog\/","name":"GameTeam - Blog","description":"","publisher":{"@id":"https:\/\/gameteam.io\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/gameteam.io\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/gameteam.io\/blog\/#organization","name":"GameTeam - Blog","url":"https:\/\/gameteam.io\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/gameteam.io\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/i0.wp.com\/gameteam.io\/blog\/wp-content\/uploads\/2023\/11\/image_2023-11-04_031100865.png?fit=837%2C167&ssl=1","contentUrl":"https:\/\/i0.wp.com\/gameteam.io\/blog\/wp-content\/uploads\/2023\/11\/image_2023-11-04_031100865.png?fit=837%2C167&ssl=1","width":837,"height":167,"caption":"GameTeam - Blog"},"image":{"@id":"https:\/\/gameteam.io\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/gameteam.io\/blog\/#\/schema\/person\/0cc694e709c1805f635ede3a5e1dbf83","name":"gameteam","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/i0.wp.com\/gameteam.io\/blog\/wp-content\/uploads\/2023\/11\/image_2023-11-17_210836342.png?resize=96%2C96&ssl=1","url":"https:\/\/i0.wp.com\/gameteam.io\/blog\/wp-content\/uploads\/2023\/11\/image_2023-11-17_210836342.png?resize=96%2C96&ssl=1","contentUrl":"https:\/\/i0.wp.com\/gameteam.io\/blog\/wp-content\/uploads\/2023\/11\/image_2023-11-17_210836342.png?resize=96%2C96&ssl=1","caption":"gameteam"},"sameAs":["https:\/\/gameteam.io\/blog"],"url":"https:\/\/gameteam.io\/blog\/author\/gameteam\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/gameteam.io\/blog\/wp-json\/wp\/v2\/posts\/3503","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/gameteam.io\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/gameteam.io\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/gameteam.io\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/gameteam.io\/blog\/wp-json\/wp\/v2\/comments?post=3503"}],"version-history":[{"count":0,"href":"https:\/\/gameteam.io\/blog\/wp-json\/wp\/v2\/posts\/3503\/revisions"}],"wp:attachment":[{"href":"https:\/\/gameteam.io\/blog\/wp-json\/wp\/v2\/media?parent=3503"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/gameteam.io\/blog\/wp-json\/wp\/v2\/categories?post=3503"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/gameteam.io\/blog\/wp-json\/wp\/v2\/tags?post=3503"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}