<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Alex's Antidote &#187; 30 Minutes</title>
	<atom:link href="http://alexsantidote.com/tag/30-minutes/feed/" rel="self" type="application/rss+xml" />
	<link>http://alexsantidote.com</link>
	<description>...the cure for what ails you...</description>
	<lastBuildDate>Fri, 15 Jul 2011 02:09:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>How to: Initiate a Timed Shutdown</title>
		<link>http://alexsantidote.com/342/how-to-initiate-a-timed-shutdown/</link>
		<comments>http://alexsantidote.com/342/how-to-initiate-a-timed-shutdown/#comments</comments>
		<pubDate>Tue, 19 Oct 2010 00:05:07 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Tech Stuff]]></category>
		<category><![CDATA[15 Minutes]]></category>
		<category><![CDATA[30 Minutes]]></category>
		<category><![CDATA[Downloads]]></category>
		<category><![CDATA[Extra]]></category>
		<category><![CDATA[Fit]]></category>
		<category><![CDATA[H 120]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Machine Computer]]></category>
		<category><![CDATA[Netbook]]></category>
		<category><![CDATA[Quotes]]></category>
		<category><![CDATA[Running]]></category>
		<category><![CDATA[Terminal Run]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://alexsantidote.com/?p=342</guid>
		<description><![CDATA[<table cellpadding='10'><tr><td valign='top'></td><td valign='top' align='left'>On Friday I was downloading some files on my Netbook (running Ubuntu Remix 10.04) and was not planning to stick around for the downloads to finish (it was already close to 7pm, I needed to get home for the weekend). I didn&#8217;t want to leave it running all weekend and I still had another hour [...]<table width='100%'><tr><td align=right><p><b>(<a href='http://alexsantidote.com/342/how-to-initiate-a-timed-shutdown/' title='How to: Initiate a Timed Shutdown'>Read more...</a>)</b></p></td></tr></table></td></tr><tr><td><p>Categories: <a href="http://alexsantidote.com/category/antidotes/" title="View all posts in Tech Stuff" rel="category tag">Tech Stuff</a></p><p>Tags: <a href="http://alexsantidote.com/tag/15-minutes/" rel="tag">15 Minutes</a>, <a href="http://alexsantidote.com/tag/30-minutes/" rel="tag">30 Minutes</a>, <a href="http://alexsantidote.com/tag/downloads/" rel="tag">Downloads</a>, <a href="http://alexsantidote.com/tag/extra/" rel="tag">Extra</a>, <a href="http://alexsantidote.com/tag/fit/" rel="tag">Fit</a>, <a href="http://alexsantidote.com/tag/h-120/" rel="tag">H 120</a>, <a href="http://alexsantidote.com/tag/linux/" rel="tag">Linux</a>, <a href="http://alexsantidote.com/tag/mac-antidotes/" rel="tag">Mac</a>, <a href="http://alexsantidote.com/tag/machine-computer/" rel="tag">Machine Computer</a>, <a href="http://alexsantidote.com/tag/netbook/" rel="tag">Netbook</a>, <a href="http://alexsantidote.com/tag/quotes/" rel="tag">Quotes</a>, <a href="http://alexsantidote.com/tag/running/" rel="tag">Running</a>, <a href="http://alexsantidote.com/tag/terminal-run/" rel="tag">Terminal Run</a>, <a href="http://alexsantidote.com/tag/ubuntu/" rel="tag">Ubuntu</a>, <a href="http://alexsantidote.com/tag/windows/" rel="tag">Windows</a></p></td></tr></table>]]></description>
			<content:encoded><![CDATA[<fb:like href='http://alexsantidote.com/342/how-to-initiate-a-timed-shutdown/' send='false' layout='button_count' show_faces='true' width='450' height='65' action='like' colorscheme='light' font='lucida+grande'></fb:like><p>On Friday I was downloading some files on my Netbook (running Ubuntu Remix 10.04) and was not planning to stick around for the downloads to finish (it was already close to 7pm, I needed to get home for the weekend). I didn&#8217;t want to leave it running all weekend and I still had another hour to go before my downloads finished&#8230;<br />
What to do?</p>
<p>Well I decided to initiate a delayed shutdown of my system. Since the downloads had about 1hr and 15 minutes left, I decided to be extra safe and set the shutdown for an extra 30 minutes after that&#8230; Here&#8217;s how I did it:</p>
<p>In your terminal, run the following command:</p>
<div style="background-color: #bbbbbb; border: 1px solid black;">
<pre><code>sudo shutdown -h 20:45 "See you on Monday!"</code></pre>
</div>
<p>you can change the time to fit your needs and change the message (between the quotes) to whatever you like or leave it out as the message is optional.</p>
<p>You could also set it to shutdown by using a slightly different format, like this:</p>
<div style="background-color: #bbbbbb; border: 1px solid black;">
<pre><code>sudo shutdown -h +120 "Shutting down in 2hrs -- or 120 minutes"</code></pre>
</div>
<p>This works on Linux and Mac. If you want to do this on Windows you could try something like this (if you are an admin):</p>
<div style="background-color: #bbbbbb; border: 1px solid black;">
<pre><code>at 20:45 shutdown /l /r /y /c</code></pre>
</div>
<p>But I cannot vouch for how effective this will be (on Windows I mean) as it  may only shutdown the OS not the machine/computer&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://alexsantidote.com/342/how-to-initiate-a-timed-shutdown/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top Secret Project &#8211; Phase 2</title>
		<link>http://alexsantidote.com/4/top-secret-project-phase-2/</link>
		<comments>http://alexsantidote.com/4/top-secret-project-phase-2/#comments</comments>
		<pubDate>Thu, 27 Dec 2007 16:36:01 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Updates]]></category>
		<category><![CDATA[30 Minutes]]></category>
		<category><![CDATA[Burn Cd]]></category>
		<category><![CDATA[Computer Time]]></category>
		<category><![CDATA[Installation Cd]]></category>
		<category><![CDATA[Installation Linux]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Notebook Computer]]></category>
		<category><![CDATA[Operating System]]></category>
		<category><![CDATA[Phase 2]]></category>
		<category><![CDATA[Project]]></category>
		<category><![CDATA[Project Phase]]></category>
		<category><![CDATA[Top Secret Project]]></category>

		<guid isPermaLink="false">http://alexsantidote.com/blog/updates/top-secret-project-phase-2/</guid>
		<description><![CDATA[<table cellpadding='10'><tr><td valign='top'></td><td valign='top' align='left'>Status: Complete! Name: Installation of Linux Description: Download and burn the installation CD of Ubuntu Linux and install the operating system on my notebook computer. Time to Complete: It took about 10 hours to download and burn the disk, and about 30 minutes to install. Notes: Ubuntu was installed and ran great without any problems! [...]<table width='100%'><tr><td align=right><p><b>(<a href='http://alexsantidote.com/4/top-secret-project-phase-2/' title='Top Secret Project - Phase 2'>Read more...</a>)</b></p></td></tr></table></td></tr><tr><td><p>Categories: <a href="http://alexsantidote.com/category/updates/" title="View all posts in Updates" rel="category tag">Updates</a></p><p>Tags: <a href="http://alexsantidote.com/tag/30-minutes/" rel="tag">30 Minutes</a>, <a href="http://alexsantidote.com/tag/burn-cd/" rel="tag">Burn Cd</a>, <a href="http://alexsantidote.com/tag/computer-time/" rel="tag">Computer Time</a>, <a href="http://alexsantidote.com/tag/installation-cd/" rel="tag">Installation Cd</a>, <a href="http://alexsantidote.com/tag/installation-linux/" rel="tag">Installation Linux</a>, <a href="http://alexsantidote.com/tag/linux/" rel="tag">Linux</a>, <a href="http://alexsantidote.com/tag/notebook-computer/" rel="tag">Notebook Computer</a>, <a href="http://alexsantidote.com/tag/operating-system/" rel="tag">Operating System</a>, <a href="http://alexsantidote.com/tag/phase-2/" rel="tag">Phase 2</a>, <a href="http://alexsantidote.com/tag/project/" rel="tag">Project</a>, <a href="http://alexsantidote.com/tag/project-phase/" rel="tag">Project Phase</a>, <a href="http://alexsantidote.com/tag/top-secret-project/" rel="tag">Top Secret Project</a></p></td></tr></table>]]></description>
			<content:encoded><![CDATA[<fb:like href='http://alexsantidote.com/4/top-secret-project-phase-2/' send='false' layout='button_count' show_faces='true' width='450' height='65' action='like' colorscheme='light' font='lucida+grande'></fb:like><p><strong>Status:</strong> Complete!</p>
<p><strong>Name:</strong> Installation of Linux<br />
<strong><br />
Description:</strong> Download and burn the installation CD of Ubuntu Linux and install the operating system on my notebook computer.<br />
<strong><br />
Time to Complete:</strong> It took about 10 hours to download and burn the disk, and about 30 minutes to install.<br />
<strong><br />
Notes:</strong> Ubuntu was installed and ran great without any problems! There were problems, however, with Windows! This was not the fault of Ubuntu, but rather mine. More will be explained about this at a later time. If I remember I will post a link to that article here.</p>
]]></content:encoded>
			<wfw:commentRss>http://alexsantidote.com/4/top-secret-project-phase-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

