{"id":1940,"date":"2026-08-15T03:49:52","date_gmt":"2026-08-14T22:19:52","guid":{"rendered":"https:\/\/kwikserver.com\/tutorials\/basic-setup-guide-for-fresh-ubuntu-server\/"},"modified":"2026-09-14T12:08:16","modified_gmt":"2026-09-14T06:38:16","slug":"basic-setup-guide-for-fresh-ubuntu-server","status":"publish","type":"post","link":"https:\/\/kwikserver.com\/tutorials\/basic-setup-guide-for-fresh-ubuntu-server\/","title":{"rendered":"Basic Setup Guide for a Fresh Ubuntu Server"},"content":{"rendered":"<p>A new Ubuntu VPS works fine straight out of the box, but a few first-boot steps make it both more secure and easier to manage later. This is a straightforward walkthrough for getting a fresh Ubuntu server ready for real use.<\/p>\n<h2>1. Log in as root<\/h2>\n<pre>ssh root@your_server_ip<\/pre>\n<p>Accept the host authenticity prompt if this is the first time connecting, then log in with your root password or SSH key.<\/p>\n<p>Root can do anything on the system with no guardrails, which is exactly why you shouldn&#8217;t use it for day-to-day work; one mistyped command as root can cause real damage. The next few steps set up a regular user account with sudo access instead.<\/p>\n<h2>2. Create a new user<\/h2>\n<pre>adduser sammy<\/pre>\n<p>You&#8217;ll be prompted for a password and, optionally, some details like a full name. None of the extra fields are required.<\/p>\n<h2>3. Grant sudo privileges<\/h2>\n<pre>usermod -aG sudo sammy<\/pre>\n<p>This adds the new user to the sudo group, so they can run administrative commands by prefixing them with <code>sudo<\/code> instead of logging in as root directly.<\/p>\n<h2>4. Set up a basic firewall<\/h2>\n<p>Ubuntu ships with UFW, a simple front end for iptables.<\/p>\n<pre>ufw app list\nufw allow OpenSSH\nufw enable\nufw status<\/pre>\n<p>Allow OpenSSH before enabling the firewall. If you enable UFW first and forget this step, you&#8217;ll lock yourself out of the server. Any other service you install later, a web server or a database, will need its own <code>ufw allow<\/code> rule before traffic can reach it.<\/p>\n<h2>5. Enable SSH access for your new user<\/h2>\n<p>Stay logged in as root until you&#8217;ve confirmed the new account actually works, so you can troubleshoot from root if something&#8217;s wrong.<\/p>\n<p>If you&#8217;re using password authentication, just switch users on your next connection, from a separate terminal session:<\/p>\n<pre>ssh sammy@your_server_ip<\/pre>\n<p>From there, prefix any command that needs elevated rights with <code>sudo<\/code>. If you&#8217;re using key-based authentication instead, copy your existing SSH key setup over to the new account:<\/p>\n<pre>rsync --archive --chown=sammy:sammy ~\/.ssh \/home\/sammy<\/pre>\n<p>Don&#8217;t add a trailing slash after <code>~\/.ssh<\/code>, since that changes what rsync actually copies. Once that&#8217;s done, you should be able to log in as the new user without a password.<\/p>\n<p>With a sudo user in place, SSH locked down to key or password login through a non-root account, and a basic firewall running, your server has a solid foundation for installing whatever software comes next. A KwikServer Linux VPS is a good place to practice this whole flow before putting anything into production.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>A first-boot checklist for a new Ubuntu VPS: creating a sudo user, locking down SSH, and enabling a basic firewall.<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":"","_yoast_wpseo_title":"","_yoast_wpseo_metadesc":"","_yoast_wpseo_focuskw":"","rank_math_title":"","rank_math_description":"","rank_math_focus_keyword":""},"categories":[20],"tags":[],"class_list":["post-1940","post","type-post","status-publish","format-standard","hentry","category-linux"],"acf":[],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.1.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"A first-boot checklist for a new Ubuntu VPS: create a sudo user, lock down SSH, and enable UFW. Everything you need before installing anything else.\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Kwik Server\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/kwikserver.com\/tutorials\/basic-setup-guide-for-fresh-ubuntu-server\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.1.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Tutorials Kwik Server -\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Basic Setup Guide for a Fresh Ubuntu Server\" \/>\n\t\t<meta property=\"og:description\" content=\"A first-boot checklist for a new Ubuntu VPS: create a sudo user, lock down SSH, and enable UFW. Everything you need before installing anything else.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/kwikserver.com\/tutorials\/basic-setup-guide-for-fresh-ubuntu-server\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/kwikserver.com\/tutorials\/wp-content\/uploads\/2025\/02\/cropped-Kwik-Server-Logo-1.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/kwikserver.com\/tutorials\/wp-content\/uploads\/2025\/02\/cropped-Kwik-Server-Logo-1.png\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2026-08-14T22:19:52+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2026-09-14T06:38:16+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Basic Setup Guide for a Fresh Ubuntu Server\" \/>\n\t\t<meta name=\"twitter:description\" content=\"A first-boot checklist for a new Ubuntu VPS: create a sudo user, lock down SSH, and enable UFW. Everything you need before installing anything else.\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/kwikserver.com\/tutorials\/wp-content\/uploads\/2025\/02\/cropped-Kwik-Server-Logo-1.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\\\/basic-setup-guide-for-fresh-ubuntu-server\\\/#blogposting\",\"name\":\"Basic Setup Guide for a Fresh Ubuntu Server\",\"headline\":\"Basic Setup Guide for a Fresh Ubuntu Server\",\"author\":{\"@id\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\\\/author\\\/server2202kwik\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\\\/wp-content\\\/uploads\\\/2025\\\/02\\\/cropped-Kwik-Server-Logo-1.png\",\"@id\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\\\/#articleImage\",\"width\":1956,\"height\":683},\"datePublished\":\"2026-08-15T03:49:52+05:30\",\"dateModified\":\"2026-09-14T12:08:16+05:30\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\\\/basic-setup-guide-for-fresh-ubuntu-server\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\\\/basic-setup-guide-for-fresh-ubuntu-server\\\/#webpage\"},\"articleSection\":\"Linux\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\\\/basic-setup-guide-for-fresh-ubuntu-server\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kwikserver.com\\\/tutorials#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\\\/category\\\/linux\\\/#listItem\",\"name\":\"Linux\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\\\/category\\\/linux\\\/#listItem\",\"position\":2,\"name\":\"Linux\",\"item\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\\\/category\\\/linux\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\\\/basic-setup-guide-for-fresh-ubuntu-server\\\/#listItem\",\"name\":\"Basic Setup Guide for a Fresh Ubuntu Server\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kwikserver.com\\\/tutorials#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\\\/basic-setup-guide-for-fresh-ubuntu-server\\\/#listItem\",\"position\":3,\"name\":\"Basic Setup Guide for a Fresh Ubuntu Server\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\\\/category\\\/linux\\\/#listItem\",\"name\":\"Linux\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\\\/#organization\",\"name\":\"Tutorials Kwik Server\",\"url\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\\\/wp-content\\\/uploads\\\/2025\\\/02\\\/cropped-Kwik-Server-Logo-1.png\",\"@id\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\\\/basic-setup-guide-for-fresh-ubuntu-server\\\/#organizationLogo\",\"width\":1956,\"height\":683},\"image\":{\"@id\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\\\/basic-setup-guide-for-fresh-ubuntu-server\\\/#organizationLogo\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\\\/author\\\/server2202kwik\\\/#author\",\"url\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\\\/author\\\/server2202kwik\\\/\",\"name\":\"Kwik Server\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\\\/basic-setup-guide-for-fresh-ubuntu-server\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b0b10492ce76cec12cc2303f4951f725e776449ce91e8fff43130c3174c94d70?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Kwik Server\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\\\/basic-setup-guide-for-fresh-ubuntu-server\\\/#webpage\",\"url\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\\\/basic-setup-guide-for-fresh-ubuntu-server\\\/\",\"name\":\"Basic Setup Guide for a Fresh Ubuntu Server\",\"description\":\"A first-boot checklist for a new Ubuntu VPS: create a sudo user, lock down SSH, and enable UFW. Everything you need before installing anything else.\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\\\/basic-setup-guide-for-fresh-ubuntu-server\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\\\/author\\\/server2202kwik\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\\\/author\\\/server2202kwik\\\/#author\"},\"datePublished\":\"2026-08-15T03:49:52+05:30\",\"dateModified\":\"2026-09-14T12:08:16+05:30\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\\\/#website\",\"url\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\\\/\",\"name\":\"Tutorials Kwik Server\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/kwikserver.com\\\/tutorials\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Basic Setup Guide for a Fresh Ubuntu Server","description":"A first-boot checklist for a new Ubuntu VPS: create a sudo user, lock down SSH, and enable UFW. Everything you need before installing anything else.","canonical_url":"https:\/\/kwikserver.com\/tutorials\/basic-setup-guide-for-fresh-ubuntu-server\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/kwikserver.com\/tutorials\/basic-setup-guide-for-fresh-ubuntu-server\/#blogposting","name":"Basic Setup Guide for a Fresh Ubuntu Server","headline":"Basic Setup Guide for a Fresh Ubuntu Server","author":{"@id":"https:\/\/kwikserver.com\/tutorials\/author\/server2202kwik\/#author"},"publisher":{"@id":"https:\/\/kwikserver.com\/tutorials\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/kwikserver.com\/tutorials\/wp-content\/uploads\/2025\/02\/cropped-Kwik-Server-Logo-1.png","@id":"https:\/\/kwikserver.com\/tutorials\/#articleImage","width":1956,"height":683},"datePublished":"2026-08-15T03:49:52+05:30","dateModified":"2026-09-14T12:08:16+05:30","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/kwikserver.com\/tutorials\/basic-setup-guide-for-fresh-ubuntu-server\/#webpage"},"isPartOf":{"@id":"https:\/\/kwikserver.com\/tutorials\/basic-setup-guide-for-fresh-ubuntu-server\/#webpage"},"articleSection":"Linux"},{"@type":"BreadcrumbList","@id":"https:\/\/kwikserver.com\/tutorials\/basic-setup-guide-for-fresh-ubuntu-server\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/kwikserver.com\/tutorials#listItem","position":1,"name":"Home","item":"https:\/\/kwikserver.com\/tutorials","nextItem":{"@type":"ListItem","@id":"https:\/\/kwikserver.com\/tutorials\/category\/linux\/#listItem","name":"Linux"}},{"@type":"ListItem","@id":"https:\/\/kwikserver.com\/tutorials\/category\/linux\/#listItem","position":2,"name":"Linux","item":"https:\/\/kwikserver.com\/tutorials\/category\/linux\/","nextItem":{"@type":"ListItem","@id":"https:\/\/kwikserver.com\/tutorials\/basic-setup-guide-for-fresh-ubuntu-server\/#listItem","name":"Basic Setup Guide for a Fresh Ubuntu Server"},"previousItem":{"@type":"ListItem","@id":"https:\/\/kwikserver.com\/tutorials#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/kwikserver.com\/tutorials\/basic-setup-guide-for-fresh-ubuntu-server\/#listItem","position":3,"name":"Basic Setup Guide for a Fresh Ubuntu Server","previousItem":{"@type":"ListItem","@id":"https:\/\/kwikserver.com\/tutorials\/category\/linux\/#listItem","name":"Linux"}}]},{"@type":"Organization","@id":"https:\/\/kwikserver.com\/tutorials\/#organization","name":"Tutorials Kwik Server","url":"https:\/\/kwikserver.com\/tutorials\/","logo":{"@type":"ImageObject","url":"https:\/\/kwikserver.com\/tutorials\/wp-content\/uploads\/2025\/02\/cropped-Kwik-Server-Logo-1.png","@id":"https:\/\/kwikserver.com\/tutorials\/basic-setup-guide-for-fresh-ubuntu-server\/#organizationLogo","width":1956,"height":683},"image":{"@id":"https:\/\/kwikserver.com\/tutorials\/basic-setup-guide-for-fresh-ubuntu-server\/#organizationLogo"}},{"@type":"Person","@id":"https:\/\/kwikserver.com\/tutorials\/author\/server2202kwik\/#author","url":"https:\/\/kwikserver.com\/tutorials\/author\/server2202kwik\/","name":"Kwik Server","image":{"@type":"ImageObject","@id":"https:\/\/kwikserver.com\/tutorials\/basic-setup-guide-for-fresh-ubuntu-server\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/b0b10492ce76cec12cc2303f4951f725e776449ce91e8fff43130c3174c94d70?s=96&d=mm&r=g","width":96,"height":96,"caption":"Kwik Server"}},{"@type":"WebPage","@id":"https:\/\/kwikserver.com\/tutorials\/basic-setup-guide-for-fresh-ubuntu-server\/#webpage","url":"https:\/\/kwikserver.com\/tutorials\/basic-setup-guide-for-fresh-ubuntu-server\/","name":"Basic Setup Guide for a Fresh Ubuntu Server","description":"A first-boot checklist for a new Ubuntu VPS: create a sudo user, lock down SSH, and enable UFW. Everything you need before installing anything else.","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/kwikserver.com\/tutorials\/#website"},"breadcrumb":{"@id":"https:\/\/kwikserver.com\/tutorials\/basic-setup-guide-for-fresh-ubuntu-server\/#breadcrumblist"},"author":{"@id":"https:\/\/kwikserver.com\/tutorials\/author\/server2202kwik\/#author"},"creator":{"@id":"https:\/\/kwikserver.com\/tutorials\/author\/server2202kwik\/#author"},"datePublished":"2026-08-15T03:49:52+05:30","dateModified":"2026-09-14T12:08:16+05:30"},{"@type":"WebSite","@id":"https:\/\/kwikserver.com\/tutorials\/#website","url":"https:\/\/kwikserver.com\/tutorials\/","name":"Tutorials Kwik Server","inLanguage":"en-US","publisher":{"@id":"https:\/\/kwikserver.com\/tutorials\/#organization"}}]},"og:locale":"en_US","og:site_name":"Tutorials Kwik Server -","og:type":"article","og:title":"Basic Setup Guide for a Fresh Ubuntu Server","og:description":"A first-boot checklist for a new Ubuntu VPS: create a sudo user, lock down SSH, and enable UFW. Everything you need before installing anything else.","og:url":"https:\/\/kwikserver.com\/tutorials\/basic-setup-guide-for-fresh-ubuntu-server\/","og:image":"https:\/\/kwikserver.com\/tutorials\/wp-content\/uploads\/2025\/02\/cropped-Kwik-Server-Logo-1.png","og:image:secure_url":"https:\/\/kwikserver.com\/tutorials\/wp-content\/uploads\/2025\/02\/cropped-Kwik-Server-Logo-1.png","article:published_time":"2026-08-14T22:19:52+00:00","article:modified_time":"2026-09-14T06:38:16+00:00","twitter:card":"summary_large_image","twitter:title":"Basic Setup Guide for a Fresh Ubuntu Server","twitter:description":"A first-boot checklist for a new Ubuntu VPS: create a sudo user, lock down SSH, and enable UFW. Everything you need before installing anything else.","twitter:image":"https:\/\/kwikserver.com\/tutorials\/wp-content\/uploads\/2025\/02\/cropped-Kwik-Server-Logo-1.png"},"aioseo_meta_data":{"post_id":"1940","title":"Basic Setup Guide for a Fresh Ubuntu Server","description":"A first-boot checklist for a new Ubuntu VPS: create a sudo user, lock down SSH, and enable UFW. Everything you need before installing anything else.","keywords":null,"keyphrases":{"focus":{"keyphrase":"Ubuntu server setup guide"},"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2026-08-14 23:06:49","updated":"2026-09-14 06:38:23","seo_analyzer_scan_date":null,"focus_keyword":"Ubuntu server setup guide","additional_keywords":null,"truseo_locale":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/kwikserver.com\/tutorials\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/kwikserver.com\/tutorials\/category\/linux\/\" title=\"Linux\">Linux<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tBasic Setup Guide for a Fresh Ubuntu Server\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/kwikserver.com\/tutorials"},{"label":"Linux","link":"https:\/\/kwikserver.com\/tutorials\/category\/linux\/"},{"label":"Basic Setup Guide for a Fresh Ubuntu Server","link":"https:\/\/kwikserver.com\/tutorials\/basic-setup-guide-for-fresh-ubuntu-server\/"}],"_links":{"self":[{"href":"https:\/\/kwikserver.com\/tutorials\/wp-json\/wp\/v2\/posts\/1940","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/kwikserver.com\/tutorials\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/kwikserver.com\/tutorials\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/kwikserver.com\/tutorials\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/kwikserver.com\/tutorials\/wp-json\/wp\/v2\/comments?post=1940"}],"version-history":[{"count":1,"href":"https:\/\/kwikserver.com\/tutorials\/wp-json\/wp\/v2\/posts\/1940\/revisions"}],"predecessor-version":[{"id":1995,"href":"https:\/\/kwikserver.com\/tutorials\/wp-json\/wp\/v2\/posts\/1940\/revisions\/1995"}],"wp:attachment":[{"href":"https:\/\/kwikserver.com\/tutorials\/wp-json\/wp\/v2\/media?parent=1940"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/kwikserver.com\/tutorials\/wp-json\/wp\/v2\/categories?post=1940"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/kwikserver.com\/tutorials\/wp-json\/wp\/v2\/tags?post=1940"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}