{"id":2540,"date":"2016-08-23T15:01:20","date_gmt":"2016-08-23T19:01:20","guid":{"rendered":"https:\/\/www.globo.tech\/learning-center\/?p=2540"},"modified":"2016-10-02T14:28:58","modified_gmt":"2016-10-02T18:28:58","slug":"install-ark-survival-evolved-server-ubuntu-14","status":"publish","type":"post","link":"https:\/\/www.globo.tech\/learning-center\/install-ark-survival-evolved-server-ubuntu-14\/","title":{"rendered":"How to install ARK: Survival Evolved Server on Ubuntu 14"},"content":{"rendered":"<p><a href=\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2016\/09\/Ark-Survival.jpg\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2016\/09\/Ark-Survival.jpg\" alt=\"Ark Survival Evolved\" width=\"759\" height=\"286\" class=\"aligncenter size-full wp-image-2641\" \/><\/a><\/p>\n<p>Ark: Survival Evolved is a popular action game that features survival-themed crafting, combat, and most notably, the ability to tame and ride dinosaurs.<\/p>\n<h2>Getting started<\/h2>\n<p>In order to install the Ark: Survival Evolved server software, you will need the following:<br \/>\n\u2022 1 Node (<a href=\"https:\/\/www.globo.tech\/cloud-server-pricing\" target=\"_blank\">Cloud Server<\/a> or <a href=\"http:\/\/www.globo.tech\/dedicated-server-hosting\" target=\"_blank\">Dedicated Server<\/a>) running a clean installation of Ubuntu 14.<br \/>\n\u2022 All commands must be entered as root with the exception of some performed by a user that we will create specifically for running Steam.<br \/>\n\u2022 2 vCores and 6GB RAM. These are the minimum requirements for an Ark server that can handle up to 10 users.<\/p>\n<h2>Tutorial<\/h2>\n<p>The very first task is to make sure that your system is fully up to date, and also that you have the basic dependencies:<\/p>\n<p><code>apt-get update &amp;&amp; apt-get upgrade -y<br \/>\napt-get install nano wget tar lib32gcc1 -y<\/code><\/p>\n<p>For Steam-specific tasks, we will need to create an user, as it&#8217;s unsafe to use Steam with the root user.<\/p>\n<p><code>adduser --disabled-login --disabled-password steam<\/code><\/p>\n<p>The next task is to prepare your system with certain parameters to allow the game server to run correctly. We&#8217;ll need to increase the amount of simultaneous system files that can be opened, which can be effected through a quick edit of sysctl.conf..<\/p>\n<p><code>echo \"fs.file-max=100000\" &gt;&gt; \/etc\/sysctl.conf<br \/>\nsysctl -p<\/code><\/p>\n<p>Append some changes to the system limits configuration file.<\/p>\n<p><code>echo \"* soft nofile 1000000\" &gt;&gt; \/etc\/security\/limits.conf<br \/>\necho \"* hard nofile 1000000\" &gt;&gt; \/etc\/security\/limits.conf<\/code><\/p>\n<p>And then lastly, enable the PAM limits module on the system.<\/p>\n<p><code>echo \"session required pam_limits.so\" &gt;&gt; \/etc\/pam.d\/common-session<\/code><\/p>\n<p>Now that the system has been prepared, you can proceed with installing the server software.<\/p>\n<p><code>cd \/home\/steam<br \/>\nsu - steam<br \/>\nwget https:\/\/steamcdn-a.akamaihd.net\/client\/installer\/steamcmd_linux.tar.gz<br \/>\ntar -zxvf steamcmd_linux.tar.gz<br \/>\nrm steamcmd_linux.tar.gz<br \/>\n.\/steamcmd.sh<\/code><\/p>\n<p>Once you&#8217;ve entered the Steam command line interface, you can install your game server by executing the following commands.<\/p>\n<p><code>login anonymous<br \/>\nforce_install_dir .\/arkserver<br \/>\napp_update 376030 validate<\/code><\/p>\n<p>You will have to wait for the contents to download onto your system. A successful installation will be rewarded with this message:<\/p>\n<p><code class=\"gris\">Update state (0x61) downloading, progress: 99.95 (3222988684 \/ 3224465090)<br \/>\nSuccess! App '376030' fully installed.<\/code><\/p>\n<p>Now that you&#8217;re done, it&#8217;s a simple matter to type quit to get out of the steam command line interface.<\/p>\n<p>Next are some commands that you will have to perform as the root user on your machine. We&#8217;ll be tackling the server configuration and the startup script.<\/p>\n<p>You will need to make an init script so that the ark server will be sure to start up on boot, after a server reboot occurs. This is the name of the init script you will create:<\/p>\n<p><code>nano \/etc\/init.d\/arkserver<\/code><\/p>\n<p>Now place this into the file, while making sure that the DAEMON_ARGS variable contains your server&#8217;s configuration.<\/p>\n<p><code class=\"gris\">#! \/bin\/sh<br \/>\n### BEGIN INIT INFO<br \/>\n# Provides: skeleton<br \/>\n# Required-Start: $remote_fs $syslog<br \/>\n# Required-Stop: $remote_fs $syslog<br \/>\n# Default-Start: 2 3 4 5<br \/>\n# Default-Stop: 0 1 6<br \/>\n# Short-Description: Example initscript<br \/>\n# Description: This file should be used to construct scripts to be<br \/>\n# placed in \/etc\/init.d.<br \/>\n### END INIT INFO<br \/>\n# Author: Foo Bar &lt;foobar@baz.org&gt;<br \/>\n#<br \/>\n# Please remove the \"Author\" lines above and replace them<br \/>\n# with your own name if you copy and modify this script.<br \/>\n# Do NOT \"set -e\"<br \/>\n# PATH should only include \/usr\/* if it runs after the mountnfs.sh script<br \/>\nPATH=\/home\/steam\/arkserver\/ShooterGame\/Binaries\/Linux:\/sbin:\/usr\/sbin:\/bin:\/usr\/bin<br \/>\nDESC=\"ARK Dedicated Server\"<br \/>\nNAME=ShooterGameServer<br \/>\nDAEMON=\/home\/steam\/arkserver\/ShooterGame\/Binaries\/Linux\/$NAME<br \/>\nDAEMON_ARGS=\"TheIsland?listen?SessionName=MyARKServer?ServerPassword=friendspassword?ServerAdminPassword=superadminpassword -server -log\"<br \/>\nPIDFILE=\/var\/run\/$NAME.pid<br \/>\nSCRIPTNAME=\/etc\/init.d\/arkserver<br \/>\n# Exit if the package is not installed<br \/>\n[ -x \"$DAEMON\" ] || exit 0<br \/>\n# Read configuration variable file if it is present<br \/>\n[ -r \/etc\/default\/$NAME ] &amp;&amp; . \/etc\/default\/$NAME<br \/>\n# Load the VERBOSE setting and other rcS variables<br \/>\n. \/lib\/init\/vars.sh<br \/>\n# Define LSB log_* functions.<br \/>\n# Depend on lsb-base (&gt;= 3.2-14) to ensure that this file is present<br \/>\n# and status_of_proc is working.<br \/>\n. \/lib\/lsb\/init-functions<br \/>\n#<br \/>\n# Function that starts the daemon\/service<br \/>\n#<br \/>\ndo_start()<br \/>\n{<br \/>\n# Return<br \/>\n# 0 if daemon has been started<br \/>\n# 1 if daemon was already running<br \/>\n# 2 if daemon could not be started<br \/>\nstart-stop-daemon --start --quiet --background --pidfile $PIDFILE --make-pidfile --chuid 1000:1000 --exec $DAEMON --test &gt; \/dev\/null 2&gt;&amp;1 \\<br \/>\n|| return 1<br \/>\nstart-stop-daemon --start --quiet --background --pidfile $PIDFILE --make-pidfile --chuid 1000:1000 --exec $DAEMON -- \\<br \/>\n$DAEMON_ARGS \\<br \/>\n|| return 2<br \/>\n# Add code here, if necessary, that waits for the process to be ready<br \/>\n# to handle requests from services started subsequently which depend<br \/>\n# on this one. As a last resort, sleep for some time.<br \/>\n#return 0<br \/>\n}<br \/>\n#<br \/>\n# Function that stops the daemon\/service<br \/>\n#<br \/>\ndo_stop()<br \/>\n{<br \/>\n# Return<br \/>\n# 0 if daemon has been stopped<br \/>\n# 1 if daemon was already stopped<br \/>\n# 2 if daemon could not be stopped<br \/>\n# other if a failure occurred<br \/>\nstart-stop-daemon --stop --quiet --retry=TERM\/30\/INT\/15\/KILL\/5 --pidfile $PIDFILE --chuid 1000:1000 --exec $DAEMON<br \/>\nRETVAL=\"$?\"<br \/>\nkill -9 `cat $PIDFILE`<br \/>\n[ \"$RETVAL\" = 2 ] &amp;&amp; return 2<br \/>\n# Wait for children to finish too if this is a daemon that forks<br \/>\n# and if the daemon is only ever run from this initscript.<br \/>\n# If the above conditions are not satisfied then add some other code<br \/>\n# that waits for the process to drop all resources that could be<br \/>\n# needed by services started subsequently. A last resort is to<br \/>\n# sleep for some time.<br \/>\n##start-stop-daemon --stop --quiet --oknodo --retry=0\/30\/KILL\/5 --exec $DAEMON<br \/>\n##[ \"$?\" = 2 ] &amp;&amp; return 2<br \/>\n# Many daemons don't delete their pidfiles when they exit.<br \/>\nrm -f $PIDFILE<br \/>\nreturn \"$RETVAL\"<br \/>\n}<br \/>\n#<br \/>\n# Function that sends a SIGHUP to the daemon\/service<br \/>\n#<br \/>\ndo_reload() {<br \/>\n#<br \/>\n# If the daemon can reload its configuration without<br \/>\n# restarting (for example, when it is sent a SIGHUP),<br \/>\n# then implement that here.<br \/>\n#<br \/>\nstart-stop-daemon --stop --signal 1 --quiet --pidfile $PIDFILE --name $NAME &amp;<br \/>\nreturn 0<br \/>\n}<br \/>\ncase \"$1\" in<br \/>\nstart)<br \/>\n[ \"$VERBOSE\" != no ] &amp;&amp; log_daemon_msg \"Starting $DESC\" \"$NAME\"<br \/>\ndo_start<br \/>\ncase \"$?\" in<br \/>\n0|1) [ \"$VERBOSE\" != no ] &amp;&amp; log_end_msg 0 ;;<br \/>\n2) [ \"$VERBOSE\" != no ] &amp;&amp; log_end_msg 1 ;;<br \/>\nesac<br \/>\n;;<br \/>\nstop)<br \/>\n[ \"$VERBOSE\" != no ] &amp;&amp; log_daemon_msg \"Stopping $DESC\" \"$NAME\"<br \/>\ndo_stop<br \/>\ncase \"$?\" in<br \/>\n0|1) [ \"$VERBOSE\" != no ] &amp;&amp; log_end_msg 0 ;;<br \/>\n2) [ \"$VERBOSE\" != no ] &amp;&amp; log_end_msg 1 ;;<br \/>\nesac<br \/>\n;;<br \/>\nstatus)<br \/>\nstatus_of_proc \"$DAEMON\" \"$NAME\" &amp;&amp; exit 0 || exit $?<br \/>\n;;<br \/>\n#reload|force-reload)<br \/>\n#<br \/>\n# If do_reload() is not implemented then leave this commented out<br \/>\n# and leave 'force-reload' as an alias for 'restart'.<br \/>\n#<br \/>\n#log_daemon_msg \"Reloading $DESC\" \"$NAME\"<br \/>\n#do_reload<br \/>\n#log_end_msg $?<br \/>\n#;;<br \/>\nrestart|force-reload)<br \/>\n#<br \/>\n# If the \"reload\" option is implemented then remove the<br \/>\n# 'force-reload' alias<br \/>\n#<br \/>\nlog_daemon_msg \"Restarting $DESC\" \"$NAME\"<br \/>\ndo_stop<br \/>\ncase \"$?\" in<br \/>\n0|1)<br \/>\ndo_start<br \/>\ncase \"$?\" in<br \/>\n0) log_end_msg 0 ;;<br \/>\n1) log_end_msg 1 ;; # Old process is still running<br \/>\n*) log_end_msg 1 ;; # Failed to start<br \/>\nesac<br \/>\n;;<br \/>\n*)<br \/>\n# Failed to stop<br \/>\nlog_end_msg 1<br \/>\n;;<br \/>\nesac<br \/>\n;;<br \/>\n*)<br \/>\n#echo \"Usage: $SCRIPTNAME {start|stop|restart|reload|force-reload}\" &gt;&amp;2<br \/>\necho \"Usage: $SCRIPTNAME {start|stop|status|restart|force-reload}\" &gt;&amp;2<br \/>\nexit 3<br \/>\n;;<br \/>\nesac<\/code><\/p>\n<p>Naturally, you will need to change the permissions of your init script so that it is executable.<\/p>\n<p><code>chmod +x \/etc\/init.d\/arkserver<\/code><\/p>\n<p>Start the Ark server, and enable it on system boot.<\/p>\n<p><code>update-rc.d arkserver defaults<br \/>\nservice arkserver start<\/code><\/p>\n<p>The below command will allow you to check that the Ark server is running. This is the expected output that will confirm that the daemon is running and in working order:<br \/>\n<code>service arkserver status<\/code><code class=\"gris\">* ShooterGameServer is running<\/code><\/p>\n<p>The final step is to adjust your firewall rules to let Ark and user traffic through. If you are using a fresh Ubuntu installation as specified in the prerequirements, then you will need to make no further changes than what&#8217;s listed below. If you&#8217;ve already changed your firewall rules in the past, then you may need to make further adjustments.<\/p>\n<p>Here&#8217;s how to open the necessary ports.<\/p>\n<p><code>ufw allow 27015\/udp<br \/>\nufw allow 7777\/udp<br \/>\nufw allow 32330\/tcp<\/code><\/p>\n<p>Here&#8217;s a definition of the purpose of each port:<br \/>\n\u2022 UDP 27015: Query port for Steam&#8217;s server browser<br \/>\n\u2022 UDP 7777: Game client port<br \/>\n\u2022 TCP 32330: RCON for remote console server access (optional)<\/p>\n<p>Here&#8217;s a way to open the ports if you&#8217;re using the classic iptables interface:<\/p>\n<p><code>iptables -A INPUT -p udp -m udp --sport 27015 --dport 1025:65355 -j ACCEPT<br \/>\niptables -A INPUT -p udp -m udp --sport 7777 --dport 1025:65355 -j ACCEPT<br \/>\niptables -A INPUT -p tcp -m tcp --sport 32330 --dport 1025:65355 -j ACCEPT<\/code><\/p>\n<h2>Conclusion<\/h2>\n<p>You should now have a properly installed ARK: Survival Evolved server suitable for up to 10 players. Invite your friends and test it out!<\/p>\n<p><a href=\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2016\/08\/gecvxp7rpd1yltfthjjm.jpg\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2016\/08\/gecvxp7rpd1yltfthjjm.jpg\" alt=\"Ark Survival Evolved\" width=\"889\" height=\"500\" class=\"aligncenter size-full wp-image-2635\" \/><\/a><\/p>\n<!-- AddThis Advanced Settings generic via filter on the_content --><!-- AddThis Share Buttons generic via filter on the_content -->","protected":false},"excerpt":{"rendered":"<p>Ark: Survival Evolved is a popular action game that features survival-themed crafting, combat, and most notably, the ability to tame and ride dinosaurs. Getting started In order to install the Ark: Survival Evolved server software, you will need the following: \u2022 1 Node (Cloud Server or Dedicated Server) running a clean installation of Ubuntu 14.<!-- AddThis Advanced Settings generic via filter on get_the_excerpt --><!-- AddThis Share Buttons generic via filter on get_the_excerpt --><\/p>\n","protected":false},"author":3,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[71],"tags":[],"class_list":["post-2540","post","type-post","status-publish","format-standard","hentry","category-applications"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.0 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to install ARK: Survival Evolved Server on Ubuntu 14 - Globo.Tech<\/title>\n<meta name=\"description\" content=\"This tutorial will show you how to install Ark: Survival Evolved on your Ubuntu 14 server. Read now &amp; Enjoy this popular action game !\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.globo.tech\/learning-center\/install-ark-survival-evolved-server-ubuntu-14\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to install ARK: Survival Evolved Server on Ubuntu 14 - Globo.Tech\" \/>\n<meta property=\"og:description\" content=\"This tutorial will show you how to install Ark: Survival Evolved on your Ubuntu 14 server. Read now &amp; Enjoy this popular action game !\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.globo.tech\/learning-center\/install-ark-survival-evolved-server-ubuntu-14\/\" \/>\n<meta property=\"og:site_name\" content=\"Globo.Tech\" \/>\n<meta property=\"article:published_time\" content=\"2016-08-23T19:01:20+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2016-10-02T18:28:58+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2016\/09\/Ark-Survival.jpg\" \/>\n<meta name=\"author\" content=\"GloboTech Communications\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"GloboTech Communications\" \/>\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\":\"WebPage\",\"@id\":\"https:\/\/www.globo.tech\/learning-center\/install-ark-survival-evolved-server-ubuntu-14\/\",\"url\":\"https:\/\/www.globo.tech\/learning-center\/install-ark-survival-evolved-server-ubuntu-14\/\",\"name\":\"How to install ARK: Survival Evolved Server on Ubuntu 14 - Globo.Tech\",\"isPartOf\":{\"@id\":\"https:\/\/www.globo.tech\/learning-center\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.globo.tech\/learning-center\/install-ark-survival-evolved-server-ubuntu-14\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.globo.tech\/learning-center\/install-ark-survival-evolved-server-ubuntu-14\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2016\/09\/Ark-Survival.jpg\",\"datePublished\":\"2016-08-23T19:01:20+00:00\",\"dateModified\":\"2016-10-02T18:28:58+00:00\",\"author\":{\"@id\":\"https:\/\/www.globo.tech\/learning-center\/#\/schema\/person\/e17784b37f4a4f49b7bc611847912e87\"},\"description\":\"This tutorial will show you how to install Ark: Survival Evolved on your Ubuntu 14 server. Read now & Enjoy this popular action game !\",\"breadcrumb\":{\"@id\":\"https:\/\/www.globo.tech\/learning-center\/install-ark-survival-evolved-server-ubuntu-14\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.globo.tech\/learning-center\/install-ark-survival-evolved-server-ubuntu-14\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.globo.tech\/learning-center\/install-ark-survival-evolved-server-ubuntu-14\/#primaryimage\",\"url\":\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2016\/09\/Ark-Survival.jpg\",\"contentUrl\":\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2016\/09\/Ark-Survival.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.globo.tech\/learning-center\/install-ark-survival-evolved-server-ubuntu-14\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.globo.tech\/learning-center\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to install ARK: Survival Evolved Server on Ubuntu 14\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.globo.tech\/learning-center\/#website\",\"url\":\"https:\/\/www.globo.tech\/learning-center\/\",\"name\":\"Globo.Tech\",\"description\":\"Welcome to the Official Globo.Tech Learning Center\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.globo.tech\/learning-center\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.globo.tech\/learning-center\/#\/schema\/person\/e17784b37f4a4f49b7bc611847912e87\",\"name\":\"GloboTech Communications\",\"sameAs\":[\"http:\/\/www.gtcomm.net\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to install ARK: Survival Evolved Server on Ubuntu 14 - Globo.Tech","description":"This tutorial will show you how to install Ark: Survival Evolved on your Ubuntu 14 server. Read now & Enjoy this popular action game !","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:\/\/www.globo.tech\/learning-center\/install-ark-survival-evolved-server-ubuntu-14\/","og_locale":"en_US","og_type":"article","og_title":"How to install ARK: Survival Evolved Server on Ubuntu 14 - Globo.Tech","og_description":"This tutorial will show you how to install Ark: Survival Evolved on your Ubuntu 14 server. Read now & Enjoy this popular action game !","og_url":"https:\/\/www.globo.tech\/learning-center\/install-ark-survival-evolved-server-ubuntu-14\/","og_site_name":"Globo.Tech","article_published_time":"2016-08-23T19:01:20+00:00","article_modified_time":"2016-10-02T18:28:58+00:00","og_image":[{"url":"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2016\/09\/Ark-Survival.jpg","type":"","width":"","height":""}],"author":"GloboTech Communications","twitter_misc":{"Written by":"GloboTech Communications","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.globo.tech\/learning-center\/install-ark-survival-evolved-server-ubuntu-14\/","url":"https:\/\/www.globo.tech\/learning-center\/install-ark-survival-evolved-server-ubuntu-14\/","name":"How to install ARK: Survival Evolved Server on Ubuntu 14 - Globo.Tech","isPartOf":{"@id":"https:\/\/www.globo.tech\/learning-center\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.globo.tech\/learning-center\/install-ark-survival-evolved-server-ubuntu-14\/#primaryimage"},"image":{"@id":"https:\/\/www.globo.tech\/learning-center\/install-ark-survival-evolved-server-ubuntu-14\/#primaryimage"},"thumbnailUrl":"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2016\/09\/Ark-Survival.jpg","datePublished":"2016-08-23T19:01:20+00:00","dateModified":"2016-10-02T18:28:58+00:00","author":{"@id":"https:\/\/www.globo.tech\/learning-center\/#\/schema\/person\/e17784b37f4a4f49b7bc611847912e87"},"description":"This tutorial will show you how to install Ark: Survival Evolved on your Ubuntu 14 server. Read now & Enjoy this popular action game !","breadcrumb":{"@id":"https:\/\/www.globo.tech\/learning-center\/install-ark-survival-evolved-server-ubuntu-14\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.globo.tech\/learning-center\/install-ark-survival-evolved-server-ubuntu-14\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.globo.tech\/learning-center\/install-ark-survival-evolved-server-ubuntu-14\/#primaryimage","url":"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2016\/09\/Ark-Survival.jpg","contentUrl":"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2016\/09\/Ark-Survival.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/www.globo.tech\/learning-center\/install-ark-survival-evolved-server-ubuntu-14\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.globo.tech\/learning-center\/"},{"@type":"ListItem","position":2,"name":"How to install ARK: Survival Evolved Server on Ubuntu 14"}]},{"@type":"WebSite","@id":"https:\/\/www.globo.tech\/learning-center\/#website","url":"https:\/\/www.globo.tech\/learning-center\/","name":"Globo.Tech","description":"Welcome to the Official Globo.Tech Learning Center","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.globo.tech\/learning-center\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.globo.tech\/learning-center\/#\/schema\/person\/e17784b37f4a4f49b7bc611847912e87","name":"GloboTech Communications","sameAs":["http:\/\/www.gtcomm.net"]}]}},"_links":{"self":[{"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/posts\/2540","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/comments?post=2540"}],"version-history":[{"count":9,"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/posts\/2540\/revisions"}],"predecessor-version":[{"id":3002,"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/posts\/2540\/revisions\/3002"}],"wp:attachment":[{"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/media?parent=2540"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/categories?post=2540"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/tags?post=2540"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}