<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments on: How to Use Shutdown, Poweroff, Halt, and Reboot Commands in Linux	</title>
	<atom:link href="https://www.tecmint.com/shutdown-poweroff-halt-and-reboot-commands-in-linux/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.tecmint.com/shutdown-poweroff-halt-and-reboot-commands-in-linux/</link>
	<description>Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks.</description>
	<lastBuildDate>Fri, 02 May 2025 04:13:34 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: Ronald		</title>
		<link>https://www.tecmint.com/shutdown-poweroff-halt-and-reboot-commands-in-linux/comment-page-1/#comment-2302462</link>

		<dc:creator><![CDATA[Ronald]]></dc:creator>
		<pubDate>Thu, 01 May 2025 08:43:51 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=25623#comment-2302462</guid>

					<description><![CDATA[You need to correct the text. I wanted to power off a server and used &lt;code&gt;halt -p&lt;/code&gt;, since &lt;code&gt;shutdown -p&lt;/code&gt; does not work — the correct option is &lt;code&gt;shutdown -P&lt;/code&gt;.

The following are the options for the shutdown command in Linux:

&lt;code&gt;-r&lt;/code&gt;: Requests that the system be rebooted after it has been brought down.

&lt;code&gt;-h&lt;/code&gt;: Requests that the system be either halted or powered off after it has been brought down, with the choice left up to the system.

&lt;code&gt;-H&lt;/code&gt;: Requests that the system be halted after it has been brought down.

&lt;code&gt;-P&lt;/code&gt;: Requests that the system be powered off after it has been brought down.

&lt;code&gt;-c&lt;/code&gt;: Cancels a running shutdown. TIME is not specified with this option; the first argument is the MESSAGE.

&lt;code&gt;-k&lt;/code&gt;: Only sends out the warning messages and disables logins — does not actually bring the system down.]]></description>
			<content:encoded><![CDATA[<p>You need to correct the text. I wanted to power off a server and used <code>halt -p</code>, since <code>shutdown -p</code> does not work — the correct option is <code>shutdown -P</code>.</p>
<p>The following are the options for the shutdown command in Linux:</p>
<p><code>-r</code>: Requests that the system be rebooted after it has been brought down.</p>
<p><code>-h</code>: Requests that the system be either halted or powered off after it has been brought down, with the choice left up to the system.</p>
<p><code>-H</code>: Requests that the system be halted after it has been brought down.</p>
<p><code>-P</code>: Requests that the system be powered off after it has been brought down.</p>
<p><code>-c</code>: Cancels a running shutdown. TIME is not specified with this option; the first argument is the MESSAGE.</p>
<p><code>-k</code>: Only sends out the warning messages and disables logins — does not actually bring the system down.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Robin A. Meade		</title>
		<link>https://www.tecmint.com/shutdown-poweroff-halt-and-reboot-commands-in-linux/comment-page-1/#comment-1349433</link>

		<dc:creator><![CDATA[Robin A. Meade]]></dc:creator>
		<pubDate>Sat, 01 Aug 2020 18:50:34 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=25623#comment-1349433</guid>

					<description><![CDATA[Shouldn&#039;t it be uppercase &lt;code&gt;-P&lt;/code&gt; for power-off?]]></description>
			<content:encoded><![CDATA[<p>Shouldn&#8217;t it be uppercase <code>-P</code> for power-off?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: OluKayode Mayomi		</title>
		<link>https://www.tecmint.com/shutdown-poweroff-halt-and-reboot-commands-in-linux/comment-page-1/#comment-1336478</link>

		<dc:creator><![CDATA[OluKayode Mayomi]]></dc:creator>
		<pubDate>Wed, 03 Jun 2020 21:43:52 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=25623#comment-1336478</guid>

					<description><![CDATA[Some of y&#039;all are imbecile, there is a reason for having all 3 commands as they are similar but not the same. For instance, the &lt;strong&gt;shutdown&lt;/strong&gt; command will also write a shutdown script. Perhaps, you just want to do low-level maintenance, &lt;strong&gt;halt&lt;/strong&gt; will be a suitable command to use as it will stop all running process and stop the CPU as well. 

You will probably remember &lt;strong&gt;halt&lt;/strong&gt; quicker than &lt;code&gt;Shutdown -H&lt;/code&gt; and as for &lt;strong&gt;reboot&lt;/strong&gt;, self explanatory. Easier to remember as opposed to &lt;code&gt;shutdown -r.&lt;/code&gt;, etc.]]></description>
			<content:encoded><![CDATA[<p>Some of y&#8217;all are imbecile, there is a reason for having all 3 commands as they are similar but not the same. For instance, the <strong>shutdown</strong> command will also write a shutdown script. Perhaps, you just want to do low-level maintenance, <strong>halt</strong> will be a suitable command to use as it will stop all running process and stop the CPU as well. </p>
<p>You will probably remember <strong>halt</strong> quicker than <code>Shutdown -H</code> and as for <strong>reboot</strong>, self explanatory. Easier to remember as opposed to <code>shutdown -r.</code>, etc.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Oi oi		</title>
		<link>https://www.tecmint.com/shutdown-poweroff-halt-and-reboot-commands-in-linux/comment-page-1/#comment-1293830</link>

		<dc:creator><![CDATA[Oi oi]]></dc:creator>
		<pubDate>Fri, 22 Nov 2019 15:10:36 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=25623#comment-1293830</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/shutdown-poweroff-halt-and-reboot-commands-in-linux/comment-page-1/#comment-889516&quot;&gt;Tanmaya Meher&lt;/a&gt;.

poweroff master race]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/shutdown-poweroff-halt-and-reboot-commands-in-linux/comment-page-1/#comment-889516">Tanmaya Meher</a>.</p>
<p>poweroff master race</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ken		</title>
		<link>https://www.tecmint.com/shutdown-poweroff-halt-and-reboot-commands-in-linux/comment-page-1/#comment-1026027</link>

		<dc:creator><![CDATA[Ken]]></dc:creator>
		<pubDate>Tue, 21 Aug 2018 19:57:54 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=25623#comment-1026027</guid>

					<description><![CDATA[Can I configure the amount of time the system is powered off during a reboot command?  (Using Centos 7)]]></description>
			<content:encoded><![CDATA[<p>Can I configure the amount of time the system is powered off during a reboot command?  (Using Centos 7)</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
