<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.droptips.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">

<channel>
	<title>droptips.com</title>
	
	<link>http://droptips.com</link>
	<description>Technology Tips, and Anything Else</description>
	<lastBuildDate>Fri, 27 Apr 2012 19:59:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.droptips.com/droptips" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="droptips" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" /><meta xmlns="http://pipes.yahoo.com" name="pipes" content="noprocess" /><feedburner:emailServiceId xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">droptips</feedburner:emailServiceId><feedburner:feedburnerHostname xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Using grep and Ignoring Case (Case Insensitive grep)</title>
		<link>http://droptips.com/using-grep-and-ignoring-case-case-insensitive-grep</link>
		<comments>http://droptips.com/using-grep-and-ignoring-case-case-insensitive-grep#comments</comments>
		<pubDate>Fri, 27 Apr 2012 17:50:31 +0000</pubDate>
		<dc:creator>Daz</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[bsd]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[os x]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://droptips.com/?p=1144</guid>
		<description><![CDATA[grep is a great way to find phrases, words, and characters in text.  One of the biggest stumbling blocks is case &#8211; is the word &#8220;Hello&#8221;, &#8220;hello&#8221;, &#8220;HELLO&#8221;, or even &#8220;HeLLo&#8221;?  All of these are different, and a &#8220;grep &#8220;Hello&#8221;" [...]

<h3>Other posts which may be of interest..</h3>
		<a href="http://droptips.com/using-grep-to-exclude-lines-containing-certain-characterstext" rel="bookmark">Using grep to Exclude Lines Containing Certain Characters/Text</a>
	
		<a href="http://droptips.com/count-the-number-of-words-in-a-text-file-osx-linux-bsd" rel="bookmark">Count the Number of Words in a Text File (OSX, Linux, BSD)</a>
	
		<a href="http://droptips.com/vim-text-editor-use-spaces-instead-of-tabs" rel="bookmark">Vim Text Editor: Use Spaces Instead of Tabs</a>
	
		<a href="http://droptips.com/using-dig-to-query-a-specific-dns-server-name-server-directly-linux-bsd-osx" rel="bookmark">Using dig to Query a Specific DNS Server (Name Server) Directly (Linux, BSD, OSX)</a>
	
		<a href="http://droptips.com/finding-out-when-and-where-from-a-user-last-logged-into-a-linuxbsd-machine" rel="bookmark">Finding out when (and where from) a user last logged into a Linux/BSD machine</a>
	
	
]]></description>
			<content:encoded><![CDATA[<p><em>grep</em> is a great way to find phrases, words, and characters in text.  One of the biggest stumbling blocks is case &#8211; is the word &#8220;Hello&#8221;, &#8220;hello&#8221;, &#8220;HELLO&#8221;, or even &#8220;HeLLo&#8221;?  All of these are different, and a &#8220;grep &#8220;Hello&#8221;" would only find lines containing the first &#8220;Hello&#8221; example.</p>
<p>You can, however, exclude case from a grep to make it not case sensitive - simply add -i:</p>
<blockquote><p>grep -i &#8220;Hello&#8221; textfile.txt</p></blockquote>
<p>Alternatively, you could use it in conjunction with <em>cat </em>and <a href="http://droptips.com/reverse-cat-concatenate-a-text-file"><em>tac (</em>Reverse Cat)</a></p>
<blockquote><p>cat textfile.txt | grep -i &#8220;Hello&#8221;</p></blockquote>
<p>The above will find all lines containing &#8220;Hello&#8221; in textfile.txt, whether it&#8217;s &#8220;Hello&#8221;, &#8220;HELLO&#8221;, HElLO&#8221;, etc, making it much easier to find instances of &#8220;Hello&#8221; if you don&#8217;t really need to care about case.</p>
<p>&nbsp;</p>
<p><a href="http://en.wikipedia.org/wiki/Case_sensitivity" target="_blank">(Read the article on Wikipedia about Case Sensitivity..)</a></p>


<h3>Other posts which may be of interest..</h3>
		<a href="http://droptips.com/using-grep-to-exclude-lines-containing-certain-characterstext" rel="bookmark">Using grep to Exclude Lines Containing Certain Characters/Text</a>
	<br /><br />
		<a href="http://droptips.com/count-the-number-of-words-in-a-text-file-osx-linux-bsd" rel="bookmark">Count the Number of Words in a Text File (OSX, Linux, BSD)</a>
	<br /><br />
		<a href="http://droptips.com/vim-text-editor-use-spaces-instead-of-tabs" rel="bookmark">Vim Text Editor: Use Spaces Instead of Tabs</a>
	<br /><br />
		<a href="http://droptips.com/using-dig-to-query-a-specific-dns-server-name-server-directly-linux-bsd-osx" rel="bookmark">Using dig to Query a Specific DNS Server (Name Server) Directly (Linux, BSD, OSX)</a>
	<br /><br />
		<a href="http://droptips.com/finding-out-when-and-where-from-a-user-last-logged-into-a-linuxbsd-machine" rel="bookmark">Finding out when (and where from) a user last logged into a Linux/BSD machine</a>
	<br /><br />
	
<img src="http://feeds.feedburner.com/~r/droptips/~4/-u92E6r8L6k" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://droptips.com/using-grep-and-ignoring-case-case-insensitive-grep/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CIDR, Subnet Masks, and Usable IP Addresses Quick Reference Guide (Cheat Sheet)</title>
		<link>http://droptips.com/cidr-subnet-masks-and-usable-ip-addresses-quick-reference-guide-cheat-sheet</link>
		<comments>http://droptips.com/cidr-subnet-masks-and-usable-ip-addresses-quick-reference-guide-cheat-sheet#comments</comments>
		<pubDate>Fri, 26 Aug 2011 09:29:30 +0000</pubDate>
		<dc:creator>Daz</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[networking]]></category>

		<guid isPermaLink="false">http://droptips.com/?p=1120</guid>
		<description><![CDATA[A quick reference Subnet and CIDR guide. What&#8217;s a /28?  How many IPs do I get to use with a /26?  Well, see the table below! Usable IPs is the Total IPs minus the Network and Broadcast IPs. &#160; CIDR [...]

<h3>Other posts which may be of interest..</h3>
		<a href="http://droptips.com/quick-command-to-check-the-status-of-a-url-linux-bsd-os-x" rel="bookmark">Quick command to check the status of a URL (Linux, BSD, OS X)</a>
	
	
]]></description>
			<content:encoded><![CDATA[<p>A quick reference Subnet and CIDR guide.</p>
<p>What&#8217;s a /28?  How many IPs do I get to use with a /26?  Well, see the table below!<br />
Usable IPs is the Total IPs minus the Network and Broadcast IPs.</p>
<p>&nbsp;</p>
<table summary="CIDR Subnet Table" width="461" border="1" cellpadding="0">
<thead>
<tr>
<td>
<p align="center"><strong>CIDR</strong></p>
</td>
<td>
<p align="center"><strong>Subnet Mask</strong></p>
</td>
<td>
<p align="center"><strong>Total IPs</strong></p>
</td>
<td>
<p align="center"><strong>Usable IPs</strong></p>
</td>
</tr>
</thead>
<tbody>
<tr>
<td>/32</td>
<td>255.255.255.255</td>
<td>1</td>
<td>1</td>
</tr>
<tr>
<td>/31</td>
<td>255.255.255.254</td>
<td>2</td>
<td>0</td>
</tr>
<tr>
<td>/30</td>
<td>255.255.255.252</td>
<td>4</td>
<td>2</td>
</tr>
<tr>
<td>/29</td>
<td>255.255.255.248</td>
<td>8</td>
<td>6</td>
</tr>
<tr>
<td>/28</td>
<td>255.255.255.240</td>
<td>16</td>
<td>14</td>
</tr>
<tr>
<td>/27</td>
<td>255.255.255.224</td>
<td>32</td>
<td>30</td>
</tr>
<tr>
<td>/26</td>
<td>255.255.255.192</td>
<td>64</td>
<td>62</td>
</tr>
<tr>
<td>/25</td>
<td>255.255.255.128</td>
<td>128</td>
<td>126</td>
</tr>
<tr>
<td>/24</td>
<td>255.255.255.0</td>
<td>256</td>
<td>254</td>
</tr>
<tr>
<td>/23</td>
<td>255.255.254.0</td>
<td>512</td>
<td>510</td>
</tr>
<tr>
<td>/22</td>
<td>255.255.252.0</td>
<td>1024</td>
<td>1022</td>
</tr>
<tr>
<td>/21</td>
<td>255.255.248.0</td>
<td>2048</td>
<td>2046</td>
</tr>
<tr>
<td>/20</td>
<td>255.255.240.0</td>
<td>4096</td>
<td>4094</td>
</tr>
<tr>
<td>/19</td>
<td>255.255.224.0</td>
<td>8192</td>
<td>8190</td>
</tr>
<tr>
<td>/18</td>
<td>255.255.192.0</td>
<td>16,384</td>
<td>16,382</td>
</tr>
<tr>
<td>/17</td>
<td>255.255.128.0</td>
<td>32,768</td>
<td>32,766</td>
</tr>
<tr>
<td>/16</td>
<td>255.255.0.0</td>
<td>65,536</td>
<td>65,534</td>
</tr>
<tr>
<td>/15</td>
<td>255.254.0.0</td>
<td>131,072</td>
<td>131,070</td>
</tr>
<tr>
<td>/14</td>
<td>255.252.0.0</td>
<td>262,144</td>
<td>262,142</td>
</tr>
<tr>
<td>/13</td>
<td>255.248.0.0</td>
<td>524,288</td>
<td>524,286</td>
</tr>
<tr>
<td>/12</td>
<td>255.240.0.0</td>
<td>1,048,576</td>
<td>1,048,574</td>
</tr>
<tr>
<td>/11</td>
<td>255.224.0.0</td>
<td>2,097,152</td>
<td>2,097,150</td>
</tr>
<tr>
<td>/10</td>
<td>255.192.0.0</td>
<td>4,194,304</td>
<td>4,194,302</td>
</tr>
<tr>
<td>/9</td>
<td>255.128.0.0</td>
<td>8,388,608</td>
<td>8,388,606</td>
</tr>
<tr>
<td>/8</td>
<td>255.0.0.0</td>
<td>16,777,216</td>
<td>16,777,214</td>
</tr>
<tr>
<td>/7</td>
<td>254.0.0.0</td>
<td>33,554,432</td>
<td>33,554,430</td>
</tr>
<tr>
<td>/6</td>
<td>252.0.0.0</td>
<td>67,108,864</td>
<td>67,108,862</td>
</tr>
<tr>
<td>/5</td>
<td>248.0.0.0</td>
<td>134,217,728</td>
<td>134,217,726</td>
</tr>
<tr>
<td>/4</td>
<td>240.0.0.0</td>
<td>268,435,456</td>
<td>268,435,454</td>
</tr>
<tr>
<td>/3</td>
<td>224.0.0.0</td>
<td>536,870,912</td>
<td>536,870,910</td>
</tr>
<tr>
<td>/2</td>
<td>192.0.0.0</td>
<td>1,073,741,824</td>
<td>1,073,741,822</td>
</tr>
<tr>
<td>/1</td>
<td>128.0.0.0</td>
<td>2,147,483,648</td>
<td>2,147,483,646</td>
</tr>
<tr>
<td>/0</td>
<td>0.0.0.0</td>
<td>4,294,967,296</td>
<td>4,294,967,294</td>
</tr>
</tbody>
</table>
<p><span style="font-size: small;"><span class="Apple-style-span" style="line-height: normal;"><br />
</span></span></p>


<h3>Other posts which may be of interest..</h3>
		<a href="http://droptips.com/quick-command-to-check-the-status-of-a-url-linux-bsd-os-x" rel="bookmark">Quick command to check the status of a URL (Linux, BSD, OS X)</a>
	<br /><br />
	
<img src="http://feeds.feedburner.com/~r/droptips/~4/Q5A96l2tkfI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://droptips.com/cidr-subnet-masks-and-usable-ip-addresses-quick-reference-guide-cheat-sheet/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Using dig to Query a Specific DNS Server (Name Server) Directly (Linux, BSD, OSX)</title>
		<link>http://droptips.com/using-dig-to-query-a-specific-dns-server-name-server-directly-linux-bsd-osx</link>
		<comments>http://droptips.com/using-dig-to-query-a-specific-dns-server-name-server-directly-linux-bsd-osx#comments</comments>
		<pubDate>Fri, 12 Aug 2011 15:54:20 +0000</pubDate>
		<dc:creator>Daz</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[bsd]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[os x]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://droptips.com/?p=1100</guid>
		<description><![CDATA[There may be occasions when you wish to query a DNS server directly.  I often do it before changing DNS servers for a domain; I&#8217;ll setup the new records on the new DNS servers, and then query them directly to [...]

<h3>Other posts which may be of interest..</h3>
		<a href="http://droptips.com/ssh-client-saving-server-configuration-alias-port-username" rel="bookmark">SSH Client: Saving Server Configuration (Alias, Port, Username)</a>
	
		<a href="http://droptips.com/quick-command-to-check-the-status-of-a-url-linux-bsd-os-x" rel="bookmark">Quick command to check the status of a URL (Linux, BSD, OS X)</a>
	
		<a href="http://droptips.com/monitoring-the-status-of-multiple-linuxbsdosxunix-hosts" rel="bookmark">Monitoring the Status of Multiple Linux/BSD/OSX/Unix Hosts</a>
	
		<a href="http://droptips.com/taking-a-screenshot-in-linux-and-bsd" rel="bookmark">Taking a Screenshot in Linux and BSD</a>
	
		<a href="http://droptips.com/what-is-aero-glass-remoting-terminal-server-aero-glass-windows-server-2008-r2" rel="bookmark">What is Aero Glass Remoting?  Terminal Server Aero Glass? (Windows Server 2008 R2)</a>
	
	
]]></description>
			<content:encoded><![CDATA[<p>There may be occasions when you wish to query a DNS server directly.  I often do it before changing DNS servers for a domain; I&#8217;ll setup the new records on the new DNS servers, and then query them directly to ensure they are returning the correct records.</p>
<p>I recommend that anyone running DNS services for any domain looks into these commands &#8211; they&#8217;re very useful, especially when you&#8217;re making changes.</p>
<p>dig has a feature which allows you to specify a name server along with the record you want to query.</p>
<p>For example, one of the DNS servers for droptips.com is &#8220;ns.123-reg.co.uk&#8221;.  We can query this server directly, for the www record by doing the following:</p>
<blockquote>
<pre>$ dig droptips.com @ns.123-reg.co.uk</pre>
</blockquote>
<p>You&#8217;ll get some output with a section titled Answer Section:</p>
<blockquote>
<pre>;; ANSWER SECTION:
 droptips.com.       86400   IN      A       89.238.134.5</pre>
</blockquote>
<p>This details the result (89.238.134.5) and also the TTL for the record (in seconds).  The TTL is important, as this is how long caching DNS servers should cache the result for &#8211; in this case, 86400 seconds which is 1 day. Using this command to find out a TTL value for a particular record is also quite useful, especially if you&#8217;re investigating DNS cache issues.</p>
<p>You can also do the same to check other records such as MX records, by simpling adding the record type to the command.  For example, to get the MX records ns1.google.com is reporting for google.co.uk:</p>
<blockquote>
<pre>$ dig MX google.co.uk @ns1.google.com</pre>
</blockquote>
<p>&#8230; with the results:</p>
<blockquote>
<pre>;; ANSWER SECTION:
 google.co.uk.           10800   IN      MX      10 google.com.s9a2.psmtp.com.
 google.co.uk.           10800   IN      MX      10 google.com.s9b1.psmtp.com.
 google.co.uk.           10800   IN      MX      10 google.com.s9b2.psmtp.com.
 google.co.uk.           10800   IN      MX      10 google.com.s9a1.psmtp.com.</pre>
</blockquote>
<p>You can see in this instance, that the TTL is 10800 seconds which is 3 hours, and all MX records have the same priority level of 10.</p>


<h3>Other posts which may be of interest..</h3>
		<a href="http://droptips.com/ssh-client-saving-server-configuration-alias-port-username" rel="bookmark">SSH Client: Saving Server Configuration (Alias, Port, Username)</a>
	<br /><br />
		<a href="http://droptips.com/quick-command-to-check-the-status-of-a-url-linux-bsd-os-x" rel="bookmark">Quick command to check the status of a URL (Linux, BSD, OS X)</a>
	<br /><br />
		<a href="http://droptips.com/monitoring-the-status-of-multiple-linuxbsdosxunix-hosts" rel="bookmark">Monitoring the Status of Multiple Linux/BSD/OSX/Unix Hosts</a>
	<br /><br />
		<a href="http://droptips.com/taking-a-screenshot-in-linux-and-bsd" rel="bookmark">Taking a Screenshot in Linux and BSD</a>
	<br /><br />
		<a href="http://droptips.com/what-is-aero-glass-remoting-terminal-server-aero-glass-windows-server-2008-r2" rel="bookmark">What is Aero Glass Remoting?  Terminal Server Aero Glass? (Windows Server 2008 R2)</a>
	<br /><br />
	
<img src="http://feeds.feedburner.com/~r/droptips/~4/pAuNRvEv-Sw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://droptips.com/using-dig-to-query-a-specific-dns-server-name-server-directly-linux-bsd-osx/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone Data Usage:  My Average Monthly Data Usage</title>
		<link>http://droptips.com/iphone-data-usage-my-average-monthly-data-usage</link>
		<comments>http://droptips.com/iphone-data-usage-my-average-monthly-data-usage#comments</comments>
		<pubDate>Sun, 06 Jun 2010 10:10:40 +0000</pubDate>
		<dc:creator>Daz</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[mobile]]></category>

		<guid isPermaLink="false">http://droptips.com/?p=1060</guid>
		<description><![CDATA[Here in the UK, mobile operators include different amounts of data with the iPhone data tarrifs &#8211; some even offer unlimited (with fair use making them not unlimited at all).  Check the terms very closely, to know exactly how much [...]

<h3>Other posts which may be of interest..</h3>
		<a href="http://droptips.com/ssh-access-whilst-on-the-move-iphone-ipod-touch" rel="bookmark">SSH Access Whilst on the Move (iPhone, iPod Touch)</a>
	
		<a href="http://droptips.com/iphone-apps-not-launching-do-they-open-and-then-close-instantly" rel="bookmark">iPhone Apps Not Launching?  Do they Open and then Close Instantly?</a>
	
		<a href="http://droptips.com/how-to-install-telnet-in-windows-vista" rel="bookmark">How to install telnet in Windows Vista</a>
	
	
]]></description>
			<content:encoded><![CDATA[<p>Here in the UK, mobile operators include different amounts of data with the iPhone data tarrifs &#8211; some even offer unlimited (with fair use making them not unlimited at all).  Check the terms very closely, to know exactly how much data is included with your tariff on a monthly basis.</p>
<p>I bought an iPhone 3GS just under a year ago (20th June 2009) and my data usage in that time has been just 908MB, sent and received.  That&#8217;s not much.  I do use WiFi when at home, though.</p>
<p>I have an Exchange push account (with quite a bit of mail flow), random other push apps, I use the browser quite a bit when out and about, I use the maps, and I send a fair few e-mails, often including pictures etc.  I&#8217;d say my use is fairly typical.</p>
<p>My average data use (none-WiFi data) a month is 75MB.  So, even if you doubled the use, it&#8217;s still only 150MB.  You could say you use data on your iPhone five times as much as me, and it&#8217;s still only 375MB a month!</p>
<p>The allowances are often quite high (for a phone) &#8211; I&#8217;d be surprised if you hit the limit (at time of this post) offered by the mobile companies, certainly in the UK, unless you&#8217;re tethering it and using it as a modem, or constantly streaming video such as YouTube etc.</p>
<p>What&#8217;s your data usage?  Let me know in comments below!</p>
<div id="attachment_1084" class="wp-caption aligncenter" style="width: 330px"><a href="http://droptips.com/wp-content/assets/2010/06/iphone-data-use.jpg"><img class="size-full wp-image-1084" title="iPhone Data Usage" src="http://droptips.com/wp-content/assets/2010/06/iphone-data-use.jpg" alt="iPhone Data Usage" width="320" height="359" /></a><p class="wp-caption-text">iPhone Data Usage</p></div>


<h3>Other posts which may be of interest..</h3>
		<a href="http://droptips.com/ssh-access-whilst-on-the-move-iphone-ipod-touch" rel="bookmark">SSH Access Whilst on the Move (iPhone, iPod Touch)</a>
	<br /><br />
		<a href="http://droptips.com/iphone-apps-not-launching-do-they-open-and-then-close-instantly" rel="bookmark">iPhone Apps Not Launching?  Do they Open and then Close Instantly?</a>
	<br /><br />
		<a href="http://droptips.com/how-to-install-telnet-in-windows-vista" rel="bookmark">How to install telnet in Windows Vista</a>
	<br /><br />
	
<img src="http://feeds.feedburner.com/~r/droptips/~4/igp6m9Dyz2U" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://droptips.com/iphone-data-usage-my-average-monthly-data-usage/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>When Did You Last Reboot Your Microsoft Windows 7 Machine? (Check Uptime)</title>
		<link>http://droptips.com/when-did-you-last-reboot-your-microsoft-windows-7-machine-check-uptime</link>
		<comments>http://droptips.com/when-did-you-last-reboot-your-microsoft-windows-7-machine-check-uptime#comments</comments>
		<pubDate>Sat, 05 Jun 2010 12:50:34 +0000</pubDate>
		<dc:creator>Daz</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://droptips.com/?p=1047</guid>
		<description><![CDATA[Finding out when you last rebooted your Windows 7 machine can be completed using the &#8220;systeminfo&#8221; command. Open a Command Prompt by going to Start and opening &#8220;cmd&#8221;. You will then be presented with a command prompt window, where you [...]

<h3>Other posts which may be of interest..</h3>
		<a href="http://droptips.com/finding-the-uptime-of-windows-server-2008" rel="bookmark">Finding the Uptime of Windows Server 2008</a>
	
		<a href="http://droptips.com/checking-the-uptime-of-your-os-x-machine" rel="bookmark">Checking the Uptime of your OS X Machine</a>
	
		<a href="http://droptips.com/install-microsoft-powershell-in-windows-server-2008-quickly-from-the-command-prompt" rel="bookmark">Install Microsoft PowerShell in Windows Server 2008 Quickly from the Command Prompt</a>
	
		<a href="http://droptips.com/official-microsoft-windows-7-themes-wallpapers-and-gadgets" rel="bookmark">Official Microsoft Windows 7 Themes, Wallpapers, and Gadgets</a>
	
		<a href="http://droptips.com/quick-command-to-check-the-status-of-a-url-linux-bsd-os-x" rel="bookmark">Quick command to check the status of a URL (Linux, BSD, OS X)</a>
	
	
]]></description>
			<content:encoded><![CDATA[<p>Finding out when you last rebooted your Windows 7 machine can be completed using the &#8220;<em>systeminfo</em>&#8221; command.</p>
<p>Open a Command Prompt by going to Start and opening &#8220;<em>cmd&#8221;. </em>You will then be presented with a command prompt window, where you need to type the <em>systeminfo </em>command below:</p>
<pre>C:\&gt; systeminfo | find "System Boot Time"
System Boot Time:          05/06/2010, 12:55:07</pre>
<p>You will then be shown the date and time the server was booted (as seen in the example above).</p>
<p>You can just run “<em>systeminfo</em>” on it’s own (with no ‘<em>| find “System Boot Time”‘)</em>, and you will be presented with a lot of other information such as Hotfixes, Network Connections, etc.</p>


<h3>Other posts which may be of interest..</h3>
		<a href="http://droptips.com/finding-the-uptime-of-windows-server-2008" rel="bookmark">Finding the Uptime of Windows Server 2008</a>
	<br /><br />
		<a href="http://droptips.com/checking-the-uptime-of-your-os-x-machine" rel="bookmark">Checking the Uptime of your OS X Machine</a>
	<br /><br />
		<a href="http://droptips.com/install-microsoft-powershell-in-windows-server-2008-quickly-from-the-command-prompt" rel="bookmark">Install Microsoft PowerShell in Windows Server 2008 Quickly from the Command Prompt</a>
	<br /><br />
		<a href="http://droptips.com/official-microsoft-windows-7-themes-wallpapers-and-gadgets" rel="bookmark">Official Microsoft Windows 7 Themes, Wallpapers, and Gadgets</a>
	<br /><br />
		<a href="http://droptips.com/quick-command-to-check-the-status-of-a-url-linux-bsd-os-x" rel="bookmark">Quick command to check the status of a URL (Linux, BSD, OS X)</a>
	<br /><br />
	
<img src="http://feeds.feedburner.com/~r/droptips/~4/csG-UL5pBfE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://droptips.com/when-did-you-last-reboot-your-microsoft-windows-7-machine-check-uptime/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing the Telnet Client on Windows 2008 using a Command Prompt</title>
		<link>http://droptips.com/installing-the-telnet-client-on-windows-2008-using-a-command-prompt</link>
		<comments>http://droptips.com/installing-the-telnet-client-on-windows-2008-using-a-command-prompt#comments</comments>
		<pubDate>Wed, 02 Jun 2010 21:47:23 +0000</pubDate>
		<dc:creator>Daz</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://droptips.com/?p=1068</guid>
		<description><![CDATA[Like Windows 7 and Windows Vista, the Telnet client isn&#8217;t installed by default. In Windows Server 2008, you can install it via the Server Manager GUI tool, but it is often quicker to install it via a command prompt/terminal. So, [...]

<h3>Other posts which may be of interest..</h3>
		<a href="http://droptips.com/how-to-install-the-telnet-client-in-windows-7" rel="bookmark">How to Install the Telnet Client in Windows 7</a>
	
		<a href="http://droptips.com/install-microsoft-powershell-in-windows-server-2008-quickly-from-the-command-prompt" rel="bookmark">Install Microsoft PowerShell in Windows Server 2008 Quickly from the Command Prompt</a>
	
		<a href="http://droptips.com/viewing-previous-command-history-in-windows-command-prompt-cmd" rel="bookmark">Viewing Previous Command History in Windows Command Prompt (cmd)</a>
	
		<a href="http://droptips.com/how-to-install-telnet-in-windows-vista" rel="bookmark">How to install telnet in Windows Vista</a>
	
		<a href="http://droptips.com/no-e-mail-client-in-windows-7-wheres-windows-mail-or-outlook-express" rel="bookmark">No E-Mail Client in Windows 7? Where&#8217;s Windows Mail or Outlook Express?</a>
	
	
]]></description>
			<content:encoded><![CDATA[<p>Like Windows 7 and Windows Vista, the Telnet client isn&#8217;t installed by default.</p>
<p>In Windows Server 2008, you can install it via the Server Manager GUI tool, but it is often quicker to install it via a command prompt/terminal.</p>
<p>So, open a cmd.exe session and run the following:</p>
<pre style="padding-left: 30px;">servermanagercmd -install telnet-client</pre>
<p>And that&#8217;s it &#8211; once the command has completed, telnet.exe will be available from a command prompt.</p>


<h3>Other posts which may be of interest..</h3>
		<a href="http://droptips.com/how-to-install-the-telnet-client-in-windows-7" rel="bookmark">How to Install the Telnet Client in Windows 7</a>
	<br /><br />
		<a href="http://droptips.com/install-microsoft-powershell-in-windows-server-2008-quickly-from-the-command-prompt" rel="bookmark">Install Microsoft PowerShell in Windows Server 2008 Quickly from the Command Prompt</a>
	<br /><br />
		<a href="http://droptips.com/viewing-previous-command-history-in-windows-command-prompt-cmd" rel="bookmark">Viewing Previous Command History in Windows Command Prompt (cmd)</a>
	<br /><br />
		<a href="http://droptips.com/how-to-install-telnet-in-windows-vista" rel="bookmark">How to install telnet in Windows Vista</a>
	<br /><br />
		<a href="http://droptips.com/no-e-mail-client-in-windows-7-wheres-windows-mail-or-outlook-express" rel="bookmark">No E-Mail Client in Windows 7? Where&#8217;s Windows Mail or Outlook Express?</a>
	<br /><br />
	
<img src="http://feeds.feedburner.com/~r/droptips/~4/XrozbZUsjuw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://droptips.com/installing-the-telnet-client-on-windows-2008-using-a-command-prompt/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using grep to Exclude Lines Containing Certain Characters/Text</title>
		<link>http://droptips.com/using-grep-to-exclude-lines-containing-certain-characterstext</link>
		<comments>http://droptips.com/using-grep-to-exclude-lines-containing-certain-characterstext#comments</comments>
		<pubDate>Sun, 10 Jan 2010 04:37:43 +0000</pubDate>
		<dc:creator>Daz</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[bsd]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://droptips.com/?p=940</guid>
		<description><![CDATA[I like to watch Apache log files using tail -f but they often get filled up with data I don&#8217;t want/need to see &#8211; like, when I access the web site. grep is a great tool to search for certain [...]

<h3>Other posts which may be of interest..</h3>
		<a href="http://droptips.com/using-grep-and-ignoring-case-case-insensitive-grep" rel="bookmark">Using grep and Ignoring Case (Case Insensitive grep)</a>
	
		<a href="http://droptips.com/reverse-cat-concatenate-a-text-file" rel="bookmark">Reverse cat (concatenate) a Text File</a>
	
		<a href="http://droptips.com/count-the-number-of-words-in-a-text-file-osx-linux-bsd" rel="bookmark">Count the Number of Words in a Text File (OSX, Linux, BSD)</a>
	
		<a href="http://droptips.com/vim-text-editor-use-spaces-instead-of-tabs" rel="bookmark">Vim Text Editor: Use Spaces Instead of Tabs</a>
	
		<a href="http://droptips.com/vim-text-editor-guides-on-how-to-use-it" rel="bookmark">Vim Text Editor: Guides on how to use it</a>
	
	
]]></description>
			<content:encoded><![CDATA[<p>I like to watch Apache log files using <em>tail -f </em>but they often get filled up with data I don&#8217;t want/need to see &#8211; like, when I access the web site.</p>
<p><em>grep</em> is a great tool to search for certain information in text files &#8211; but it can also exclude certain pieces of information which can be equally as useful.</p>
<p>So, for example, if I want to watch a log file using <em>tail -f</em>, but exclude any information relating to the IP address &#8220;192.168.1.101&#8243; then we can use the grep -v switch:</p>
<pre>tail -f access.log | grep -v "192.168.1.101"</pre>
<p>What this will do is show everything, apart from a line with that IP address in.</p>
<p>Of course, this works with any other command with text being piped into grep:</p>
<pre>cat file.txt | grep -v "heh"</pre>
<p>This would output the contents of file.txt but remove any lines with &#8220;heh&#8221; in them.</p>
<p>You can find out more about the various <em>grep </em>options in it&#8217;s man page (<em>man grep </em>from the command line)</p>


<h3>Other posts which may be of interest..</h3>
		<a href="http://droptips.com/using-grep-and-ignoring-case-case-insensitive-grep" rel="bookmark">Using grep and Ignoring Case (Case Insensitive grep)</a>
	<br /><br />
		<a href="http://droptips.com/reverse-cat-concatenate-a-text-file" rel="bookmark">Reverse cat (concatenate) a Text File</a>
	<br /><br />
		<a href="http://droptips.com/count-the-number-of-words-in-a-text-file-osx-linux-bsd" rel="bookmark">Count the Number of Words in a Text File (OSX, Linux, BSD)</a>
	<br /><br />
		<a href="http://droptips.com/vim-text-editor-use-spaces-instead-of-tabs" rel="bookmark">Vim Text Editor: Use Spaces Instead of Tabs</a>
	<br /><br />
		<a href="http://droptips.com/vim-text-editor-guides-on-how-to-use-it" rel="bookmark">Vim Text Editor: Guides on how to use it</a>
	<br /><br />
	
<img src="http://feeds.feedburner.com/~r/droptips/~4/6KoO1CaBBsc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://droptips.com/using-grep-to-exclude-lines-containing-certain-characterstext/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is Aero Glass Remoting?  Terminal Server Aero Glass? (Windows Server 2008 R2)</title>
		<link>http://droptips.com/what-is-aero-glass-remoting-terminal-server-aero-glass-windows-server-2008-r2</link>
		<comments>http://droptips.com/what-is-aero-glass-remoting-terminal-server-aero-glass-windows-server-2008-r2#comments</comments>
		<pubDate>Sat, 09 Jan 2010 09:23:35 +0000</pubDate>
		<dc:creator>Daz</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://droptips.com/?p=926</guid>
		<description><![CDATA[What is Aero Glass Remoting? Can I use Aero Glass on a remote Terminal Services/Remote Desktop session? Well, with Windows Server 2008 R2, Yes you can! It&#8217;s basically replicating the user experience you get locally of Aero Glass, on remote sessions.  It [...]

<h3>Other posts which may be of interest..</h3>
		<a href="http://droptips.com/turn-off-ie-enhanced-security-in-windows-server-2008" rel="bookmark">How to Turn off IE Enhanced Security in Windows Server 2008</a>
	
		<a href="http://droptips.com/finding-the-uptime-of-windows-server-2008" rel="bookmark">Finding the Uptime of Windows Server 2008</a>
	
		<a href="http://droptips.com/install-microsoft-powershell-in-windows-server-2008-quickly-from-the-command-prompt" rel="bookmark">Install Microsoft PowerShell in Windows Server 2008 Quickly from the Command Prompt</a>
	
		<a href="http://droptips.com/installing-the-telnet-client-on-windows-2008-using-a-command-prompt" rel="bookmark">Installing the Telnet Client on Windows 2008 using a Command Prompt</a>
	
		<a href="http://droptips.com/using-dig-to-query-a-specific-dns-server-name-server-directly-linux-bsd-osx" rel="bookmark">Using dig to Query a Specific DNS Server (Name Server) Directly (Linux, BSD, OSX)</a>
	
	
]]></description>
			<content:encoded><![CDATA[<p>What is Aero Glass Remoting?</p>
<p>Can I use Aero Glass on a remote Terminal Services/Remote Desktop session?</p>
<p>Well, with Windows Server 2008 R2, Yes you can!</p>
<p>It&#8217;s basically replicating the user experience you get locally of Aero Glass, on remote sessions.  It may be useful for task switching etc. Check the guide out below:</p>
<p><a href="http://blogs.msdn.com/rds/archive/2009/06/23/aero-glass-remoting-in-windows-server-2008-r2.aspx" target="_blank">http://blogs.msdn.com/rds/archive/2009/06/23/aero-glass-remoting-in-windows-server-2008-r2.aspx</a></p>


<h3>Other posts which may be of interest..</h3>
		<a href="http://droptips.com/turn-off-ie-enhanced-security-in-windows-server-2008" rel="bookmark">How to Turn off IE Enhanced Security in Windows Server 2008</a>
	<br /><br />
		<a href="http://droptips.com/finding-the-uptime-of-windows-server-2008" rel="bookmark">Finding the Uptime of Windows Server 2008</a>
	<br /><br />
		<a href="http://droptips.com/install-microsoft-powershell-in-windows-server-2008-quickly-from-the-command-prompt" rel="bookmark">Install Microsoft PowerShell in Windows Server 2008 Quickly from the Command Prompt</a>
	<br /><br />
		<a href="http://droptips.com/installing-the-telnet-client-on-windows-2008-using-a-command-prompt" rel="bookmark">Installing the Telnet Client on Windows 2008 using a Command Prompt</a>
	<br /><br />
		<a href="http://droptips.com/using-dig-to-query-a-specific-dns-server-name-server-directly-linux-bsd-osx" rel="bookmark">Using dig to Query a Specific DNS Server (Name Server) Directly (Linux, BSD, OSX)</a>
	<br /><br />
	
<img src="http://feeds.feedburner.com/~r/droptips/~4/q9RgV-EoeW4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://droptips.com/what-is-aero-glass-remoting-terminal-server-aero-glass-windows-server-2008-r2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Checking the Uptime of your OS X Machine</title>
		<link>http://droptips.com/checking-the-uptime-of-your-os-x-machine</link>
		<comments>http://droptips.com/checking-the-uptime-of-your-os-x-machine#comments</comments>
		<pubDate>Fri, 08 Jan 2010 03:45:38 +0000</pubDate>
		<dc:creator>Daz</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[os x]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://droptips.com/?p=878</guid>
		<description><![CDATA[Uptime, uptime, uptime.  Everyone loves massive uptime, right? The &#8220;Who&#8217;s PC has been on the longest without a reboot?&#8221; sort of challenges. Well, finding out the uptime on an OS X machine is quite easy! If you open a Terminal [...]

<h3>Other posts which may be of interest..</h3>
		<a href="http://droptips.com/when-did-you-last-reboot-your-microsoft-windows-7-machine-check-uptime" rel="bookmark">When Did You Last Reboot Your Microsoft Windows 7 Machine? (Check Uptime)</a>
	
		<a href="http://droptips.com/change-the-default-spell-checking-language-in-mac-os-x" rel="bookmark">Change the Default Spell Checking Language in Mac OS X</a>
	
		<a href="http://droptips.com/finding-out-when-and-where-from-a-user-last-logged-into-a-linuxbsd-machine" rel="bookmark">Finding out when (and where from) a user last logged into a Linux/BSD machine</a>
	
		<a href="http://droptips.com/finding-the-uptime-of-windows-server-2008" rel="bookmark">Finding the Uptime of Windows Server 2008</a>
	
		<a href="http://droptips.com/monitoring-the-status-of-multiple-linuxbsdosxunix-hosts" rel="bookmark">Monitoring the Status of Multiple Linux/BSD/OSX/Unix Hosts</a>
	
	
]]></description>
			<content:encoded><![CDATA[<p>Uptime, uptime, uptime.  Everyone loves massive uptime, right?</p>
<p>The &#8220;Who&#8217;s PC has been on the longest without a reboot?&#8221; sort of challenges.</p>
<p>Well, finding out the uptime on an OS X machine is quite easy!</p>
<p>If you open a <em>Terminal </em>(by using <em>Spotlight</em>, then searching for <em>Terminal </em>or open <em>Applications/Utilities</em> and double click <em>Terminal</em>) and then type:</p>
<pre>uptime</pre>
<p>&#8230; so it looks something like this:</p>
<pre>user@mac:~$ uptime
23:46  up 11:55, 3 users, load averages: 0.17 0.21 0.23</pre>
<p>There is multiple parts of information from this command.  The part we&#8217;re focusing on is the second part:  &#8221;up  11:55&#8243;.  This means that the machine I&#8217;m currently on has been booted up for 11 hours and 55 minutes.</p>
<p>So, what&#8217;s your uptime?  How often do you manually restart your computer?  Let me know via comments below!</p>


<h3>Other posts which may be of interest..</h3>
		<a href="http://droptips.com/when-did-you-last-reboot-your-microsoft-windows-7-machine-check-uptime" rel="bookmark">When Did You Last Reboot Your Microsoft Windows 7 Machine? (Check Uptime)</a>
	<br /><br />
		<a href="http://droptips.com/change-the-default-spell-checking-language-in-mac-os-x" rel="bookmark">Change the Default Spell Checking Language in Mac OS X</a>
	<br /><br />
		<a href="http://droptips.com/finding-out-when-and-where-from-a-user-last-logged-into-a-linuxbsd-machine" rel="bookmark">Finding out when (and where from) a user last logged into a Linux/BSD machine</a>
	<br /><br />
		<a href="http://droptips.com/finding-the-uptime-of-windows-server-2008" rel="bookmark">Finding the Uptime of Windows Server 2008</a>
	<br /><br />
		<a href="http://droptips.com/monitoring-the-status-of-multiple-linuxbsdosxunix-hosts" rel="bookmark">Monitoring the Status of Multiple Linux/BSD/OSX/Unix Hosts</a>
	<br /><br />
	
<img src="http://feeds.feedburner.com/~r/droptips/~4/LPf06f-tU2I" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://droptips.com/checking-the-uptime-of-your-os-x-machine/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install Microsoft PowerShell in Windows Server 2008 Quickly from the Command Prompt</title>
		<link>http://droptips.com/install-microsoft-powershell-in-windows-server-2008-quickly-from-the-command-prompt</link>
		<comments>http://droptips.com/install-microsoft-powershell-in-windows-server-2008-quickly-from-the-command-prompt#comments</comments>
		<pubDate>Thu, 07 Jan 2010 20:15:28 +0000</pubDate>
		<dc:creator>Daz</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://droptips.com/?p=1041</guid>
		<description><![CDATA[Instead of going through the long-winded way of installing features using Server Manager, you can install PowerShell quickly in Windows Server 2008 from the command line using the following command: servermanagercmd -install powershell Why use the GUI when the command [...]

<h3>Other posts which may be of interest..</h3>
		<a href="http://droptips.com/installing-the-telnet-client-on-windows-2008-using-a-command-prompt" rel="bookmark">Installing the Telnet Client on Windows 2008 using a Command Prompt</a>
	
		<a href="http://droptips.com/turn-off-ie-enhanced-security-in-windows-server-2008" rel="bookmark">How to Turn off IE Enhanced Security in Windows Server 2008</a>
	
		<a href="http://droptips.com/viewing-previous-command-history-in-windows-command-prompt-cmd" rel="bookmark">Viewing Previous Command History in Windows Command Prompt (cmd)</a>
	
		<a href="http://droptips.com/what-is-aero-glass-remoting-terminal-server-aero-glass-windows-server-2008-r2" rel="bookmark">What is Aero Glass Remoting?  Terminal Server Aero Glass? (Windows Server 2008 R2)</a>
	
		<a href="http://droptips.com/finding-the-uptime-of-windows-server-2008" rel="bookmark">Finding the Uptime of Windows Server 2008</a>
	
	
]]></description>
			<content:encoded><![CDATA[<p>Instead of going through the long-winded way of installing features using Server Manager, you can install PowerShell quickly in Windows Server 2008 from the command line using the following command:</p>
<pre>servermanagercmd -install powershell</pre>
<p>Why use the GUI when the command line is much quicker?</p>


<h3>Other posts which may be of interest..</h3>
		<a href="http://droptips.com/installing-the-telnet-client-on-windows-2008-using-a-command-prompt" rel="bookmark">Installing the Telnet Client on Windows 2008 using a Command Prompt</a>
	<br /><br />
		<a href="http://droptips.com/turn-off-ie-enhanced-security-in-windows-server-2008" rel="bookmark">How to Turn off IE Enhanced Security in Windows Server 2008</a>
	<br /><br />
		<a href="http://droptips.com/viewing-previous-command-history-in-windows-command-prompt-cmd" rel="bookmark">Viewing Previous Command History in Windows Command Prompt (cmd)</a>
	<br /><br />
		<a href="http://droptips.com/what-is-aero-glass-remoting-terminal-server-aero-glass-windows-server-2008-r2" rel="bookmark">What is Aero Glass Remoting?  Terminal Server Aero Glass? (Windows Server 2008 R2)</a>
	<br /><br />
		<a href="http://droptips.com/finding-the-uptime-of-windows-server-2008" rel="bookmark">Finding the Uptime of Windows Server 2008</a>
	<br /><br />
	
<img src="http://feeds.feedburner.com/~r/droptips/~4/jaVqPpmCq8Y" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://droptips.com/install-microsoft-powershell-in-windows-server-2008-quickly-from-the-command-prompt/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ignore ALL DCC from anyone on IRC in irssi</title>
		<link>http://droptips.com/ignore-all-dcc-from-anyone-on-irc-in-irssi</link>
		<comments>http://droptips.com/ignore-all-dcc-from-anyone-on-irc-in-irssi#comments</comments>
		<pubDate>Thu, 07 Jan 2010 07:00:51 +0000</pubDate>
		<dc:creator>Daz</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[irc]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://droptips.com/?p=918</guid>
		<description><![CDATA[During the last few months, I&#8217;ve been waking up to mass floods of DCC SEND from bots/people trying to exploit random clients into accepting a file over IRC. I use irssi for connecting to IRC &#8211; it&#8217;s an extremely configurable [...]

<h3>Other posts which may be of interest..</h3>

No related posts were found, so here's a random post instead: <a href="http://droptips.com/turn-off-ie-enhanced-security-in-windows-server-2008" rel="bookmark">How to Turn off IE Enhanced Security in Windows Server 2008</a>.
]]></description>
			<content:encoded><![CDATA[<p>During the last few months, I&#8217;ve been waking up to mass floods of DCC SEND from bots/people trying to exploit random clients into accepting a file over IRC.</p>
<p>I use <a href="http://www.irssi.org" target="_blank">irssi</a> for connecting to IRC &#8211; it&#8217;s an extremely configurable text based client, so I wanted a way to just ignore these DCC requests &#8211; I&#8217;ve never, ever used DCC in the 11 years I&#8217;ve used IRC, and, well, I can&#8217;t see myself starting either&#8230; so I might as well just ignore them all.</p>
<p>To ignore all DCC commands from anyone (*!*@*), simply type:</p>
<pre style="padding-left: 30px;">/ignore * DCC</pre>
<p>And you should receive the message:</p>
<pre style="padding-left: 30px;">(11:24:00) Ignoring DCC from *</pre>
<p>What this will do is ignore any DCC from anyone &#8211; you just won&#8217;t see the request coming in, which makes for a much tidier status window/channel window when someone starts getting a bit silly on IRC!</p>
<p>You may find that this command works in other IRC clients too &#8211; it&#8217;s a pretty standard feature, but exact syntax may vary.</p>
<p>You can also have exceptions if you want certain nick and hostmasks to be able to still send DCC (from your trusted sources).  More information is available here: <a href="http://static.quadpoint.org/irssi-docs/help-full.html#IGNORE" target="_blank">http://static.quadpoint.org/irssi-docs/help-full.html#IGNORE</a></p>


<h3>Other posts which may be of interest..</h3>
<p>No related posts were found, so here's a random post instead: <a href="http://droptips.com/anti-spam-functionality-on-the-hub-transport-exchange" rel="bookmark">Anti-Spam Functionality on the Hub Transport (Exchange)</a>.</p>
<img src="http://feeds.feedburner.com/~r/droptips/~4/ERiYobnKrvU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://droptips.com/ignore-all-dcc-from-anyone-on-irc-in-irssi/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 7 Keyboard Shortcut:  Start an Application with Administrator Privileges</title>
		<link>http://droptips.com/windows-7-keyboard-shortcut-start-an-application-with-administrator-privileges</link>
		<comments>http://droptips.com/windows-7-keyboard-shortcut-start-an-application-with-administrator-privileges#comments</comments>
		<pubDate>Thu, 07 Jan 2010 02:00:34 +0000</pubDate>
		<dc:creator>Daz</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://droptips.com/?p=842</guid>
		<description><![CDATA[You&#8217;ll have noticed that Windows 7 is pretty strict with some applications on the tasks they can perform &#8211; I often find myself needing elevated privileges in a Command Prompt to edit the routing table for example. You can, of [...]

<h3>Other posts which may be of interest..</h3>
		<a href="http://droptips.com/windows-7-keyboard-shortcut-snap-current-window-to-left-or-right" rel="bookmark">Windows 7 Keyboard Shortcut:  Snap Current Window to Left or Right</a>
	
		<a href="http://droptips.com/how-do-you-show-desktop-in-windows-7" rel="bookmark">How do you &#8220;Show Desktop&#8221; in Windows 7?</a>
	
		<a href="http://droptips.com/no-e-mail-client-in-windows-7-wheres-windows-mail-or-outlook-express" rel="bookmark">No E-Mail Client in Windows 7? Where&#8217;s Windows Mail or Outlook Express?</a>
	
		<a href="http://droptips.com/taking-a-screenshot-in-osx" rel="bookmark">Taking a Screenshot in OSX</a>
	
		<a href="http://droptips.com/how-to-create-a-windows-7-system-repair-disc" rel="bookmark">How to Create a Windows 7 System Repair Disc</a>
	
	
]]></description>
			<content:encoded><![CDATA[<p>You&#8217;ll have noticed that Windows 7 is pretty strict with some applications on the tasks they can perform &#8211; I often find myself needing elevated privileges in a Command Prompt to edit the routing table for example.</p>
<p>You can, of course, right click on the application from the start menu and run as Administrator, but there&#8217;s also a keyboard shortcut:</p>
<pre style="padding-left: 30px;">Ctrl + Shift + (Click Mouse)</pre>
<p>If you hold down the control key, the shift key and then click the application, it&#8217;ll run it with administrator privileges &#8211; you&#8217;ll probably get a prompt from User Account Control, letting you know what&#8217;s happening.  This works from both the start menu, the taskbar, and any icon.</p>


<h3>Other posts which may be of interest..</h3>
		<a href="http://droptips.com/windows-7-keyboard-shortcut-snap-current-window-to-left-or-right" rel="bookmark">Windows 7 Keyboard Shortcut:  Snap Current Window to Left or Right</a>
	<br /><br />
		<a href="http://droptips.com/how-do-you-show-desktop-in-windows-7" rel="bookmark">How do you &#8220;Show Desktop&#8221; in Windows 7?</a>
	<br /><br />
		<a href="http://droptips.com/no-e-mail-client-in-windows-7-wheres-windows-mail-or-outlook-express" rel="bookmark">No E-Mail Client in Windows 7? Where&#8217;s Windows Mail or Outlook Express?</a>
	<br /><br />
		<a href="http://droptips.com/taking-a-screenshot-in-osx" rel="bookmark">Taking a Screenshot in OSX</a>
	<br /><br />
		<a href="http://droptips.com/how-to-create-a-windows-7-system-repair-disc" rel="bookmark">How to Create a Windows 7 System Repair Disc</a>
	<br /><br />
	
<img src="http://feeds.feedburner.com/~r/droptips/~4/IkGrKJrG_aE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://droptips.com/windows-7-keyboard-shortcut-start-an-application-with-administrator-privileges/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Viewing Previous Command History in Windows Command Prompt (cmd)</title>
		<link>http://droptips.com/viewing-previous-command-history-in-windows-command-prompt-cmd</link>
		<comments>http://droptips.com/viewing-previous-command-history-in-windows-command-prompt-cmd#comments</comments>
		<pubDate>Wed, 06 Jan 2010 08:05:41 +0000</pubDate>
		<dc:creator>Daz</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://droptips.com/?p=1028</guid>
		<description><![CDATA[We all use the Windows Command Prompt, but there are quite a few very useful features you may not know about &#8211; one being command history viewing. To access the command history of your current session, press &#8220;F7&#8243; and you&#8217;ll [...]

<h3>Other posts which may be of interest..</h3>
		<a href="http://droptips.com/installing-the-telnet-client-on-windows-2008-using-a-command-prompt" rel="bookmark">Installing the Telnet Client on Windows 2008 using a Command Prompt</a>
	
		<a href="http://droptips.com/install-microsoft-powershell-in-windows-server-2008-quickly-from-the-command-prompt" rel="bookmark">Install Microsoft PowerShell in Windows Server 2008 Quickly from the Command Prompt</a>
	
		<a href="http://droptips.com/viewing-another-users-crontab-entries-in-ubuntu-debian-or-centos" rel="bookmark">Viewing Another Users&#8217; Crontab Entries in Ubuntu, Debian or CentOS</a>
	
		<a href="http://droptips.com/mounting-a-windows-smb-share-from-the-os-x-command-line" rel="bookmark">Mounting a Windows (SMB) Share from the OS X Command Line</a>
	
		<a href="http://droptips.com/kill-a-gnu-screen-session-from-the-command-line" rel="bookmark">Kill a GNU Screen Session from the Command Line</a>
	
	
]]></description>
			<content:encoded><![CDATA[<p>We all use the Windows Command Prompt, but there are quite a few very useful features you may not know about &#8211; one being command history viewing.</p>
<p>To access the command history of your current session, press &#8220;F7&#8243; and you&#8217;ll be presented with a prompt containing the last commands you&#8217;ve executed.</p>
<p style="text-align: center;"><a style="text-decoration: none;" href="http://droptips.com/wp-content/assets/2010/01/previous-command-history-windows-cmd.png" target="_blank"><img class="size-full wp-image-1030 aligncenter" title="previous-command-history-windows-cmd" src="http://droptips.com/wp-content/assets/2010/01/previous-command-history-windows-cmd.png" alt="Previous Command History in Windows Command Prompt (F7)" width="542" height="274" /></a></p>
<p style="text-align: left;">
<p style="text-align: left;">Please note that it only shows you the command history from the current session.</p>


<h3>Other posts which may be of interest..</h3>
		<a href="http://droptips.com/installing-the-telnet-client-on-windows-2008-using-a-command-prompt" rel="bookmark">Installing the Telnet Client on Windows 2008 using a Command Prompt</a>
	<br /><br />
		<a href="http://droptips.com/install-microsoft-powershell-in-windows-server-2008-quickly-from-the-command-prompt" rel="bookmark">Install Microsoft PowerShell in Windows Server 2008 Quickly from the Command Prompt</a>
	<br /><br />
		<a href="http://droptips.com/viewing-another-users-crontab-entries-in-ubuntu-debian-or-centos" rel="bookmark">Viewing Another Users&#8217; Crontab Entries in Ubuntu, Debian or CentOS</a>
	<br /><br />
		<a href="http://droptips.com/mounting-a-windows-smb-share-from-the-os-x-command-line" rel="bookmark">Mounting a Windows (SMB) Share from the OS X Command Line</a>
	<br /><br />
		<a href="http://droptips.com/kill-a-gnu-screen-session-from-the-command-line" rel="bookmark">Kill a GNU Screen Session from the Command Line</a>
	<br /><br />
	
<img src="http://feeds.feedburner.com/~r/droptips/~4/SgEEzmxuWWs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://droptips.com/viewing-previous-command-history-in-windows-command-prompt-cmd/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Create a Windows 7 System Repair Disc</title>
		<link>http://droptips.com/how-to-create-a-windows-7-system-repair-disc</link>
		<comments>http://droptips.com/how-to-create-a-windows-7-system-repair-disc#comments</comments>
		<pubDate>Tue, 05 Jan 2010 19:00:46 +0000</pubDate>
		<dc:creator>Daz</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://droptips.com/?p=1023</guid>
		<description><![CDATA[Windows 7 has restored the &#8220;System Repair Disc&#8221; option so it&#8217;s easy to create. If you go to Start and search for &#8220;System Repair Disc&#8220;, it should find &#8220;Create a System Repair Disc&#8221;. If you open the application, you&#8217;ll get [...]

<h3>Other posts which may be of interest..</h3>
		<a href="http://droptips.com/how-to-install-the-telnet-client-in-windows-7" rel="bookmark">How to Install the Telnet Client in Windows 7</a>
	
		<a href="http://droptips.com/how-to-install-telnet-in-windows-vista" rel="bookmark">How to install telnet in Windows Vista</a>
	
		<a href="http://droptips.com/burningwriting-an-iso-image-under-windows-7" rel="bookmark">Burning/Writing an ISO Image Under Windows 7</a>
	
		<a href="http://droptips.com/mount-an-iso-image-under-windows-7" rel="bookmark">Mount an ISO Image Under Windows 7</a>
	
		<a href="http://droptips.com/mount-an-iso-image-under-windows-982000xpvista" rel="bookmark">Mount an ISO Image Under Windows 98/2000/XP/Vista</a>
	
	
]]></description>
			<content:encoded><![CDATA[<p>Windows 7 has restored the &#8220;System Repair Disc&#8221; option so it&#8217;s easy to create.</p>
<p>If you go to Start and search for &#8220;<em>System Repair Disc</em>&#8220;, it should find &#8220;Create a System Repair Disc&#8221;.</p>
<p>If you open the application, you&#8217;ll get a prompt box to burn the image to CD/DVD.  Choose your CD/DVD burner and click &#8220;<em>Create disc</em>&#8221;</p>
<p>If you do have any problems with your Windows 7 installation, booting from this disc allows you to perform a whole range of  features such as:</p>
<ul>
<li>Startup Repair</li>
<li>System Restore</li>
<li>System Image Recovery</li>
<li>Windows Memory Diagnostics</li>
<li>Command Prompt</li>
</ul>
<p>So, for the cost of a single disc, you can have another option to help repair any future problems you may encounter.  Create one now!</p>


<h3>Other posts which may be of interest..</h3>
		<a href="http://droptips.com/how-to-install-the-telnet-client-in-windows-7" rel="bookmark">How to Install the Telnet Client in Windows 7</a>
	<br /><br />
		<a href="http://droptips.com/how-to-install-telnet-in-windows-vista" rel="bookmark">How to install telnet in Windows Vista</a>
	<br /><br />
		<a href="http://droptips.com/burningwriting-an-iso-image-under-windows-7" rel="bookmark">Burning/Writing an ISO Image Under Windows 7</a>
	<br /><br />
		<a href="http://droptips.com/mount-an-iso-image-under-windows-7" rel="bookmark">Mount an ISO Image Under Windows 7</a>
	<br /><br />
		<a href="http://droptips.com/mount-an-iso-image-under-windows-982000xpvista" rel="bookmark">Mount an ISO Image Under Windows 98/2000/XP/Vista</a>
	<br /><br />
	
<img src="http://feeds.feedburner.com/~r/droptips/~4/J8QXflYUgiI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://droptips.com/how-to-create-a-windows-7-system-repair-disc/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finding the Uptime of Windows Server 2008</title>
		<link>http://droptips.com/finding-the-uptime-of-windows-server-2008</link>
		<comments>http://droptips.com/finding-the-uptime-of-windows-server-2008#comments</comments>
		<pubDate>Tue, 05 Jan 2010 07:00:40 +0000</pubDate>
		<dc:creator>Daz</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://droptips.com/?p=907</guid>
		<description><![CDATA[So, you want to see the date and time a Windows Server 2008 box last booted up. From a command prompt run: C:\&#62; systeminfo &#124; find "System Boot Time" System Boot Time:          17/12/2009, 23:09:04 You will [...]

<h3>Other posts which may be of interest..</h3>
		<a href="http://droptips.com/when-did-you-last-reboot-your-microsoft-windows-7-machine-check-uptime" rel="bookmark">When Did You Last Reboot Your Microsoft Windows 7 Machine? (Check Uptime)</a>
	
		<a href="http://droptips.com/turn-off-ie-enhanced-security-in-windows-server-2008" rel="bookmark">How to Turn off IE Enhanced Security in Windows Server 2008</a>
	
		<a href="http://droptips.com/what-is-aero-glass-remoting-terminal-server-aero-glass-windows-server-2008-r2" rel="bookmark">What is Aero Glass Remoting?  Terminal Server Aero Glass? (Windows Server 2008 R2)</a>
	
		<a href="http://droptips.com/install-microsoft-powershell-in-windows-server-2008-quickly-from-the-command-prompt" rel="bookmark">Install Microsoft PowerShell in Windows Server 2008 Quickly from the Command Prompt</a>
	
		<a href="http://droptips.com/installing-the-telnet-client-on-windows-2008-using-a-command-prompt" rel="bookmark">Installing the Telnet Client on Windows 2008 using a Command Prompt</a>
	
	
]]></description>
			<content:encoded><![CDATA[<p>So, you want to see the date and time a Windows Server 2008 box last booted up.  From a command prompt run:</p>
<pre>C:\&gt; systeminfo | find "System Boot Time"
System Boot Time:          17/12/2009, 23:09:04</pre>
<p>You will then be shown the date and time the server was booted (as seen in the example above).</p>
<p>You can just run &#8220;<em>systeminfo</em>&#8221; on it&#8217;s own (with no &#8216;<em>| find &#8220;System Boot Time&#8221;&#8216;)</em>, and you will be presented with a lot of other information such as Hotfixes, Network Connections, etc.</p>


<h3>Other posts which may be of interest..</h3>
		<a href="http://droptips.com/when-did-you-last-reboot-your-microsoft-windows-7-machine-check-uptime" rel="bookmark">When Did You Last Reboot Your Microsoft Windows 7 Machine? (Check Uptime)</a>
	<br /><br />
		<a href="http://droptips.com/turn-off-ie-enhanced-security-in-windows-server-2008" rel="bookmark">How to Turn off IE Enhanced Security in Windows Server 2008</a>
	<br /><br />
		<a href="http://droptips.com/what-is-aero-glass-remoting-terminal-server-aero-glass-windows-server-2008-r2" rel="bookmark">What is Aero Glass Remoting?  Terminal Server Aero Glass? (Windows Server 2008 R2)</a>
	<br /><br />
		<a href="http://droptips.com/install-microsoft-powershell-in-windows-server-2008-quickly-from-the-command-prompt" rel="bookmark">Install Microsoft PowerShell in Windows Server 2008 Quickly from the Command Prompt</a>
	<br /><br />
		<a href="http://droptips.com/installing-the-telnet-client-on-windows-2008-using-a-command-prompt" rel="bookmark">Installing the Telnet Client on Windows 2008 using a Command Prompt</a>
	<br /><br />
	
<img src="http://feeds.feedburner.com/~r/droptips/~4/o1uXQsGE6ns" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://droptips.com/finding-the-uptime-of-windows-server-2008/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kill a GNU Screen Session from the Command Line</title>
		<link>http://droptips.com/kill-a-gnu-screen-session-from-the-command-line</link>
		<comments>http://droptips.com/kill-a-gnu-screen-session-from-the-command-line#comments</comments>
		<pubDate>Mon, 04 Jan 2010 17:48:55 +0000</pubDate>
		<dc:creator>Daz</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[bsd]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://droptips.com/?p=986</guid>
		<description><![CDATA[This article is about GNU Screen &#8211; you can read about GNU Screen here: http://www.gnu.org/software/screen/ There may be times when you have multiple, or even a single, screen session which you want to kill without attaching to it and ending it [...]

<h3>Other posts which may be of interest..</h3>
		<a href="http://droptips.com/wuff-wuff-from-mac-os-x-to-a-screen-session-on-linux" rel="bookmark">Wuff &#8212;- Wuff!! from Mac OS X to a Screen Session on Linux</a>
	
		<a href="http://droptips.com/mounting-a-windows-smb-share-from-the-os-x-command-line" rel="bookmark">Mounting a Windows (SMB) Share from the OS X Command Line</a>
	
		<a href="http://droptips.com/reading-stdin-to-php-from-the-command-line-cli" rel="bookmark">Reading STDIN to PHP from the Command Line (CLI)</a>
	
		<a href="http://droptips.com/access-your-os-x-clipboard-from-the-command-line" rel="bookmark">Access Your OS X Clipboard from the Command Line</a>
	
		<a href="http://droptips.com/viewing-previous-command-history-in-windows-command-prompt-cmd" rel="bookmark">Viewing Previous Command History in Windows Command Prompt (cmd)</a>
	
	
]]></description>
			<content:encoded><![CDATA[<p>This article is about GNU Screen &#8211; you can read about GNU Screen here: <a href="http://www.gnu.org/software/screen/" target="_blank">http://www.gnu.org/software/screen/</a></p>
<p>There may be times when you have multiple, or even a single, <em>screen</em> session which you want to kill without attaching to it and ending it as you normally would.</p>
<p>You can kill a <em>screen </em>session using the session ID or the name (if the name is unique enough).</p>
<p><strong>Warning: </strong>Both ways end all processes within the <em>screen</em> session, so if you have any open files/applications, make sure you don&#8217;t need/want them &#8211; they&#8217;ll be kill&#8217;d along with the session.</p>
<p><strong>Killing by session ID</strong></p>
<p>First, run<em> screen -list</em> to get the id of the current sessions (we use the id to kill the <em>screen</em> session)</p>
<pre>daz@scampi:~$ screen -list
There are screens on:
11493.irssi     (04/01/10 16:25:44)     (Detached)
30784.newapps   (01/01/10 19:42:38)     (Detached)</pre>
<p>As you can see in this example, I have two sessions, a session called &#8220;irssi&#8221; with id 11493, and a session called &#8220;newapps&#8221;, with an id of 30784.</p>
<p>So, to kill the &#8220;newapps&#8221; session, I&#8217;d run:</p>
<pre>daz@scampi:~$ screen -X -S 30784 kill
daz@scampi:~$</pre>
<p>.. and the session will now be gone.  You can verify that by running <em>screen -list </em>again.</p>
<p><strong>Killing by session name</strong></p>
<p>If your screen session name is unique enough (for example, if you have one called &#8220;newapps&#8221; and another called &#8220;irssi&#8221; as per my example) you can kill by name:</p>
<pre>daz@scampi:~$ screen -X -S newapps kill
daz@scampi:~$</pre>
<p>The reason I say unique enough &#8211;  if you have a session called &#8220;newapps&#8221; and one called &#8220;newapps1&#8243;, you will need to use the ID to end &#8220;newapps&#8221; before &#8220;newapps1&#8243; &#8211; you&#8217;ll simply be asked to specify the session again otherwise.</p>


<h3>Other posts which may be of interest..</h3>
		<a href="http://droptips.com/wuff-wuff-from-mac-os-x-to-a-screen-session-on-linux" rel="bookmark">Wuff &#8212;- Wuff!! from Mac OS X to a Screen Session on Linux</a>
	<br /><br />
		<a href="http://droptips.com/mounting-a-windows-smb-share-from-the-os-x-command-line" rel="bookmark">Mounting a Windows (SMB) Share from the OS X Command Line</a>
	<br /><br />
		<a href="http://droptips.com/reading-stdin-to-php-from-the-command-line-cli" rel="bookmark">Reading STDIN to PHP from the Command Line (CLI)</a>
	<br /><br />
		<a href="http://droptips.com/access-your-os-x-clipboard-from-the-command-line" rel="bookmark">Access Your OS X Clipboard from the Command Line</a>
	<br /><br />
		<a href="http://droptips.com/viewing-previous-command-history-in-windows-command-prompt-cmd" rel="bookmark">Viewing Previous Command History in Windows Command Prompt (cmd)</a>
	<br /><br />
	
<img src="http://feeds.feedburner.com/~r/droptips/~4/VStTKp9x0qw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://droptips.com/kill-a-gnu-screen-session-from-the-command-line/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to Stop .DS_Store From Being Created on Network Drives (OS X)</title>
		<link>http://droptips.com/how-to-stop-.ds_store-from-being-created-on-network-drives-os-x</link>
		<comments>http://droptips.com/how-to-stop-.ds_store-from-being-created-on-network-drives-os-x#comments</comments>
		<pubDate>Mon, 04 Jan 2010 04:36:12 +0000</pubDate>
		<dc:creator>Daz</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[os x]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://droptips.com/?p=874</guid>
		<description><![CDATA[.DS_Store files can make even the tidiest network shares look horrible to none-OS X users. Whenever an OS X machine accesses a network share, it creates a .DS_Store file for it&#8217;s own use (on SMB/CIFS, AFP, NFS, and WebDAV servers). [...]

<h3>Other posts which may be of interest..</h3>
		<a href="http://droptips.com/changing-the-default-format-screenshots-are-saved-as-os-x" rel="bookmark">Changing the Default Format Screenshots are Saved As (OS X)</a>
	
		<a href="http://droptips.com/changing-the-default-location-for-screenshots-in-os-x" rel="bookmark">Changing the Default Location for Screenshots in OS X</a>
	
		<a href="http://droptips.com/enable-and-disable-the-os-x-dashboard-completely" rel="bookmark">Enable and Disable the OS X Dashboard Completely</a>
	
		<a href="http://droptips.com/command-help-using-manual-pages-man-os-x-linux-bsd" rel="bookmark">Command Help using Manual Pages (man) (OS X, Linux, BSD)</a>
	
	
]]></description>
			<content:encoded><![CDATA[<p>.DS_Store files can make even the tidiest network shares look horrible to none-OS X users.</p>
<p>Whenever an OS X machine accesses a network share, it creates a .DS_Store file for it&#8217;s own use (on SMB/CIFS, AFP, NFS, and WebDAV servers).  These files are invisible to the OS X user, but will show up to anyone else using other operating systems such as Windows or a Linux distribution.</p>
<p>Turning them off is easy though, by running the following command:</p>
<pre>defaults write com.apple.desktopservices DSDontWriteNetworkStores true</pre>
<p>You will need to either log off or restart the computer for the changes to take affect.</p>
<p>For more information, please see the official knowledge base article here:  <a href="http://support.apple.com/kb/HT1629" target="_blank">http://support.apple.com/kb/HT1629</a></p>


<h3>Other posts which may be of interest..</h3>
		<a href="http://droptips.com/changing-the-default-format-screenshots-are-saved-as-os-x" rel="bookmark">Changing the Default Format Screenshots are Saved As (OS X)</a>
	<br /><br />
		<a href="http://droptips.com/changing-the-default-location-for-screenshots-in-os-x" rel="bookmark">Changing the Default Location for Screenshots in OS X</a>
	<br /><br />
		<a href="http://droptips.com/enable-and-disable-the-os-x-dashboard-completely" rel="bookmark">Enable and Disable the OS X Dashboard Completely</a>
	<br /><br />
		<a href="http://droptips.com/command-help-using-manual-pages-man-os-x-linux-bsd" rel="bookmark">Command Help using Manual Pages (man) (OS X, Linux, BSD)</a>
	<br /><br />
	
<img src="http://feeds.feedburner.com/~r/droptips/~4/Adb0U16Fv4Q" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://droptips.com/how-to-stop-.ds_store-from-being-created-on-network-drives-os-x/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Removing packages only installed as dependancies and no longer needed (Ubuntu, Debian)</title>
		<link>http://droptips.com/removing-packages-only-installed-as-dependancies-and-no-longer-needed-ubuntu-debian</link>
		<comments>http://droptips.com/removing-packages-only-installed-as-dependancies-and-no-longer-needed-ubuntu-debian#comments</comments>
		<pubDate>Sun, 03 Jan 2010 20:00:15 +0000</pubDate>
		<dc:creator>Daz</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://droptips.com/?p=531</guid>
		<description><![CDATA[We&#8217;ve all installed packages, using apt-get, where it&#8217;s installed a lot of other packages to satisfy dependancies. But what if you remove that package at a later date that needed all of those dependancies?  You&#8217;ll probably find it&#8217;s left the [...]

<h3>Other posts which may be of interest..</h3>
		<a href="http://droptips.com/viewing-another-users-crontab-entries-in-ubuntu-debian-or-centos" rel="bookmark">Viewing Another Users&#8217; Crontab Entries in Ubuntu, Debian or CentOS</a>
	
		<a href="http://droptips.com/removing-system-icons-clock-etc-from-the-windows-7-taskbar" rel="bookmark">Removing System Icons (Clock, etc) from the Windows 7 Taskbar</a>
	
	
]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve all installed packages, using <em>apt-get,</em> where it&#8217;s installed a lot of other packages to satisfy dependancies.</p>
<p>But what if you remove that package at a later date that needed all of those dependancies?  You&#8217;ll probably find it&#8217;s left the dependancies installed.. and if you&#8217;ve not installed any other packages which also need those dependacies, they&#8217;re just taking up hard drive space.</p>
<p>It&#8217;s easy to remove them, though &#8211; after all, you no longer need them so why keep them?</p>
<p>The command is simple (and needs to be run as root):</p>
<pre>apt-get autoremove</pre>
<p>&#8230; and that&#8217;s it.  The man page entry for this command:</p>
<p><em>&#8220;autoremove is used to remove packages that were automatically installed  to satisfy dependencies for some package and that are no more needed.&#8221;</em></p>
<p>So the next time you install a package which needs lots of dependancies, and you decide you want to remove it for whatever reason, remember to run <em>apt-get autoremove</em> afterwards!</p>
<p><strong>Warning: You do need to be careful when running this &#8211; always check which packages it&#8217;s proposing to uninstall before confirming.  I have seen reports of random packages being removed, breaking the entire system &#8211; even though it is an officially supported feature of <em>apt-get</em>, and it can be very useful, use it with caution.</strong></p>


<h3>Other posts which may be of interest..</h3>
		<a href="http://droptips.com/viewing-another-users-crontab-entries-in-ubuntu-debian-or-centos" rel="bookmark">Viewing Another Users&#8217; Crontab Entries in Ubuntu, Debian or CentOS</a>
	<br /><br />
		<a href="http://droptips.com/removing-system-icons-clock-etc-from-the-windows-7-taskbar" rel="bookmark">Removing System Icons (Clock, etc) from the Windows 7 Taskbar</a>
	<br /><br />
	
<img src="http://feeds.feedburner.com/~r/droptips/~4/tKOmCl9gtKM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://droptips.com/removing-packages-only-installed-as-dependancies-and-no-longer-needed-ubuntu-debian/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 7 Experience Index Performance on the Atom-powered, Asus 1005HA Netbook</title>
		<link>http://droptips.com/windows-7-experience-index-performance-on-the-atom-powered-asus-1005ha-netbook</link>
		<comments>http://droptips.com/windows-7-experience-index-performance-on-the-atom-powered-asus-1005ha-netbook#comments</comments>
		<pubDate>Sun, 03 Jan 2010 10:00:09 +0000</pubDate>
		<dc:creator>Daz</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[netbook]]></category>
		<category><![CDATA[reviews]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://droptips.com/?p=858</guid>
		<description><![CDATA[The question of &#8220;How does Windows 7 run on &#8230;&#8230;&#8230;&#8230;.&#8221; is often asked. I&#8217;ve been running an Asus Seashell 1005HA (6-Cell Battery, 63Wh) with Windows 7 for some time now, and use it as my main machine 90% of the [...]

<h3>Other posts which may be of interest..</h3>
		<a href="http://droptips.com/no-e-mail-client-in-windows-7-wheres-windows-mail-or-outlook-express" rel="bookmark">No E-Mail Client in Windows 7? Where&#8217;s Windows Mail or Outlook Express?</a>
	
		<a href="http://droptips.com/mount-an-iso-image-under-windows-982000xpvista" rel="bookmark">Mount an ISO Image Under Windows 98/2000/XP/Vista</a>
	
		<a href="http://droptips.com/clearingflushing-your-local-dns-cache-windows-osx" rel="bookmark">Clearing/Flushing Your Local DNS Cache (Windows, OSX)</a>
	
		<a href="http://droptips.com/how-do-you-show-desktop-in-windows-7" rel="bookmark">How do you &#8220;Show Desktop&#8221; in Windows 7?</a>
	
		<a href="http://droptips.com/how-to-install-the-telnet-client-in-windows-7" rel="bookmark">How to Install the Telnet Client in Windows 7</a>
	
	
]]></description>
			<content:encoded><![CDATA[<p>The question of &#8220;How does Windows 7 run on &#8230;&#8230;&#8230;&#8230;.&#8221; is often asked.</p>
<p>I&#8217;ve been running an Asus Seashell 1005HA (6-Cell Battery, 63Wh) with Windows 7 for some time now, and use it as my main machine 90% of the time.</p>
<p><em>Just as a side note, the only thing I have done is upgraded the RAM to 2GB (from the standard 1GB) by adding a single 1GB SO-DIMM to the Netbook.  For the cost and how easy it was, it was well worth the upgrade!</em></p>
<p>The Windows 7 Experience Index is often a good guide to see how a machine will perform (processor, memory (RAM), graphics, hard disk) &#8211; the results for this Netbook are below:</p>
<p><a style="text-decoration: none;" href="http://droptips.com/wp-content/assets/2009/12/windows-7-performance-asus-1005ha-netbook.png"><img class="aligncenter size-full wp-image-860" title="windows-7-performance-asus-1005ha-netbook" src="http://droptips.com/wp-content/assets/2009/12/windows-7-performance-asus-1005ha-netbook.png" alt="windows-7-performance-asus-1005ha-netbook" width="583" height="195" /></a></p>


<h3>Other posts which may be of interest..</h3>
		<a href="http://droptips.com/no-e-mail-client-in-windows-7-wheres-windows-mail-or-outlook-express" rel="bookmark">No E-Mail Client in Windows 7? Where&#8217;s Windows Mail or Outlook Express?</a>
	<br /><br />
		<a href="http://droptips.com/mount-an-iso-image-under-windows-982000xpvista" rel="bookmark">Mount an ISO Image Under Windows 98/2000/XP/Vista</a>
	<br /><br />
		<a href="http://droptips.com/clearingflushing-your-local-dns-cache-windows-osx" rel="bookmark">Clearing/Flushing Your Local DNS Cache (Windows, OSX)</a>
	<br /><br />
		<a href="http://droptips.com/how-do-you-show-desktop-in-windows-7" rel="bookmark">How do you &#8220;Show Desktop&#8221; in Windows 7?</a>
	<br /><br />
		<a href="http://droptips.com/how-to-install-the-telnet-client-in-windows-7" rel="bookmark">How to Install the Telnet Client in Windows 7</a>
	<br /><br />
	
<img src="http://feeds.feedburner.com/~r/droptips/~4/fG1J1uczE6c" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://droptips.com/windows-7-experience-index-performance-on-the-atom-powered-asus-1005ha-netbook/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mounting SSH and/or FTP Servers in Finder (OS X)</title>
		<link>http://droptips.com/mounting-ssh-andor-ftp-servers-in-finder-os-x</link>
		<comments>http://droptips.com/mounting-ssh-andor-ftp-servers-in-finder-os-x#comments</comments>
		<pubDate>Sat, 02 Jan 2010 23:27:32 +0000</pubDate>
		<dc:creator>Daz</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[os x]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://droptips.com/?p=933</guid>
		<description><![CDATA[With more and more people using remote servers nowadays, usually via SSH or FTP, the challenge of uploading data/editing data is ever growing. I personally SSH to my remote servers and use command line tools such as Vim to edit [...]

<h3>Other posts which may be of interest..</h3>
		<a href="http://droptips.com/ssh-client-automatically-connect-to-a-servers-non-standard-port" rel="bookmark">SSH Client: Automatically Connect to a Servers&#8217; Non-Standard Port</a>
	
		<a href="http://droptips.com/mounting-a-windows-smb-share-from-the-os-x-command-line" rel="bookmark">Mounting a Windows (SMB) Share from the OS X Command Line</a>
	
		<a href="http://droptips.com/ssh-access-whilst-on-the-move-iphone-ipod-touch" rel="bookmark">SSH Access Whilst on the Move (iPhone, iPod Touch)</a>
	
		<a href="http://droptips.com/change-the-default-spell-checking-language-in-mac-os-x" rel="bookmark">Change the Default Spell Checking Language in Mac OS X</a>
	
		<a href="http://droptips.com/using-scp-aliases-to-upload-files-quicker-os-x-bash" rel="bookmark">Using SCP Aliases to Upload Files Quicker (OS X, BASH)</a>
	
	
]]></description>
			<content:encoded><![CDATA[<p>With more and more people using remote servers nowadays, usually via SSH or FTP, the challenge of uploading data/editing data is ever growing.</p>
<p>I personally SSH to my remote servers and use command line tools such as <a href="http://www.vim.org" target="_blank">Vim</a> to edit files.  But you may not have SSH access, and only FTP access &#8211; in that case, you&#8217;d need to edit the files locally, open another application and upload them manually.</p>
<p>There are times though, when I like to use desktop applications such as <a href="http://macromates.com/" target="_blank">Textmate</a> to edit files remotely on various servers via SSH &#8211; but, of course, Finder and the applications on my computer wouldn&#8217;t be able to see them &#8211; until now!</p>
<p><a href="http://www.macfusionapp.org/" target="_blank">Macfusion</a> solves this problem.  Along with <a href="http://code.google.com/p/macfuse/" target="_blank">MacFUSE</a>, it allows you to &#8220;mount&#8221; the remote server space you have as a normal network drive.  What this means is, if you go to File -&gt; Open in any application locally, you&#8217;ll see the remote drive.  You&#8217;ll be able to see, copy, move, and even create new files directly on the remote server &#8211; infact, it acts exactly like any other drive would.</p>
<p>I&#8217;d highly recommend you take a look &#8211; both tools are free to download (the GUI and the underlying daemons) and I&#8217;ll guarantee once you start mounting your remote server space, you&#8217;ll wonder how you ever managed with older methods!</p>
<p>Macfusion: <a href="http://www.macfusionapp.org/about.html" target="_blank">http://www.macfusionapp.org/about.html</a><br />
MacFUSE:  <a href="http://code.google.com/p/macfuse/" target="_blank">http://code.google.com/p/macfuse/</a></p>
<p>You&#8217;ll need both of the above.</p>


<h3>Other posts which may be of interest..</h3>
		<a href="http://droptips.com/ssh-client-automatically-connect-to-a-servers-non-standard-port" rel="bookmark">SSH Client: Automatically Connect to a Servers&#8217; Non-Standard Port</a>
	<br /><br />
		<a href="http://droptips.com/mounting-a-windows-smb-share-from-the-os-x-command-line" rel="bookmark">Mounting a Windows (SMB) Share from the OS X Command Line</a>
	<br /><br />
		<a href="http://droptips.com/ssh-access-whilst-on-the-move-iphone-ipod-touch" rel="bookmark">SSH Access Whilst on the Move (iPhone, iPod Touch)</a>
	<br /><br />
		<a href="http://droptips.com/change-the-default-spell-checking-language-in-mac-os-x" rel="bookmark">Change the Default Spell Checking Language in Mac OS X</a>
	<br /><br />
		<a href="http://droptips.com/using-scp-aliases-to-upload-files-quicker-os-x-bash" rel="bookmark">Using SCP Aliases to Upload Files Quicker (OS X, BASH)</a>
	<br /><br />
	
<img src="http://feeds.feedburner.com/~r/droptips/~4/oYj3j0J4oN8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://droptips.com/mounting-ssh-andor-ftp-servers-in-finder-os-x/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

