{"id":2227,"date":"2024-12-15T12:30:00","date_gmt":"2024-12-15T18:30:00","guid":{"rendered":"https:\/\/linuxhostsupport.com\/blog\/?p=2227"},"modified":"2024-11-11T09:33:45","modified_gmt":"2024-11-11T15:33:45","slug":"nohup-command-in-linux","status":"publish","type":"post","link":"https:\/\/linuxhostsupport.com\/blog\/nohup-command-in-linux\/","title":{"rendered":"Nohup Command in Linux"},"content":{"rendered":"\n<div id=\"linux-16711930\" class=\"linux-before-1st-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1339&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div><p>This tutorial will teach us about the <strong>Nohup<\/strong> command in Linux. The Nohup is short for no hang-up and is a Linux command that keeps processes running without an active shell or terminal. This means that if we quit or close the terminal window, the process will still be active in the background thanks to this command. If we do not have service for some specific process not using the <strong>nohup<\/strong> will terminate the process after every terminal closing.<\/p>\n\n\n\n<p>In the next paragraphs, we will show you how to use the nohup command with practical examples. Let&#8217;s get started!<\/p>\n\n\n\n<!--more-->\n\n\n\n<h2 class=\"wp-block-heading\">Prerequisites<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A server with Ubuntu 24.04 or any Linux OS<\/li>\n\n\n\n<li>User privileges: root or non-root user with sudo privileges<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Update the System<\/h2>\n\n\n\n<p>We will use Ubuntu 24.04 OS in this blog post, but you can choose any Linux distro. It is recommended that the system packages be updated to their latest versions before executing any Linux command. To do that you can execute the following:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo apt update -y &amp;&amp; sudo apt upgrade -y<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Check Nohup command version<\/h2>\n\n\n\n<p>To check the nohup version execute the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">nohup --version<\/pre>\n\n\n\n<p>You will receive output similar to this:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">root@host:~# nohup --version\nnohup (GNU coreutils) 9.4\nCopyright (C) 2023 Free Software Foundation, Inc.\nLicense GPLv3+: GNU GPL version 3 or later .\nThis is free software: you are free to change and redistribute it.\nThere is NO WARRANTY, to the extent permitted by law.\n\nWritten by Jim Meyering.\n<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Nohup Syntax<\/h2>\n\n\n\n<p>The syntax of the nohup command is the following:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">nohup command [options] &amp;<\/pre>\n\n\n\n<p><strong>command<\/strong>: is the command or script that we want to execute.<\/p>\n\n\n\n<p><strong>options<\/strong>: are the arguments or flags responsible for the command&#8217;s behavior.<\/p>\n\n\n\n<p><strong>&amp;<\/strong>: Is the ampersand on the end of the command that instructs the shell to run the command in the background.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Nohup command with examples<\/h2>\n\n\n\n<p>We will show you some real examples of the nohup command, such as data backups, script executions, server log analysis, and database backup commands.<\/p>\n\n\n\n<p><strong>Download Huge File<\/strong>: We want to download a massive file from the Internet but cannot supervise the process. To do that, we can execute the command below:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">nohup wget http:\/\/website.com\/hugegamefile.iso &amp;<\/pre>\n\n\n\n<p>Once you execute this, the file will be downloaded in the background.<\/p>\n\n\n\n<p><strong>MySQL Database backup<\/strong>: If we have to make a database dump but the database size is massive, let&#8217;s say 100GBs, then we can execute the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">nohup mysqldump -u root -p &gt; dump.sql &amp;<\/pre>\n\n\n\n<p><strong>Script Execution<\/strong>: To execute a bash script with nohup command, you can use the following one:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">nohup bash hello.sh &amp;<\/pre>\n\n\n\n<p>You should get output similar to this:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">root@host:~# nohup bash hello.sh &amp;\n[1] 138571\nroot@host:~# nohup: ignoring input and appending output to 'nohup.out'\n<\/pre>\n\n\n\n<p>As you can see, the script&#8217;s execution started in process 138571, and the script&#8217;s output will be written to a <strong>nohup.out<\/strong> file.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">root@host:~# cat nohup.out \nHello World\n<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Nohup full explanation<\/h2>\n\n\n\n<p>If you want to know more about the nohup command, you can execute this in your Linux terminal:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">man nohup<\/pre>\n\n\n\n<p>You will get the output with a full description:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">NOHUP(1)                                                                           User Commands                                                                           NOHUP(1)\n\nNAME\n       nohup - run a command immune to hangups, with output to a non-tty\n\nSYNOPSIS\n       nohup COMMAND [ARG]...\n       nohup OPTION\n\nDESCRIPTION\n       Run COMMAND, ignoring hangup signals.\n\n       --help display this help and exit\n\n       --version\n              output version information and exit\n\n       If  standard input is a terminal, redirect it from an unreadable file.  If standard output is a terminal, append output to 'nohup.out' if possible, '$HOME\/nohup.out' other\u2010\n       wise.  If standard error is a terminal, redirect it to standard output.  To save output to FILE, use 'nohup COMMAND &gt; FILE'.\n\n       NOTE: your shell may have its own version of nohup, which usually supersedes the version described here.  Please refer to your shell's documentation for details  about  the\n       options it supports.\n<\/pre>\n\n\n\n<p>That&#8217;s it! You have learned some basic nohup commands in Linux with examples.<\/p>\n\n\n\n<p>If you have difficulties with the nohup command, our Linux admins will help you with any aspect of it. All you have to do is sign up for one of our <a href=\"https:\/\/linuxhostsupport.com\/monthly-server-management.html\" target=\"_blank\" rel=\"noreferrer noopener\">monthly management<\/a> or <a href=\"https:\/\/linuxhostsupport.com\/per-incident-support.html\" target=\"_blank\" rel=\"noreferrer noopener\">per-incident server support<\/a> plans. Do not hesitate to contact us anytime. We are available 24\/7.<\/p>\n\n\n\n<p>If you liked this post, please share it with your friends or leave a reply below. Thanks.<\/p><div id=\"linux-2862126460\" class=\"linux-after-8th-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1340&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div>\n","protected":false},"excerpt":{"rendered":"<p>This tutorial will teach us about the Nohup command in Linux. The Nohup is short for no hang-up and is a Linux command that keeps processes running without an active shell or terminal. This means that if we quit or close the terminal window, the process will still be active in the background thanks to [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":2236,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[228],"tags":[293,45,295],"class_list":["post-2227","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-linux","tag-command","tag-linux","tag-nohup"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Nohup Command in Linux | LinuxHostSupport<\/title>\n<meta name=\"description\" content=\"What is the Nohup command in Linux and how can you use it? We go over everything you need to know with examples.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/linuxhostsupport.com\/blog\/nohup-command-in-linux\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Nohup Command in Linux | LinuxHostSupport\" \/>\n<meta property=\"og:description\" content=\"What is the Nohup command in Linux and how can you use it? We go over everything you need to know with examples.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linuxhostsupport.com\/blog\/nohup-command-in-linux\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxHostSupport\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/linuxhostsupport\" \/>\n<meta property=\"article:published_time\" content=\"2024-12-15T18:30:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2024\/12\/guide-to-nohup-command-in-linux.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"742\" \/>\n\t<meta property=\"og:image:height\" content=\"410\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:site\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/nohup-command-in-linux\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/nohup-command-in-linux\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"headline\":\"Nohup Command in Linux\",\"datePublished\":\"2024-12-15T18:30:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/nohup-command-in-linux\\\/\"},\"wordCount\":493,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/nohup-command-in-linux\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/12\\\/guide-to-nohup-command-in-linux.webp\",\"keywords\":[\"command\",\"linux\",\"nohup\"],\"articleSection\":[\"Linux\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/nohup-command-in-linux\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/nohup-command-in-linux\\\/\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/nohup-command-in-linux\\\/\",\"name\":\"Nohup Command in Linux | LinuxHostSupport\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/nohup-command-in-linux\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/nohup-command-in-linux\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/12\\\/guide-to-nohup-command-in-linux.webp\",\"datePublished\":\"2024-12-15T18:30:00+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"description\":\"What is the Nohup command in Linux and how can you use it? We go over everything you need to know with examples.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/nohup-command-in-linux\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/nohup-command-in-linux\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/nohup-command-in-linux\\\/#primaryimage\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/12\\\/guide-to-nohup-command-in-linux.webp\",\"contentUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/12\\\/guide-to-nohup-command-in-linux.webp\",\"width\":742,\"height\":410,\"caption\":\"Nohup Command in Linux\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/nohup-command-in-linux\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Nohup Command in Linux\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\",\"name\":\"LinuxHostSupport\",\"description\":\"Linux Tutorials and Guides\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/author\\\/r0s3admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Nohup Command in Linux | LinuxHostSupport","description":"What is the Nohup command in Linux and how can you use it? We go over everything you need to know with examples.","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:\/\/linuxhostsupport.com\/blog\/nohup-command-in-linux\/","og_locale":"en_US","og_type":"article","og_title":"Nohup Command in Linux | LinuxHostSupport","og_description":"What is the Nohup command in Linux and how can you use it? We go over everything you need to know with examples.","og_url":"https:\/\/linuxhostsupport.com\/blog\/nohup-command-in-linux\/","og_site_name":"LinuxHostSupport","article_publisher":"https:\/\/www.facebook.com\/linuxhostsupport","article_published_time":"2024-12-15T18:30:00+00:00","og_image":[{"width":742,"height":410,"url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2024\/12\/guide-to-nohup-command-in-linux.webp","type":"image\/webp"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@lnxhostsupport","twitter_site":"@lnxhostsupport","twitter_misc":{"Written by":"admin","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/linuxhostsupport.com\/blog\/nohup-command-in-linux\/#article","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/nohup-command-in-linux\/"},"author":{"name":"admin","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"headline":"Nohup Command in Linux","datePublished":"2024-12-15T18:30:00+00:00","mainEntityOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/nohup-command-in-linux\/"},"wordCount":493,"commentCount":0,"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/nohup-command-in-linux\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2024\/12\/guide-to-nohup-command-in-linux.webp","keywords":["command","linux","nohup"],"articleSection":["Linux"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linuxhostsupport.com\/blog\/nohup-command-in-linux\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/linuxhostsupport.com\/blog\/nohup-command-in-linux\/","url":"https:\/\/linuxhostsupport.com\/blog\/nohup-command-in-linux\/","name":"Nohup Command in Linux | LinuxHostSupport","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/nohup-command-in-linux\/#primaryimage"},"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/nohup-command-in-linux\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2024\/12\/guide-to-nohup-command-in-linux.webp","datePublished":"2024-12-15T18:30:00+00:00","author":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"description":"What is the Nohup command in Linux and how can you use it? We go over everything you need to know with examples.","breadcrumb":{"@id":"https:\/\/linuxhostsupport.com\/blog\/nohup-command-in-linux\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linuxhostsupport.com\/blog\/nohup-command-in-linux\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linuxhostsupport.com\/blog\/nohup-command-in-linux\/#primaryimage","url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2024\/12\/guide-to-nohup-command-in-linux.webp","contentUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2024\/12\/guide-to-nohup-command-in-linux.webp","width":742,"height":410,"caption":"Nohup Command in Linux"},{"@type":"BreadcrumbList","@id":"https:\/\/linuxhostsupport.com\/blog\/nohup-command-in-linux\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linuxhostsupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Nohup Command in Linux"}]},{"@type":"WebSite","@id":"https:\/\/linuxhostsupport.com\/blog\/#website","url":"https:\/\/linuxhostsupport.com\/blog\/","name":"LinuxHostSupport","description":"Linux Tutorials and Guides","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/linuxhostsupport.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","caption":"admin"},"url":"https:\/\/linuxhostsupport.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/2227","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/comments?post=2227"}],"version-history":[{"count":4,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/2227\/revisions"}],"predecessor-version":[{"id":2233,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/2227\/revisions\/2233"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media\/2236"}],"wp:attachment":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media?parent=2227"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/categories?post=2227"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/tags?post=2227"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}