{"id":2189,"date":"2024-10-30T12:30:00","date_gmt":"2024-10-30T17:30:00","guid":{"rendered":"https:\/\/linuxhostsupport.com\/blog\/?p=2189"},"modified":"2024-10-01T06:59:11","modified_gmt":"2024-10-01T11:59:11","slug":"debian-shutdown-command","status":"publish","type":"post","link":"https:\/\/linuxhostsupport.com\/blog\/debian-shutdown-command\/","title":{"rendered":"Debian Shutdown Command: How to Shutdown Linux by Command"},"content":{"rendered":"\n<div id=\"linux-3627362334\" 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>When you shut down your machine or computer, all software applications, files, programs, and processes are terminated, erasing all data stored in RAM. Occasionally, it is necessary to shut down the system to update packages or perform a system upgrade, followed by a restart. While many individuals are familiar with the graphical user interface (GUI) method for shutting down the system, this article will explore the procedure for shutting down Debian 11 (Linux OS) utilizing the &#8220;shutdown&#8221; command in the terminal. The shutdown command can be employed in various contexts by incorporating the &#8220;time&#8221; and &#8220;message&#8221; parameters. This article will show you how to run the shutdown command on your Linux machine.<\/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>SSH root access or a regular system user with sudo privileges<\/li>\n<\/ul>\n\n\n\n<h4 class=\"wp-block-heading\">Conventions<\/h4>\n\n\n\n<pre class=\"wp-block-preformatted\"># \u2013 given commands should be executed with root privileges either directly as a root user or by use of sudo command<br>$ \u2013 given commands should be executed as a regular user<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Shutdown Debian Using &#8216;shutdown&#8217; command.<\/h2>\n\n\n\n<p>The shutdown command safely shuts down the system. All logged-in and processing users are notified that the system is shutting down, and no additional logins are allowed. You can choose to shut down your computer immediately or at a later time.<\/p>\n\n\n\n<p>shutdown is just a symbolic link to systemctl, which is aware that invoking it as shutdown should initiate the same processes as systemctl poweroff. The same principle applies to reboot\/systemctl reboot.<\/p>\n\n\n\n<p>You can verify this with these commands.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$ sudo which shutdown<\/pre>\n\n\n\n<p>It will return an output like this:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">\/usr\/sbin\/shutdown<\/pre>\n\n\n\n<p>Now, let&#8217;s check the executable with this command<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$ sudo ls -lh \/usr\/sbin\/shutdown<\/pre>\n\n\n\n<p>You will see the output like this:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">lrwxrwxrwx 1 root root 14 Aug 25 12:35 \/usr\/sbin\/shutdown -&gt; \/bin\/systemctl<\/pre>\n\n\n\n<p>It means the &#8216;shutdown&#8217; command is just a symbolic link to &#8216;systemctl&#8217;<\/p>\n\n\n\n<p>Let&#8217;s learn about the syntax:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">shutdown [options] [time] [message]<\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\">options: These are some shutdown options like turning off the power (default option), rebooting the system, or halting.<br>time: The shutdown process starts at a specific time specified by the time argument.<br>message: The message option is used to specify a message to be broadcasted to all users.<\/pre>\n\n\n\n<p>By running the command mentioned below, your System will be shut down using the shutdown command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$ sudo shutdown<\/pre>\n\n\n\n<p>The system will shut down after 1 minute because if no time argument is specified, &#8220;+1&#8221; is implied.<\/p>\n\n\n\n<p>Now, the system will shut down after 1 minute.<\/p>\n\n\n\n<p>Besides using the &#8216;shutdown&#8217; command to shut down your machine, you can also execute this command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$ sudo systemctl poweroff<\/pre>\n\n\n\n<p>The systemctl command does not directly support scheduled shutdowns. Instead, we can use the at or sleep command in combination with systemctl. For example, we can run this:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$ echo 'sudo systemctl poweroff' | at now + 2 minutes<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Shutdown Immediately<\/h2>\n\n\n\n<p>We can immediately shut down our system without waiting for the default time of 1 minute using the \u201cnow\u201d command after shutting down with the command mentioned below:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$ sudo shutdown -h now<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Shutdown After N Time<\/h2>\n\n\n\n<p>To shut down the system after a specified time, we use time argument with the shutdown command so the syntax becomes:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$ sudo shutdown [time]<\/pre>\n\n\n\n<p>Time can have two formats &#8211; hh:mm sets the time based on the time zone, and +m shuts down the System after the specified number of minutes.<\/p>\n\n\n\n<p>To shut down the System at 11:50 AM, run the command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$ sudo shutdown 11:50<\/pre>\n\n\n\n<p>The output shows that the System will be shutdown at 11:50:00<\/p>\n\n\n\n<p>To shut down the System after 5 minutes, run the below-mentioned command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$ sudo shutdown +5\n\nThe date command shows the current time.<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Shutdown and Send a Message<\/h2>\n\n\n\n<p>We can also send a notification at the time of shutdown using the message argument after the time in the shutdown command. The mentioned message will be broadcast at the time of shutdown; execute the below-mentioned command to broadcast the message \u201cSystem update\u201d with the help of the shutdown command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$ sudo shutdown +2 \"System Update\"<\/pre>\n\n\n\n<p>This will broadcast a message after the execution of the shutdown command.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Reboot System <\/h2>\n\n\n\n<p>We can also reboot our system using the \u201c-r\u201d flag after the shutdown command, as mentioned below:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$ sudo shutdown -r<\/pre>\n\n\n\n<p>Since no time is specified, this will start rebooting after the default time of \u201c1 minute.\u201d<\/p>\n\n\n\n<p>Reboot the system by specifying the time and sending a message using the \u201cshutdown\u201d command.<br>We can also set the time for rebooting as we did for shutdown. To reboot the System after 3 minutes by showing \u201cUpdate System,\u201d run the command mentioned below:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$ sudo shutdown +3 \u2013r \"Update System\"<\/pre>\n\n\n\n<p>This will start rebooting after 3 minutes and show a message before rebooting.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Cancel shutdown<\/h2>\n\n\n\n<p>If you want to cancel shutdown using the \u201cshutdown\u201d command, run the command mentioned below:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$ sudo shutdown -c<\/pre>\n\n\n\n<p>That&#8217;s it all! You have learned about the Debian shutdown command.<\/p>\n\n\n\n<p>Of course, if you have an <a href=\"https:\/\/linuxhostsupport.com\/monthly-server-management.html\" target=\"_blank\" rel=\"noreferrer noopener\">active service wit<\/a>h us, you don\u2019t have to learn how to shut down or reboot your Debian server \u2014 ask our admins, sit back, and relax. Our admins will help you do it immediately upon request. Our experienced system administrators are available 24\u00d77 and will take care of your request immediately. All you need to do is submit a ticket or initiate a live chat session.<\/p>\n\n\n\n<p>If you liked this post about the Debian shutdown command, please share it with your friends on social networks or leave a comment in the comments section.<\/p><div id=\"linux-2384839281\" 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>When you shut down your machine or computer, all software applications, files, programs, and processes are terminated, erasing all data stored in RAM. Occasionally, it is necessary to shut down the system to update packages or perform a system upgrade, followed by a restart. While many individuals are familiar with the graphical user interface (GUI) [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":2200,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[201],"tags":[226,28,45,289],"class_list":["post-2189","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-debian","tag-commands","tag-debian","tag-linux","tag-shutdown"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Debian Shutdown Command: Shutdown Linux by Command<\/title>\n<meta name=\"description\" content=\"Learn how to shutdown Linux by Command using the Debian Shutdown Command in our latest step-by-step guide.\" \/>\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\/debian-shutdown-command\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Debian Shutdown Command: Shutdown Linux by Command\" \/>\n<meta property=\"og:description\" content=\"Learn how to shutdown Linux by Command using the Debian Shutdown Command in our latest step-by-step guide.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linuxhostsupport.com\/blog\/debian-shutdown-command\/\" \/>\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-10-30T17:30:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2024\/10\/debian-shutdown-command-how-to-shutdown-linux-by-command.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\\\/debian-shutdown-command\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/debian-shutdown-command\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"headline\":\"Debian Shutdown Command: How to Shutdown Linux by Command\",\"datePublished\":\"2024-10-30T17:30:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/debian-shutdown-command\\\/\"},\"wordCount\":739,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/debian-shutdown-command\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/debian-shutdown-command-how-to-shutdown-linux-by-command.webp\",\"keywords\":[\"commands\",\"debian\",\"linux\",\"shutdown\"],\"articleSection\":[\"Debian\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/debian-shutdown-command\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/debian-shutdown-command\\\/\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/debian-shutdown-command\\\/\",\"name\":\"Debian Shutdown Command: Shutdown Linux by Command\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/debian-shutdown-command\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/debian-shutdown-command\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/debian-shutdown-command-how-to-shutdown-linux-by-command.webp\",\"datePublished\":\"2024-10-30T17:30:00+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"description\":\"Learn how to shutdown Linux by Command using the Debian Shutdown Command in our latest step-by-step guide.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/debian-shutdown-command\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/debian-shutdown-command\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/debian-shutdown-command\\\/#primaryimage\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/debian-shutdown-command-how-to-shutdown-linux-by-command.webp\",\"contentUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/debian-shutdown-command-how-to-shutdown-linux-by-command.webp\",\"width\":742,\"height\":410,\"caption\":\"Debian Shutdown Command - How to Shutdown Linux by Command\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/debian-shutdown-command\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Debian Shutdown Command: How to Shutdown Linux by Command\"}]},{\"@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":"Debian Shutdown Command: Shutdown Linux by Command","description":"Learn how to shutdown Linux by Command using the Debian Shutdown Command in our latest step-by-step guide.","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\/debian-shutdown-command\/","og_locale":"en_US","og_type":"article","og_title":"Debian Shutdown Command: Shutdown Linux by Command","og_description":"Learn how to shutdown Linux by Command using the Debian Shutdown Command in our latest step-by-step guide.","og_url":"https:\/\/linuxhostsupport.com\/blog\/debian-shutdown-command\/","og_site_name":"LinuxHostSupport","article_publisher":"https:\/\/www.facebook.com\/linuxhostsupport","article_published_time":"2024-10-30T17:30:00+00:00","og_image":[{"width":742,"height":410,"url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2024\/10\/debian-shutdown-command-how-to-shutdown-linux-by-command.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\/debian-shutdown-command\/#article","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/debian-shutdown-command\/"},"author":{"name":"admin","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"headline":"Debian Shutdown Command: How to Shutdown Linux by Command","datePublished":"2024-10-30T17:30:00+00:00","mainEntityOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/debian-shutdown-command\/"},"wordCount":739,"commentCount":0,"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/debian-shutdown-command\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2024\/10\/debian-shutdown-command-how-to-shutdown-linux-by-command.webp","keywords":["commands","debian","linux","shutdown"],"articleSection":["Debian"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linuxhostsupport.com\/blog\/debian-shutdown-command\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/linuxhostsupport.com\/blog\/debian-shutdown-command\/","url":"https:\/\/linuxhostsupport.com\/blog\/debian-shutdown-command\/","name":"Debian Shutdown Command: Shutdown Linux by Command","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/debian-shutdown-command\/#primaryimage"},"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/debian-shutdown-command\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2024\/10\/debian-shutdown-command-how-to-shutdown-linux-by-command.webp","datePublished":"2024-10-30T17:30:00+00:00","author":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"description":"Learn how to shutdown Linux by Command using the Debian Shutdown Command in our latest step-by-step guide.","breadcrumb":{"@id":"https:\/\/linuxhostsupport.com\/blog\/debian-shutdown-command\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linuxhostsupport.com\/blog\/debian-shutdown-command\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linuxhostsupport.com\/blog\/debian-shutdown-command\/#primaryimage","url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2024\/10\/debian-shutdown-command-how-to-shutdown-linux-by-command.webp","contentUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2024\/10\/debian-shutdown-command-how-to-shutdown-linux-by-command.webp","width":742,"height":410,"caption":"Debian Shutdown Command - How to Shutdown Linux by Command"},{"@type":"BreadcrumbList","@id":"https:\/\/linuxhostsupport.com\/blog\/debian-shutdown-command\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linuxhostsupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Debian Shutdown Command: How to Shutdown Linux by Command"}]},{"@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\/2189","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=2189"}],"version-history":[{"count":3,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/2189\/revisions"}],"predecessor-version":[{"id":2192,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/2189\/revisions\/2192"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media\/2200"}],"wp:attachment":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media?parent=2189"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/categories?post=2189"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/tags?post=2189"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}