{"id":3096,"date":"2016-10-07T16:59:58","date_gmt":"2016-10-07T20:59:58","guid":{"rendered":"https:\/\/www.globo.tech\/learning-center\/?p=3096"},"modified":"2017-12-12T15:54:24","modified_gmt":"2017-12-12T20:54:24","slug":"install-ark-survival-fittest-ubuntu-14","status":"publish","type":"post","link":"https:\/\/www.globo.tech\/learning-center\/install-ark-survival-fittest-ubuntu-14\/","title":{"rendered":"How to install ARK: Survival of the Fittest 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 Of The Fittest\" width=\"759\" height=\"286\" class=\"aligncenter size-full wp-image-2641\" \/><\/a><\/p>\n<h1>How to install ARK: Survival of the Fittest Server on Ubuntu 14<\/h1>\n<p>Ark: Survival of the Fittest is a game mode for the popular action adventure game Ark: Survival Evolved. It was released in 2016 as a free standalone game, but was later merged back into the main game. For those lucky enough to begin playing while it was free, you can continue to do so, and even install servers for multiplayer play with your friends.<\/p>\n<h2>Getting started<\/h2>\n<p>In order to install the Ark: Survival of the Fittest server software, you will need the following:<br \/>\n\u2022 1 server (<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 fresh 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:<br \/>\n<code>apt-get update && 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.<br \/>\n<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..<br \/>\n<code>echo \"fs.file-max=100000\" >> \/etc\/sysctl.conf<br \/>\nsysctl -p<\/code><\/p>\n<p>Append some changes to the system limits configuration file.<br \/>\n<code>echo \"*               soft    nofile          1000000\" >> \/etc\/security\/limits.conf<br \/>\necho \"*               hard    nofile          1000000\" >> \/etc\/security\/limits.conf<\/code><\/p>\n<p>And then lastly, enable the PAM limits module on the system.<br \/>\n<code>echo \"session required pam_limits.so\" >> \/etc\/pam.d\/common-session<\/code><\/p>\n<p>Now that the system has been prepared, you can proceed with installing the server software.<br \/>\n<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.<br \/>\n<code>login anonymous<br \/>\nforce_install_dir .\/arkserver<br \/>\napp_update 445400 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:<br \/>\n<code class=\"gris\">Update state (0x61) downloading, progress: 99.95 (3222988684 \/ 3224465090)<br \/>\nSuccess! App '445400' 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:<br \/>\n<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.<br \/>\n<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 <foobar@baz.org><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 ] && . \/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 (>= 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 \/>\n        start-stop-daemon --start --quiet --background --pidfile $PIDFILE --make-pidfile --chuid 1000:1000 --exec $DAEMON --test > \/dev\/null 2>&1 \\<br \/>\n                || return 1<br \/>\n        start-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 \/>\n        start-stop-daemon --stop --quiet --retry=TERM\/30\/INT\/15\/KILL\/5 --pidfile $PIDFILE --chuid 1000:1000 --exec $DAEMON<br \/>\n        RETVAL=\"$?\"<br \/>\n        kill -9 `cat $PIDFILE`<br \/>\n        [ \"$RETVAL\" = 2 ] && 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 ] && return 2<br \/>\n        # Many daemons don't delete their pidfiles when they exit.<br \/>\n        rm -f $PIDFILE<br \/>\n        return \"$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 \/>\n        start-stop-daemon --stop --signal 1 --quiet --pidfile $PIDFILE --name $NAME &<br \/>\n        return 0<br \/>\n}<br \/>\ncase \"$1\" in<br \/>\n  start)<br \/>\n        [ \"$VERBOSE\" != no ] && log_daemon_msg \"Starting $DESC\" \"$NAME\"<br \/>\n        do_start<br \/>\n        case \"$?\" in<br \/>\n                0|1) [ \"$VERBOSE\" != no ] && log_end_msg 0 ;;<br \/>\n                2) [ \"$VERBOSE\" != no ] && log_end_msg 1 ;;<br \/>\n        esac<br \/>\n        ;;<br \/>\n  stop)<br \/>\n        [ \"$VERBOSE\" != no ] && log_daemon_msg \"Stopping $DESC\" \"$NAME\"<br \/>\n        do_stop<br \/>\n        case \"$?\" in<br \/>\n                0|1) [ \"$VERBOSE\" != no ] && log_end_msg 0 ;;<br \/>\n                2) [ \"$VERBOSE\" != no ] && log_end_msg 1 ;;<br \/>\n        esac<br \/>\n        ;;<br \/>\n  status)<br \/>\n       status_of_proc \"$DAEMON\" \"$NAME\" && 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 \/>\n  restart|force-reload)<br \/>\n        #<br \/>\n        # If the \"reload\" option is implemented then remove the<br \/>\n        # 'force-reload' alias<br \/>\n        #<br \/>\n        log_daemon_msg \"Restarting $DESC\" \"$NAME\"<br \/>\n        do_stop<br \/>\n        case \"$?\" in<br \/>\n          0|1)<br \/>\n                do_start<br \/>\n                case \"$?\" in<br \/>\n                        0) log_end_msg 0 ;;<br \/>\n                        1) log_end_msg 1 ;; # Old process is still running<br \/>\n                        *) log_end_msg 1 ;; # Failed to start<br \/>\n                esac<br \/>\n                ;;<br \/>\n          *)<br \/>\n                # Failed to stop<br \/>\n                log_end_msg 1<br \/>\n                ;;<br \/>\n        esac<br \/>\n        ;;<br \/>\n  *)<br \/>\n        #echo \"Usage: $SCRIPTNAME {start|stop|restart|reload|force-reload}\" >&2<br \/>\n        echo \"Usage: $SCRIPTNAME {start|stop|status|restart|force-reload}\" >&2<br \/>\n        exit 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.<br \/>\n<code>chmod +x \/etc\/init.d\/arkserver<\/code><\/p>\n<p>Start the Ark server, and enable it on system boot.<br \/>\n<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><br \/>\n<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.<br \/>\n<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:<\/p>\n<p>    UDP 27015: Query port for Steam&#8217;s server browser<br \/>\n    UDP 7777: Game client port<br \/>\n    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:<br \/>\n<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 of the Fittest server suitable for up to 10 players. Invite your friends and test it out! <\/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>How to install ARK: Survival of the Fittest Server on Ubuntu 14 Ark: Survival of the Fittest is a game mode for the popular action adventure game Ark: Survival Evolved. It was released in 2016 as a free standalone game, but was later merged back into the main game. For those lucky enough to begin<!-- 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-3096","post","type-post","status-publish","format-standard","hentry","category-applications"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to install ARK: Survival of the Fittest Server on Ubuntu 14 - Globo.Tech<\/title>\n<meta name=\"description\" content=\"This tutorial will show you how to install Ark: Survival of the Fittest 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-fittest-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 of the Fittest Server on Ubuntu 14 - Globo.Tech\" \/>\n<meta property=\"og:description\" content=\"This tutorial will show you how to install Ark: Survival of the Fittest 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-fittest-ubuntu-14\/\" \/>\n<meta property=\"og:site_name\" content=\"Globo.Tech\" \/>\n<meta property=\"article:published_time\" content=\"2016-10-07T20:59:58+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2017-12-12T20:54:24+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\":\"Article\",\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/install-ark-survival-fittest-ubuntu-14\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/install-ark-survival-fittest-ubuntu-14\\\/\"},\"author\":{\"name\":\"GloboTech Communications\",\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/#\\\/schema\\\/person\\\/e17784b37f4a4f49b7bc611847912e87\"},\"headline\":\"How to install ARK: Survival of the Fittest Server on Ubuntu 14\",\"datePublished\":\"2016-10-07T20:59:58+00:00\",\"dateModified\":\"2017-12-12T20:54:24+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/install-ark-survival-fittest-ubuntu-14\\\/\"},\"wordCount\":633,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/install-ark-survival-fittest-ubuntu-14\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/wp-content\\\/uploads\\\/2016\\\/09\\\/Ark-Survival.jpg\",\"articleSection\":[\"Applications\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/install-ark-survival-fittest-ubuntu-14\\\/\",\"url\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/install-ark-survival-fittest-ubuntu-14\\\/\",\"name\":\"How to install ARK: Survival of the Fittest 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-fittest-ubuntu-14\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/install-ark-survival-fittest-ubuntu-14\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/wp-content\\\/uploads\\\/2016\\\/09\\\/Ark-Survival.jpg\",\"datePublished\":\"2016-10-07T20:59:58+00:00\",\"dateModified\":\"2017-12-12T20:54:24+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/#\\\/schema\\\/person\\\/e17784b37f4a4f49b7bc611847912e87\"},\"description\":\"This tutorial will show you how to install Ark: Survival of the Fittest on your Ubuntu 14 server. Read now & Enjoy this popular action game !\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/install-ark-survival-fittest-ubuntu-14\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/install-ark-survival-fittest-ubuntu-14\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/install-ark-survival-fittest-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-fittest-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 of the Fittest 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 of the Fittest Server on Ubuntu 14 - Globo.Tech","description":"This tutorial will show you how to install Ark: Survival of the Fittest 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-fittest-ubuntu-14\/","og_locale":"en_US","og_type":"article","og_title":"How to install ARK: Survival of the Fittest Server on Ubuntu 14 - Globo.Tech","og_description":"This tutorial will show you how to install Ark: Survival of the Fittest on your Ubuntu 14 server. Read now & Enjoy this popular action game !","og_url":"https:\/\/www.globo.tech\/learning-center\/install-ark-survival-fittest-ubuntu-14\/","og_site_name":"Globo.Tech","article_published_time":"2016-10-07T20:59:58+00:00","article_modified_time":"2017-12-12T20:54:24+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":"Article","@id":"https:\/\/www.globo.tech\/learning-center\/install-ark-survival-fittest-ubuntu-14\/#article","isPartOf":{"@id":"https:\/\/www.globo.tech\/learning-center\/install-ark-survival-fittest-ubuntu-14\/"},"author":{"name":"GloboTech Communications","@id":"https:\/\/www.globo.tech\/learning-center\/#\/schema\/person\/e17784b37f4a4f49b7bc611847912e87"},"headline":"How to install ARK: Survival of the Fittest Server on Ubuntu 14","datePublished":"2016-10-07T20:59:58+00:00","dateModified":"2017-12-12T20:54:24+00:00","mainEntityOfPage":{"@id":"https:\/\/www.globo.tech\/learning-center\/install-ark-survival-fittest-ubuntu-14\/"},"wordCount":633,"commentCount":0,"image":{"@id":"https:\/\/www.globo.tech\/learning-center\/install-ark-survival-fittest-ubuntu-14\/#primaryimage"},"thumbnailUrl":"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2016\/09\/Ark-Survival.jpg","articleSection":["Applications"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.globo.tech\/learning-center\/install-ark-survival-fittest-ubuntu-14\/","url":"https:\/\/www.globo.tech\/learning-center\/install-ark-survival-fittest-ubuntu-14\/","name":"How to install ARK: Survival of the Fittest 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-fittest-ubuntu-14\/#primaryimage"},"image":{"@id":"https:\/\/www.globo.tech\/learning-center\/install-ark-survival-fittest-ubuntu-14\/#primaryimage"},"thumbnailUrl":"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2016\/09\/Ark-Survival.jpg","datePublished":"2016-10-07T20:59:58+00:00","dateModified":"2017-12-12T20:54:24+00:00","author":{"@id":"https:\/\/www.globo.tech\/learning-center\/#\/schema\/person\/e17784b37f4a4f49b7bc611847912e87"},"description":"This tutorial will show you how to install Ark: Survival of the Fittest on your Ubuntu 14 server. Read now & Enjoy this popular action game !","breadcrumb":{"@id":"https:\/\/www.globo.tech\/learning-center\/install-ark-survival-fittest-ubuntu-14\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.globo.tech\/learning-center\/install-ark-survival-fittest-ubuntu-14\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.globo.tech\/learning-center\/install-ark-survival-fittest-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-fittest-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 of the Fittest 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\/3096","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=3096"}],"version-history":[{"count":2,"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/posts\/3096\/revisions"}],"predecessor-version":[{"id":4001,"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/posts\/3096\/revisions\/4001"}],"wp:attachment":[{"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/media?parent=3096"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/categories?post=3096"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/tags?post=3096"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}