<?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>phirebird</title>
	<atom:link href="http://www.phirebird.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.phirebird.net</link>
	<description>Yet Another IT &#039;How-To&#039; Site</description>
	<lastBuildDate>Wed, 29 Dec 2010 11:37:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Schedule a job under Linux using cron</title>
		<link>http://www.phirebird.net/2010/10/schedule-a-job-under-linux-using-cron/</link>
		<comments>http://www.phirebird.net/2010/10/schedule-a-job-under-linux-using-cron/#comments</comments>
		<pubDate>Fri, 22 Oct 2010 15:07:50 +0000</pubDate>
		<dc:creator>shands</dc:creator>
				<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[cron]]></category>
		<category><![CDATA[crontab]]></category>

		<guid isPermaLink="false">http://www.phirebird.net/?p=220</guid>
		<description><![CDATA[My last post was for a backup script that tar&#8217;ed up an entire Linux box (with the exception of some useless directories) and then uploaded it to an FTP server. Useful stuff, but a pain if you have to run it yourself manually every day! Enter, cron. Cron is the daemon that executes commands according [...]]]></description>
			<content:encoded><![CDATA[<p>My last post was for a <a href="http://www.phirebird.net/2010/10/backup-a-linux-box-through-ftp-push-and-tar/">backup script that tar&#8217;ed up an entire Linux box</a> (with the exception of some useless directories) and then uploaded it to an FTP server. Useful stuff, but a pain if you have to run it yourself manually every day! Enter, cron.</p>
<p>Cron is the daemon that executes commands according to a set schedule, and crontab is the utility used to manipulate it. To add a job, login as root and issue the command <i>crontab -e</i>. You&#8217;ll be presented with an editor for you to add the new job. The format the new line will need to format is as follows:</p>
<blockquote><pre>
* * * * * command
- - - - -
| | | | |
| | | | ----- Day of week (0 - 7) (Sunday=0 or 7)
| | | ------- Month (1 - 12)
| | --------- Day of month (1 - 31)
| ----------- Hour (0 - 23)
------------- Minute (0 - 59)</pre>
</blockquote>
<p>So, if we wanted our backup script (located at /back/dobackup.sh) to run at 10pm every night, you&#8217;d insert:</p>
<blockquote><p>0 22 * * * /back/dobackup.sh</p></blockquote>
<p>Save and exit (as you&#8217;re in vi, that&#8217;s the key sequence: <em>escape : w q enter</em>), and it&#8217;ll be added to your crontab. To check, issue: <i>crontab -l</i></p>
<p>&nbsp;</p>
<p>Did you find this hint useful? Or are you wondering how to learn more? Well, here&#8217;s a few books that I&#8217;ve found useful over the years:</p>
<table width="100%">
<tr>
<td valign="top" align="center"><a href="http://www.amazon.com/gp/product/047025128X?ie=UTF8&#038;tag=beabi-21"><img src="http://ecx.images-amazon.com/images/I/51ghmsGWY4L._BO2,204,203,200_PIsitb-sticker-arrow-click,TopRight,35,-76_AA150_SH20_OU02_.jpg" border="0"><br />
Linux Command Line and Shell Scripting Bible</a></td>
<td>&nbsp;</td>
<td valign="top" align="center"><a href="http://www.amazon.com/gp/product/007149247X?ie=UTF8&#038;tag=beabi-21"><img src="http://ecx.images-amazon.com/images/I/418-wCdBzpL._BO2,204,203,200_PIsitb-sticker-arrow-click,TopRight,35,-76_AA150_SH20_OU02_.jpg" border="0"><br />
Linux: The Complete Reference, Sixth Edition</a></td>
<td>&nbsp;</td>
<td valign="top" align="center"><a href="http://www.amazon.com/gp/product/0596006284?ie=UTF8&#038;tag=beabi-21"><img src="http://ecx.images-amazon.com/images/I/512K0225XZL._BO2,204,203,200_PIsitb-sticker-arrow-click,TopRight,35,-76_AA150_SH20_OU02_.jpg" border="0"><br />
Linux Pocket Guide &#8211; Essential Commands</a></td>
<td>&nbsp;</td>
<td valign="top" align="center"><a href="http://www.amazon.com/gp/product/0470275359?ie=UTF8&#038;tag=beabi-21"><img src="http://ecx.images-amazon.com/images/I/51DB-xEY2eL._BO2,204,203,200_PIsitb-sticker-arrow-click,TopRight,35,-76_AA150_SH20_OU02_.jpg" border="0"><br />
Linux All-in-one Desk Reference</a></td>
</tr>
</table>
<p>&nbsp;<br />
<br />&nbsp;</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.phirebird.net/2010/10/schedule-a-job-under-linux-using-cron/&amp;n=Schedule+a+job+under+Linux+using+cron&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.phirebird.net/2010/10/schedule-a-job-under-linux-using-cron/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.phirebird.net/2010/10/schedule-a-job-under-linux-using-cron/&amp;title=Schedule+a+job+under+Linux+using+cron" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.phirebird.net/2010/10/schedule-a-job-under-linux-using-cron/&amp;title=Schedule+a+job+under+Linux+using+cron" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.phirebird.net/2010/10/schedule-a-job-under-linux-using-cron/&amp;t=Schedule+a+job+under+Linux+using+cron" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.phirebird.net/2010/10/schedule-a-job-under-linux-using-cron/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.phirebird.net/2010/10/schedule-a-job-under-linux-using-cron/&amp;title=Schedule+a+job+under+Linux+using+cron" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.phirebird.net/2010/10/schedule-a-job-under-linux-using-cron/&amp;title=Schedule+a+job+under+Linux+using+cron" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.phirebird.net/2010/10/schedule-a-job-under-linux-using-cron/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Schedule+a+job+under+Linux+using+cron+-+http://www.phirebird.net/2010/10/schedule-a-job-under-linux-using-cron/&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.phirebird.net/2010/10/schedule-a-job-under-linux-using-cron/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Backup a Linux box through FTP (push) and tar</title>
		<link>http://www.phirebird.net/2010/10/backup-a-linux-box-through-ftp-push-and-tar/</link>
		<comments>http://www.phirebird.net/2010/10/backup-a-linux-box-through-ftp-push-and-tar/#comments</comments>
		<pubDate>Fri, 22 Oct 2010 14:27:22 +0000</pubDate>
		<dc:creator>shands</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[ftp]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[tar]]></category>

		<guid isPermaLink="false">http://www.phirebird.net/?p=203</guid>
		<description><![CDATA[Another quick Linux how-to. This time how to backup up an entire box using into a tar archive and push it to an FTP server. In my case, this ran every night and the FTP server was the central tape backup unit. It&#8217;s a good idea to create yourself a separate directory to store the [...]]]></description>
			<content:encoded><![CDATA[<p>Another quick Linux how-to. This time how to backup up an entire box using into a tar archive and push it to an FTP server. In my case, this ran every night and the FTP server was the central tape backup unit.</p>
<p>It&#8217;s a good idea to create yourself a separate directory to store the backup shell script and FTP script. For want of a better name, I created /back (10 out of 10 for originality, right?). In there, first create the backup script<em> dobackup.sh</em>:</p>
<blockquote>
<pre>rm /back/*.tgz
d=$(date +%y%m%d)
tar cvpzf /back/back$d.tgz --exclude=/proc --exclude=/lost+found --exclude
    =/back --exclude=/mnt --exclude=/sys /
lftp -f /back/backftpscript</pre>
</blockquote>
<div>Then change the mode of the file to allow execution:</div>
<blockquote>
<div>[root@nas01 /]# chmod a+x dobackup.sh</div>
<div>[root@nas01 /]#</div>
</blockquote>
<div>And then create the second file <em>backftpscript </em>(the FTP script):</div>
<blockquote>
<div>open -u <em>&lt;ftp username&gt;</em>,<em>&lt;ftp password&gt; &lt;ftp host&gt;</em></div>
<div>mput /back/*.tgz</div>
<div>bye</div>
</blockquote>
<div>That&#8217;s it &#8211; you&#8217;re good to go! Just execute /dobackup.sh and it&#8217;ll tar everything and then upload it to the specified FTP server.</div>
<p></p>
<div>Here&#8217;s an explanation as to how it works and line-by-line what&#8217;s going on:</div>
<p></p>
<div><em>rm /back/*.tgz</em></div>
<div style="padding-left: 30px;">Remove last nights backup! (or traces of any others)</div>
<p></p>
<div><em>d=$(date +%y%m%d)</em></div>
<div style="padding-left: 30px;">Grab todays date (in the format yymmdd) and stuff it a variable ($d)</div>
<p></p>
<div><em>tar cvpzf /back/back$d.tgz &#8211;exclude=/proc &#8211;exclude=/lost+found &#8211;exclude=/back &#8211;exclude=/mnt &#8211;exclude=/sys /</em></div>
<div style="padding-left: 30px;"><strong>C</strong>reate an archive, make it <strong>V</strong>erbose, <strong>P</strong>reserve the permissions, filter the archive through g<strong>Z</strong>ip, call the <strong>F</strong>ile /back/back$d.tgz (e.g back101022.tgz for 22nd Oct 2010).  Exclude from the archive useless stuff like /back (the backup dir itself), /sys, /mnt, etc. And finally the target of the archive, /</div>
<p></p>
<div id="_mcePaste">lftp -f /back/backftpscript</div>
<div style="padding-left: 30px;">lftp is like the ftp command, but with a lot more functionality and protocols. Probably warrants a how-to of its own, but needless to says it&#8217;s a lot more useful for use in situations like these. This particular line starts lftp and runs our ftp script, <em>backftpscript. </em>The contents of which are:</div>
<p></p>
<div>open -u <em>&lt;ftp username&gt;</em>,<em>&lt;ftp password&gt; &lt;ftp host&gt;</em></div>
<div style="padding-left: 30px;">Pretty self explanatory. Open a connection to &lt;ftp host&gt; and login as &lt;ftp username&gt; using the password &lt;ftp password&gt;</div>
<p></p>
<div>mput /back/*.tgz</div>
<div style="padding-left: 30px;">After we&#8217;ve connected, upload (or put) all the .tgz files from our local /back directory</div>
<p></p>
<div>bye</div>
<div style="padding-left: 30px;">Bid farewell and drop the connection (in a nice, polite sort of way)</div>
<p></p>
<div>Need this to run on a nightly basis? Take a look at my other how-to on <a href="http://www.phirebird.net/2010/10/schedule-a-job-under-linux-using-cron/">cron jobs</a></div>
<p></p>
<p>Are you wondering how to learn more about Linux? Well, here&#8217;s a few books that I&#8217;ve found useful over the years that might just help you more:</p>
<table width="100%">
<tr>
<td valign="top" align="center"><a href="http://www.amazon.com/gp/product/047025128X?ie=UTF8&#038;tag=beabi-21"><img src="http://ecx.images-amazon.com/images/I/51ghmsGWY4L._BO2,204,203,200_PIsitb-sticker-arrow-click,TopRight,35,-76_AA150_SH20_OU02_.jpg" border="0"><br />
Linux Command Line and Shell Scripting Bible</a></td>
<td>&nbsp;</td>
<td valign="top" align="center"><a href="http://www.amazon.com/gp/product/007149247X?ie=UTF8&#038;tag=beabi-21"><img src="http://ecx.images-amazon.com/images/I/418-wCdBzpL._BO2,204,203,200_PIsitb-sticker-arrow-click,TopRight,35,-76_AA150_SH20_OU02_.jpg" border="0"><br />
Linux: The Complete Reference, Sixth Edition</a></td>
<td>&nbsp;</td>
<td valign="top" align="center"><a href="http://www.amazon.com/gp/product/0596006284?ie=UTF8&#038;tag=beabi-21"><img src="http://ecx.images-amazon.com/images/I/512K0225XZL._BO2,204,203,200_PIsitb-sticker-arrow-click,TopRight,35,-76_AA150_SH20_OU02_.jpg" border="0"><br />
Linux Pocket Guide &#8211; Essential Commands</a></td>
<td>&nbsp;</td>
<td valign="top" align="center"><a href="http://www.amazon.com/gp/product/0470275359?ie=UTF8&#038;tag=beabi-21"><img src="http://ecx.images-amazon.com/images/I/51DB-xEY2eL._BO2,204,203,200_PIsitb-sticker-arrow-click,TopRight,35,-76_AA150_SH20_OU02_.jpg" border="0"><br />
Linux All-in-one Desk Reference</a></td>
</tr>
</table>
<p>&nbsp;<br />
<br />&nbsp;</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.phirebird.net/2010/10/backup-a-linux-box-through-ftp-push-and-tar/&amp;n=Backup+a+Linux+box+through+FTP+%28push%29+and+tar&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.phirebird.net/2010/10/backup-a-linux-box-through-ftp-push-and-tar/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.phirebird.net/2010/10/backup-a-linux-box-through-ftp-push-and-tar/&amp;title=Backup+a+Linux+box+through+FTP+%28push%29+and+tar" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.phirebird.net/2010/10/backup-a-linux-box-through-ftp-push-and-tar/&amp;title=Backup+a+Linux+box+through+FTP+%28push%29+and+tar" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.phirebird.net/2010/10/backup-a-linux-box-through-ftp-push-and-tar/&amp;t=Backup+a+Linux+box+through+FTP+%28push%29+and+tar" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.phirebird.net/2010/10/backup-a-linux-box-through-ftp-push-and-tar/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.phirebird.net/2010/10/backup-a-linux-box-through-ftp-push-and-tar/&amp;title=Backup+a+Linux+box+through+FTP+%28push%29+and+tar" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.phirebird.net/2010/10/backup-a-linux-box-through-ftp-push-and-tar/&amp;title=Backup+a+Linux+box+through+FTP+%28push%29+and+tar" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.phirebird.net/2010/10/backup-a-linux-box-through-ftp-push-and-tar/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Backup+a+Linux+box+through+FTP+%28push%29+and+tar+-+http://www.phirebird.net/2010/10/backup-a-linux-box-through-ftp-push-and-tar/&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.phirebird.net/2010/10/backup-a-linux-box-through-ftp-push-and-tar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating and mounting an ext3 partition</title>
		<link>http://www.phirebird.net/2010/10/creating-and-mounting-an-ext3-partition/</link>
		<comments>http://www.phirebird.net/2010/10/creating-and-mounting-an-ext3-partition/#comments</comments>
		<pubDate>Fri, 22 Oct 2010 13:45:00 +0000</pubDate>
		<dc:creator>shands</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[ext3]]></category>
		<category><![CDATA[fdisk]]></category>
		<category><![CDATA[filesystem]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mkfs.ext3]]></category>
		<category><![CDATA[mount]]></category>

		<guid isPermaLink="false">http://www.phirebird.net/?p=190</guid>
		<description><![CDATA[It&#8217;s been a while, but here&#8217;s a quick how-to on creating a new file system and mounting on a Linux box. My scenario was a 512MB CF card as an IDE slave &#8211; so /dev/hdb (b being the second IDE disk) &#8211; with no existing partitions, and create a mount point of /back (for backup [...]]]></description>
			<content:encoded><![CDATA[<div>It&#8217;s been a while, but here&#8217;s a quick how-to on creating a new file system and mounting on a Linux box.</div>
<div>My scenario was a 512MB CF card as an IDE slave &#8211; so /dev/hd<strong>b</strong> (b being the second IDE disk) &#8211; with no existing partitions, and create a mount point of /back (for backup purposes).</div>
<p></p>
<div>Here&#8217;s how:</div>
<p></p>
<blockquote>
<div>[root@nas01 /]#<strong> fdisk /dev/hdb</strong></div>
<div id="_mcePaste">Command (m for help): <strong>d</strong></div>
<div id="_mcePaste">No partition is defined yet!</div>
<div id="_mcePaste" style="padding-left: 30px;"><em>(Note: If you&#8217;ve got an existing partition on the drive, <span style="font-style: normal;">d </span>will remove the partition and you&#8217;ll get a message like &#8220;Selected partition 1&#8243;. If you&#8217;ve got any additional partitions, <span style="font-style: normal;">d</span> them too)</em></div>
<div id="_mcePaste">Command (m for help): <strong>n</strong></div>
<div id="_mcePaste">Command action</div>
<div id="_mcePaste">e   extended</div>
<div id="_mcePaste">p   primary partition (1-4)</div>
<div id="_mcePaste"><em><strong>p</strong></em></div>
<div id="_mcePaste">Partition number (1-4): <strong>1</strong></div>
<div id="_mcePaste">First cylinder (1-993, default 1): <em><strong>&lt;hit enter&gt;</strong></em></div>
<div id="_mcePaste">Using default value 1</div>
<div id="_mcePaste">Last cylinder, +cylinders or +size{K,M,G} (1-993, default 993): <em><strong>&lt;hit enter&gt;</strong></em></div>
<div id="_mcePaste">Using default value 993</div>
<div id="_mcePaste">Command (m for help): <strong>w</strong></div>
<div id="_mcePaste">The partition table has been altered!</div>
<div id="_mcePaste">Calling ioctl() to re-read partition table.</div>
<div id="_mcePaste">Syncing disks.</div>
<p></p>
<div id="_mcePaste">[root@nas01 /]#<strong> mkfs.ext3 /dev/hdb1</strong></div>
<div id="_mcePaste">mke2fs 1.41.8 (11-July-2009)</div>
<div id="_mcePaste">Filesystem label=</div>
<div id="_mcePaste">OS type: Linux</div>
<div id="_mcePaste">Block size=1024 (log=0)</div>
<div id="_mcePaste">Fragment size=1024 (log=0)</div>
<div id="_mcePaste">125488 inodes, 500440 blocks</div>
<div id="_mcePaste">25022 blocks (5.00%) reserved for the super user</div>
<div id="_mcePaste">First data block=1</div>
<div id="_mcePaste">Maximum filesystem blocks=67633152</div>
<div id="_mcePaste">62 block groups</div>
<div id="_mcePaste">8192 blocks per group, 8192 fragments per group</div>
<div id="_mcePaste">2024 inodes per group</div>
<div id="_mcePaste">Superblock backups stored on blocks:</div>
<div id="_mcePaste">8193, 24577, 40961, 57345, 73729, 204801, 221185, 401409</div>
<div id="_mcePaste">Writing inode tables: done</div>
<div id="_mcePaste">Creating journal (8192 blocks): done</div>
<div id="_mcePaste">Writing superblocks and filesystem accounting information: done</div>
<div id="_mcePaste">This filesystem will be automatically checked every 37 mounts or</div>
<div id="_mcePaste">180 days, whichever comes first.  Use tune2fs -c or -i to override.</div>
<p></p>
<div>[root@nas01 /]#<strong> mkdir /back</strong></div>
<div><strong><br />
</strong></div>
<div id="_mcePaste">[root@nas01 /]#<strong> mount /dev/hdb1 /back</strong></div>
<div><strong><br />
</strong></div>
<div id="_mcePaste">[root@nas01 /]# <strong>df -m</strong></div>
<div id="_mcePaste">Filesystem           1M-blocks      Used Available Use% Mounted on</div>
<div id="_mcePaste">/dev/hda1                 1930       741      1090  41% /</div>
<div id="_mcePaste">tmpfs                            1980         0         1980  0%   /dev/shm</div>
<div id="_mcePaste">/dev/hdb1                  474          11       439      3%   /back</div>
<p></p>
<div id="_mcePaste">[root@nas01 /]#</div>
</blockquote>
<div id="_mcePaste">If like me you want this to mount every time that you start up &#8211; just edit /etc/fstab and tag on a new line:</div>
<p></p>
<blockquote>
<div id="_mcePaste">/dev/hdb1               /back                 ext3    defaults        1 1</div>
</blockquote>
<p>&nbsp;</p>
<p>Did you find this hint useful? Or are you wondering how to learn more? Well, here&#8217;s a few books that I&#8217;ve found useful over the years:</p>
<table width="100%">
<tr>
<td valign="top" align="center"><a href="http://www.amazon.com/gp/product/047025128X?ie=UTF8&#038;tag=beabi-21"><img src="http://ecx.images-amazon.com/images/I/51ghmsGWY4L._BO2,204,203,200_PIsitb-sticker-arrow-click,TopRight,35,-76_AA150_SH20_OU02_.jpg" border="0"><br />
Linux Command Line and Shell Scripting Bible</a></td>
<td>&nbsp;</td>
<td valign="top" align="center"><a href="http://www.amazon.com/gp/product/007149247X?ie=UTF8&#038;tag=beabi-21"><img src="http://ecx.images-amazon.com/images/I/418-wCdBzpL._BO2,204,203,200_PIsitb-sticker-arrow-click,TopRight,35,-76_AA150_SH20_OU02_.jpg" border="0"><br />
Linux: The Complete Reference, Sixth Edition</a></td>
<td>&nbsp;</td>
<td valign="top" align="center"><a href="http://www.amazon.com/gp/product/0596006284?ie=UTF8&#038;tag=beabi-21"><img src="http://ecx.images-amazon.com/images/I/512K0225XZL._BO2,204,203,200_PIsitb-sticker-arrow-click,TopRight,35,-76_AA150_SH20_OU02_.jpg" border="0"><br />
Linux Pocket Guide &#8211; Essential Commands</a></td>
<td>&nbsp;</td>
<td valign="top" align="center"><a href="http://www.amazon.com/gp/product/0470275359?ie=UTF8&#038;tag=beabi-21"><img src="http://ecx.images-amazon.com/images/I/51DB-xEY2eL._BO2,204,203,200_PIsitb-sticker-arrow-click,TopRight,35,-76_AA150_SH20_OU02_.jpg" border="0"><br />
Linux All-in-one Desk Reference</a></td>
</tr>
</table>
<p>&nbsp;<br />
<br />&nbsp;</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.phirebird.net/2010/10/creating-and-mounting-an-ext3-partition/&amp;n=Creating+and+mounting+an+ext3+partition&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.phirebird.net/2010/10/creating-and-mounting-an-ext3-partition/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.phirebird.net/2010/10/creating-and-mounting-an-ext3-partition/&amp;title=Creating+and+mounting+an+ext3+partition" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.phirebird.net/2010/10/creating-and-mounting-an-ext3-partition/&amp;title=Creating+and+mounting+an+ext3+partition" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.phirebird.net/2010/10/creating-and-mounting-an-ext3-partition/&amp;t=Creating+and+mounting+an+ext3+partition" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.phirebird.net/2010/10/creating-and-mounting-an-ext3-partition/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.phirebird.net/2010/10/creating-and-mounting-an-ext3-partition/&amp;title=Creating+and+mounting+an+ext3+partition" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.phirebird.net/2010/10/creating-and-mounting-an-ext3-partition/&amp;title=Creating+and+mounting+an+ext3+partition" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.phirebird.net/2010/10/creating-and-mounting-an-ext3-partition/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Creating+and+mounting+an+ext3+partition+-+http://www.phirebird.net/2010/10/creating-and-mounting-an-ext3-partition/&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.phirebird.net/2010/10/creating-and-mounting-an-ext3-partition/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Nintendo Wii Points cards / codes</title>
		<link>http://www.phirebird.net/2010/04/free-nintendo-wii-points-cards-codes/</link>
		<comments>http://www.phirebird.net/2010/04/free-nintendo-wii-points-cards-codes/#comments</comments>
		<pubDate>Sat, 24 Apr 2010 15:24:27 +0000</pubDate>
		<dc:creator>shands</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[codes]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[nintendo]]></category>
		<category><![CDATA[points cards]]></category>
		<category><![CDATA[wii]]></category>

		<guid isPermaLink="false">http://www.phirebird.net/?p=177</guid>
		<description><![CDATA[Right. Just thought I&#8217;d chime in with information on offers of free Wii points cards and codes. Unless given away by a third party as a gift, they simply don&#8217;t exist! Even as gifts, they cost a significant amount of time and money and only run for a short period of time. The only &#8216;genuine&#8217; [...]]]></description>
			<content:encoded><![CDATA[<table width="100%">
<tbody>
<tr>
<td>Right. Just thought I&#8217;d chime in with information on offers of free Wii points cards and codes.</p>
<p>Unless given away by a third party as a gift, they simply don&#8217;t exist! Even as gifts, they cost a significant amount of time and money and only run for a short period of time. The only &#8216;genuine&#8217; offer I&#8217;ve seen is where a guy had to sign up to a dating site &#8211; even then, the benefit to the company is obvious. If I&#8217;m wrong though, please do drop a comment below to tell everyone about it!!</td>
<td><a class="no_class" href="http://www.amazon.com/gp/product/B000IMYL0U?ie=UTF8&amp;tag=beabi-21" target="_new"><img title="Buy cheap Nintendo Wii Points Cards from Amazon" src="/files/free-nintendo-wii-points-codes-image.jpg" border="0" alt="Buy cheap Nintendo Wii Points Cards from Amazon" /></a></td>
</tr>
</tbody>
</table>
<p>Points cards are available cheaply enough from <a href="http://www.amazon.co.uk/Nintendo-Points-Card-1000-Wii/dp/B001W0Y3ZU/ref=sr_1_3?ie=UTF8&amp;s=videogames&amp;qid=1272119430&amp;sr=8-3&amp;tag=beabi-21" target="_new">Amazon UK</a>, <a href="http://www.amazon.com/gp/product/B000IMYL0U?ie=UTF8&amp;tag=beabi-21" target="_new">Amazon USA</a> and even on eBay (although your mileage with eBay will depend on the seller). So why bother spending countless hours chasing ghosts?!</p>
<p>Oh, one last thing to remember if you&#8217;re <em>still </em>searching for freebies &#8211; codes can usually only be used once!!</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.phirebird.net/2010/04/free-nintendo-wii-points-cards-codes/&amp;n=Free+Nintendo+Wii+Points+cards+%2F+codes&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.phirebird.net/2010/04/free-nintendo-wii-points-cards-codes/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.phirebird.net/2010/04/free-nintendo-wii-points-cards-codes/&amp;title=Free+Nintendo+Wii+Points+cards+%2F+codes" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.phirebird.net/2010/04/free-nintendo-wii-points-cards-codes/&amp;title=Free+Nintendo+Wii+Points+cards+%2F+codes" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.phirebird.net/2010/04/free-nintendo-wii-points-cards-codes/&amp;t=Free+Nintendo+Wii+Points+cards+%2F+codes" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.phirebird.net/2010/04/free-nintendo-wii-points-cards-codes/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.phirebird.net/2010/04/free-nintendo-wii-points-cards-codes/&amp;title=Free+Nintendo+Wii+Points+cards+%2F+codes" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.phirebird.net/2010/04/free-nintendo-wii-points-cards-codes/&amp;title=Free+Nintendo+Wii+Points+cards+%2F+codes" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.phirebird.net/2010/04/free-nintendo-wii-points-cards-codes/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Free+Nintendo+Wii+Points+cards+%2F+codes+-+http://www.phirebird.net/2010/04/free-nintendo-wii-points-cards-codes/&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.phirebird.net/2010/04/free-nintendo-wii-points-cards-codes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MS-DOS boot disk with network support</title>
		<link>http://www.phirebird.net/2010/04/ms-dos-boot-disk-image-with-network-support/</link>
		<comments>http://www.phirebird.net/2010/04/ms-dos-boot-disk-image-with-network-support/#comments</comments>
		<pubDate>Sun, 11 Apr 2010 15:04:18 +0000</pubDate>
		<dc:creator>shands</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[boot]]></category>
		<category><![CDATA[dos]]></category>
		<category><![CDATA[ndis]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[pxe]]></category>
		<category><![CDATA[pxelinux]]></category>

		<guid isPermaLink="false">http://www.phirebird.net/?p=171</guid>
		<description><![CDATA[Here&#8217;s a little gem that I seem to be perpetually working on! An MS-DOS boot disk with MS-LAN Manager, various NDIS  network card drivers &#38; DOS TCP/IP support. Currently, the following network cards are supported, but it&#8217;s really easy to add your own &#8211; as long as you&#8217;re not afraid of batch files Intel PRO/100 [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a little gem that I seem to be perpetually working on! An MS-DOS boot disk with MS-LAN Manager, various NDIS  network card drivers &amp; DOS TCP/IP support. Currently, the following network cards are supported, but it&#8217;s really easy to add your own &#8211; as long as you&#8217;re not afraid of batch files <img src='http://www.phirebird.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<ol>
<li>Intel PRO/100 (Earlier version)</li>
<li>Intel PRO/100 (Newer version &#8211; doesn&#8217;t work with some older card)</li>
<li>Intel PRO/1000</li>
<li>Dlink DFE-650 (PCMCIA)</li>
<li>Realtek 8029</li>
<li>Realtek 8139 (but covers most of the 8100 range)</li>
<li>BroadCom B57xx</li>
<li>3Com 10/100 MiniPCI (early Thinkpad)</li>
<li>3Com 3C90X (3C905, etc)</li>
<li>Dlink DFE-530TX</li>
<li>Realtek 8169 (As used by NetGear GA311)</li>
<li>DEC Digital DC21140 (As emulated by Microsoft&#8217;s Virtual PC)</li>
<li>AMD PCNet (As emulated by various flavours of VMWare)</li>
<li>Accton/SMC EN1207D</li>
<li>Generic NE2000 compatible (it&#8217;s worked on a few oddball cards!)</li>
<li>SIS 900</li>
<li>SMC 1211</li>
<li>Dlink DFE-670 (PCMCIA)</li>
<li>National Semiconductor DP83815</li>
<li>Broadcom Netlink 4401</li>
<li>VIA 10/100 &#8216;Rhine&#8217;</li>
</ol>
<p>Originally, this was written for a set of floppy disks (which is why you have the option to change your computer name), but currently I use it in the lab to PXE boot over the network (Google tFTPd32 and pxelinux! I might write a how-to on this one day).</p>
<p>Everything should be pretty self explanatory &#8211; the machine boots, starts DOS, loads himem, a RAM disk and a few other drivers, extracts the base network stuff from net.zip to the ramdisk, throws up a prompt asking what network card you&#8217;ve got (yes I could autodetect &#8211; but pciscan or equivalent hurt the footprint &#8211; this is meant for a regular 1.44MB floppy, remember!), extracts the NDIS drivers from the relevant zip, creates protocol.ini and system.ini to match your chosen card, starts the network, grabs an IP with DHCP, and asks for a username/password. Job done!</p>
<p>If you&#8217;ve not got a DHCP server on your network (if so, get into the 90&#8242;s!) then take a look in selcard.bat &#8211; and update your chosen card. I wrote protini.exe in VBDos and added support to handle parameters (IP and subnet). Just change the line to follow the format:</p>
<div id="_mcePaste">PROTINI [DRIVERNAME] &lt;IP Address&gt; &lt;Subnet mask&gt;</div>
<p>As for adding drivers for new cards &#8211; again, just edit selcard.bat and place a zipped copy of your NDIS drivers into the \NICs subdirectory.</p>
<p>You can download a copy of the disk images here:</p>
<blockquote><p><a title="Compressed Virtual Disk image of the DOS Network Boot-disk" href="http://www.phirebird.net/files/mnbd.imz" target="_self">http://www.phirebird.net/files/mnbd.imz</a></p>
<p>or a self-extracting disk image:</p>
<p><a title="Self-Extracting version of the DOS Network Boot disk" href="http://www.phirebird.net/files/mnbd.exe">http://www.phirebird.net/files/mnbd.exe</a></p></blockquote>
<p>Use it at your own risk, blah, blah, if your wife divorces you, blah, blah, don&#8217;t blow up, blah, blah, not liable, blah, blah, etc, etc &#8211; insert the rest of a usual disclaimer here.</p>
<p>Why would you use this? Well, I&#8217;ve found it useful for many reasons &#8211; mostly when trying to take/apply Ghost or PQDI images to/from PC&#8217;s and servers. But you wouldn&#8217;t be reading this if you didn&#8217;t already have a use for it &#8211; right?</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.phirebird.net/2010/04/ms-dos-boot-disk-image-with-network-support/&amp;n=MS-DOS+boot+disk+with+network+support&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.phirebird.net/2010/04/ms-dos-boot-disk-image-with-network-support/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.phirebird.net/2010/04/ms-dos-boot-disk-image-with-network-support/&amp;title=MS-DOS+boot+disk+with+network+support" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.phirebird.net/2010/04/ms-dos-boot-disk-image-with-network-support/&amp;title=MS-DOS+boot+disk+with+network+support" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.phirebird.net/2010/04/ms-dos-boot-disk-image-with-network-support/&amp;t=MS-DOS+boot+disk+with+network+support" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.phirebird.net/2010/04/ms-dos-boot-disk-image-with-network-support/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.phirebird.net/2010/04/ms-dos-boot-disk-image-with-network-support/&amp;title=MS-DOS+boot+disk+with+network+support" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.phirebird.net/2010/04/ms-dos-boot-disk-image-with-network-support/&amp;title=MS-DOS+boot+disk+with+network+support" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.phirebird.net/2010/04/ms-dos-boot-disk-image-with-network-support/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=MS-DOS+boot+disk+with+network+support+-+http://www.phirebird.net/2010/04/ms-dos-boot-disk-image-with-network-support/&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.phirebird.net/2010/04/ms-dos-boot-disk-image-with-network-support/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to remove passwords on Microsoft Word documents</title>
		<link>http://www.phirebird.net/2010/01/how-to-remove-passwords-on-microsoft-word-documents/</link>
		<comments>http://www.phirebird.net/2010/01/how-to-remove-passwords-on-microsoft-word-documents/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 19:29:38 +0000</pubDate>
		<dc:creator>shands</dc:creator>
				<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://www.phirebird.net/?p=166</guid>
		<description><![CDATA[Ok, so you&#8217;ve found yourself in the situation where you can&#8217;t update an MS Word document that you created years ago and can&#8217;t remember the unprotect password! D&#8217;oh! Well, don&#8217;t be drawn in by premium/commercial solutions to this problem &#8211; when you can solve it for free! Forget dictionary attacks, you weren&#8217;t silly enough to [...]]]></description>
			<content:encoded><![CDATA[<p>Ok, so you&#8217;ve found yourself in the situation where you can&#8217;t update an MS Word document that you created years ago and can&#8217;t remember the unprotect password! D&#8217;oh! Well, don&#8217;t be drawn in by premium/commercial solutions to this problem &#8211; when you can solve it for free! Forget dictionary attacks, you weren&#8217;t silly enough to use a plain word  - right?! Also, forget cracking by brute force &#8211; because you don&#8217;t have the time!</p>
<p>Simply follow these steps:</p>
<ol>
<li>Open the protected document in Word as normal.</li>
<li>File/Save As&#8230;</li>
<li>Select &#8216;Rich Text Format (RTF)&#8217; from the &#8216;As Type&#8217; drop-down list box and save it.</li>
<li>Close Word</li>
<li>Open Notepad (Start/Programs/Accessories/Notepad)</li>
<li>Open your RTF file in Notepad</li>
<li style="text-align: left;">Do a text search for &#8216;password&#8217;. It should return something like:<br />
{\*\password <em>5edc3b9c</em>}<br />
(Obviously your password data will be different!)</li>
<li style="text-align: left;">Delete this entire section, save it and close Notepad</li>
<li style="text-align: left;">Open the RTF document in Word and hit &#8216;Unprotect&#8217;. If you get a password dialog box &#8211; just leave it blank.</li>
<li style="text-align: left;">Now, do a &#8216;Save As&#8217; again &#8211; but this time save it as a regular word document.</li>
</ol>
<p>All done!</p>
<p>Is this legal? Well, I&#8217;d say so. It&#8217;s your document &#8211; and not your fault that you forgot the password! I think a slap around the back of the head is due though!</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.phirebird.net/2010/01/how-to-remove-passwords-on-microsoft-word-documents/&amp;n=How+to+remove+passwords+on+Microsoft+Word+documents&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.phirebird.net/2010/01/how-to-remove-passwords-on-microsoft-word-documents/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.phirebird.net/2010/01/how-to-remove-passwords-on-microsoft-word-documents/&amp;title=How+to+remove+passwords+on+Microsoft+Word+documents" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.phirebird.net/2010/01/how-to-remove-passwords-on-microsoft-word-documents/&amp;title=How+to+remove+passwords+on+Microsoft+Word+documents" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.phirebird.net/2010/01/how-to-remove-passwords-on-microsoft-word-documents/&amp;t=How+to+remove+passwords+on+Microsoft+Word+documents" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.phirebird.net/2010/01/how-to-remove-passwords-on-microsoft-word-documents/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.phirebird.net/2010/01/how-to-remove-passwords-on-microsoft-word-documents/&amp;title=How+to+remove+passwords+on+Microsoft+Word+documents" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.phirebird.net/2010/01/how-to-remove-passwords-on-microsoft-word-documents/&amp;title=How+to+remove+passwords+on+Microsoft+Word+documents" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.phirebird.net/2010/01/how-to-remove-passwords-on-microsoft-word-documents/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=How+to+remove+passwords+on+Microsoft+Word+documents+-+http://www.phirebird.net/2010/01/how-to-remove-passwords-on-microsoft-word-documents/&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.phirebird.net/2010/01/how-to-remove-passwords-on-microsoft-word-documents/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Disable movie/video thumbnail preview under Windows XP</title>
		<link>http://www.phirebird.net/2010/01/disable-movievideo-thumbnail-preview-under-windows-xp/</link>
		<comments>http://www.phirebird.net/2010/01/disable-movievideo-thumbnail-preview-under-windows-xp/#comments</comments>
		<pubDate>Sat, 09 Jan 2010 15:51:12 +0000</pubDate>
		<dc:creator>shands</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[avi]]></category>
		<category><![CDATA[cache]]></category>
		<category><![CDATA[crash]]></category>
		<category><![CDATA[explorer.exe]]></category>
		<category><![CDATA[hang]]></category>
		<category><![CDATA[movies]]></category>
		<category><![CDATA[mpg]]></category>
		<category><![CDATA[preview]]></category>
		<category><![CDATA[terminate]]></category>
		<category><![CDATA[videos]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.phirebird.net/?p=164</guid>
		<description><![CDATA[Rather annoyingly, the explorer.exe process under Windows XP can sometimes hang, stop responding, crash or just plain terminate/close itself while it tries to display video/movie thumbnails in any given folder. The reason for this can be a multitude of issues &#8211; like a dodgy codec, etc &#8211; and seems to be rather in-discriminant as to which file [...]]]></description>
			<content:encoded><![CDATA[<p>Rather annoyingly, the explorer.exe process under Windows XP can sometimes hang, stop responding, crash or just plain terminate/close itself while it tries to display video/movie thumbnails in any given folder.</p>
<p>The reason for this can be a multitude of issues &#8211; like a dodgy codec, etc &#8211; and seems to be rather in-discriminant as to which file type it decides to screw up with (AVI, MPG, WMV, ASF, etc).</p>
<p>To get around this problem though, it is possible to easily disable this feature. Either fire up a command prompt or execute this straight from the run dialog box:</p>
<blockquote><p>regsvr32 /u shmedia.dll</p></blockquote>
<p>And if you want to re-enable it again at a later date:</p>
<blockquote><p>regsvr32 shmedia.dll</p></blockquote>
<p>Now, the only knock-on effect is that you&#8217;ll no longer be able to see summary information in the file properties. In my opinion though, it&#8217;s a small price to pay!!</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.phirebird.net/2010/01/disable-movievideo-thumbnail-preview-under-windows-xp/&amp;n=Disable+movie%2Fvideo+thumbnail+preview+under+Windows+XP&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.phirebird.net/2010/01/disable-movievideo-thumbnail-preview-under-windows-xp/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.phirebird.net/2010/01/disable-movievideo-thumbnail-preview-under-windows-xp/&amp;title=Disable+movie%2Fvideo+thumbnail+preview+under+Windows+XP" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.phirebird.net/2010/01/disable-movievideo-thumbnail-preview-under-windows-xp/&amp;title=Disable+movie%2Fvideo+thumbnail+preview+under+Windows+XP" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.phirebird.net/2010/01/disable-movievideo-thumbnail-preview-under-windows-xp/&amp;t=Disable+movie%2Fvideo+thumbnail+preview+under+Windows+XP" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.phirebird.net/2010/01/disable-movievideo-thumbnail-preview-under-windows-xp/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.phirebird.net/2010/01/disable-movievideo-thumbnail-preview-under-windows-xp/&amp;title=Disable+movie%2Fvideo+thumbnail+preview+under+Windows+XP" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.phirebird.net/2010/01/disable-movievideo-thumbnail-preview-under-windows-xp/&amp;title=Disable+movie%2Fvideo+thumbnail+preview+under+Windows+XP" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.phirebird.net/2010/01/disable-movievideo-thumbnail-preview-under-windows-xp/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Disable+movie%2Fvideo+thumbnail+preview+under+Windows+XP+-+http://www.phirebird.net/2010/01/disable-movievideo-thumbnail-preview-under-windows-xp/&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.phirebird.net/2010/01/disable-movievideo-thumbnail-preview-under-windows-xp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Configure NTP time server synchronisation on Cisco routers</title>
		<link>http://www.phirebird.net/2009/10/configure-ntp-time-server-synchronisation-on-cisco-routers/</link>
		<comments>http://www.phirebird.net/2009/10/configure-ntp-time-server-synchronisation-on-cisco-routers/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 21:48:05 +0000</pubDate>
		<dc:creator>shands</dc:creator>
				<category><![CDATA[Cisco]]></category>
		<category><![CDATA[ntp]]></category>
		<category><![CDATA[time synchronisation]]></category>

		<guid isPermaLink="false">http://www.phirebird.net/?p=155</guid>
		<description><![CDATA[Maybe you want an accurate time source on your internal network for your servers to sync against. Or maybe you just want your Cisco box to report the correct time! In either case &#8211; you&#8217;ll need NTP. First, we&#8217;ll sync the router time against another NTP time source. It&#8217;s as easy as specifying an IP: [...]]]></description>
			<content:encoded><![CDATA[<p>Maybe you want an accurate time source on your internal network for your servers to sync against. Or maybe you just want your Cisco box to report the correct time! In either case &#8211; you&#8217;ll need NTP.</p>
<p>First, we&#8217;ll sync the router time against another NTP time source. It&#8217;s as easy as specifying an IP:</p>
<blockquote><p>phbrtr#conf t<br />
Enter configuration commands, one per line.  End with CNTL/Z.<br />
phbrtr(config)#ntp server <em>&lt;IP address&gt;</em><br />
phbrtr(config)#exit<br />
phbrtr#</p></blockquote>
<p>Incidentally, you can find a list of public NTP servers at:</p>
<blockquote><p><a href="http://support.ntp.org/bin/view/Servers/WebHome">http://support.ntp.org/bin/view/Servers/WebHome</a> </p></blockquote>
<p>To tidy things up, you might want to prevent NTP synchronisation attempts on a per-interface basic. To do this, you can &#8216;ntp disable&#8217; on the relevant interface(s):</p>
<blockquote><p>phbrtr#conf t<br />
Enter configuration commands, one per line.  End with CNTL/Z.<br />
phbrtr(config)#interface fa1/0<br />
phbrtr(config-if)#ntp disable<br />
phbrtr(config-if)#exit<br />
phbrtr(config)#exit</p></blockquote>
<p>Finally, heres how to check that everything&#8217;s working as it should:</p>
<blockquote><p> phbrtr#sh ntp status<br />
Clock is synchronized, stratum 2, reference is 129.6.15.28<br />
nominal freq is 250.0000 Hz, actual freq is 250.0005 Hz, precision is 2**24<br />
reference time is CE89F9F3.27B5E326 (21:21:55.155 GMT Wed Oct 21 2009)<br />
clock offset is -13.4327 msec, root delay is 99.40 msec<br />
root dispersion is 21.27 msec, peer dispersion is 7.83 msec<br />
phbrtr#</p></blockquote>
<p>Are you looking to learn more about Cisco equipment? Well, here&#8217;s a selection of a few books that I&#8217;ve found useful over the years:</p>
<table width="100%">
<tr>
<td valign="top" align="center"><a href="http://www.amazon.co.uk/gp/product/0072263830?ie=UTF8&#038;tag=beabi-21"><img src="http://ecx.images-amazon.com/images/I/51a9cEpt97L._BO2,204,203,200_PIsitb-sticker-arrow-click,TopRight,35,-76_AA150_SH20_OU02_.jpg" border="0"><br />
Cisco: A Beginner&#8217;s Guide</a></td>
<td>&nbsp;</td>
<td valign="top" align="center"><a href="http://www.amazon.co.uk/gp/product/0470110082?ie=UTF8&#038;tag=beabi-21"><img src="http://ecx.images-amazon.com/images/I/51hoZmqfLKL._BO2,204,203,200_PIsitb-sticker-arrow-click,TopRight,35,-76_AA150_SH20_OU02_.jpg" border="0"><br />
CCNA &#8211; Cisco Certified Network Associate Study Guide</a></td>
<td>&nbsp;</td>
<td valign="top" align="center"><a href="http://www.amazon.co.uk/gp/product/076451668X?ie=UTF8&#038;tag=beabi-21"><img src="http://ecx.images-amazon.com/images/I/51yzvygWW8L._BO2,204,203,200_PIsitb-sticker-arrow-click,TopRight,35,-76_AA150_SH20_OU02_.jpg" border="0"><br />
Cisco Networking for Dummies</a></td>
<td>&nbsp;</td>
<td valign="top" align="center"><a href="http://www.amazon.co.uk/gp/product/0596527225?ie=UTF8&#038;tag=beabi-21"><img src="http://ecx.images-amazon.com/images/I/51tMNtlYIeL._BO2,204,203,200_PIsitb-sticker-arrow-click,TopRight,35,-76_AA150_SH20_OU02_.jpg" border="0"><br />
Cisco IOS in a Nutshell &#8211; O&#8217;Reilly</a></td>
</tr>
</table>
<p>&nbsp;</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.phirebird.net/2009/10/configure-ntp-time-server-synchronisation-on-cisco-routers/&amp;n=Configure+NTP+time+server+synchronisation+on+Cisco+routers&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.phirebird.net/2009/10/configure-ntp-time-server-synchronisation-on-cisco-routers/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.phirebird.net/2009/10/configure-ntp-time-server-synchronisation-on-cisco-routers/&amp;title=Configure+NTP+time+server+synchronisation+on+Cisco+routers" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.phirebird.net/2009/10/configure-ntp-time-server-synchronisation-on-cisco-routers/&amp;title=Configure+NTP+time+server+synchronisation+on+Cisco+routers" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.phirebird.net/2009/10/configure-ntp-time-server-synchronisation-on-cisco-routers/&amp;t=Configure+NTP+time+server+synchronisation+on+Cisco+routers" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.phirebird.net/2009/10/configure-ntp-time-server-synchronisation-on-cisco-routers/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.phirebird.net/2009/10/configure-ntp-time-server-synchronisation-on-cisco-routers/&amp;title=Configure+NTP+time+server+synchronisation+on+Cisco+routers" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.phirebird.net/2009/10/configure-ntp-time-server-synchronisation-on-cisco-routers/&amp;title=Configure+NTP+time+server+synchronisation+on+Cisco+routers" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.phirebird.net/2009/10/configure-ntp-time-server-synchronisation-on-cisco-routers/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Configure+NTP+time+server+synchronisation+on+Cisco+routers+-+http://www.phirebird.net/2009/10/configure-ntp-time-server-synchronisation-on-cisco-routers/&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.phirebird.net/2009/10/configure-ntp-time-server-synchronisation-on-cisco-routers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Terminate current VPN sessions on Cisco router/ASA</title>
		<link>http://www.phirebird.net/2009/09/terminate-current-vpn-sessions-on-cisco-routerasa/</link>
		<comments>http://www.phirebird.net/2009/09/terminate-current-vpn-sessions-on-cisco-routerasa/#comments</comments>
		<pubDate>Thu, 17 Sep 2009 18:23:23 +0000</pubDate>
		<dc:creator>shands</dc:creator>
				<category><![CDATA[Cisco]]></category>
		<category><![CDATA[close]]></category>
		<category><![CDATA[disconnect]]></category>
		<category><![CDATA[pptp]]></category>
		<category><![CDATA[session]]></category>
		<category><![CDATA[terminate]]></category>
		<category><![CDATA[user]]></category>
		<category><![CDATA[vpn]]></category>
		<category><![CDATA[vpnd]]></category>

		<guid isPermaLink="false">http://www.phirebird.net/?p=150</guid>
		<description><![CDATA[Many a time I have to kick remote users off a Cisco router / ASA box. This depends on your configuration &#8211; but here&#8217;s how to close one or all VPN user sessions on the PPTP setup we created in an earlier how-to. First, we&#8217;ll check to see who&#8217;s online: phbrtr#sh vpdn session PPTP Session [...]]]></description>
			<content:encoded><![CDATA[<p>Many a time I have to kick remote users off a Cisco router / ASA box. This depends on your configuration &#8211; but here&#8217;s how to close one or all VPN user sessions on the PPTP setup we created in an earlier how-to. First, we&#8217;ll check to see who&#8217;s online:</p>
<blockquote><p>phbrtr#sh vpdn session</p>
<p>PPTP Session Information Total tunnels 1 sessions 1</p>
<p>LocID RemID TunID Intf   Username State    Last Chg    Uniq ID<br />
32       32768   37       Vi3   user            estabd 00:00:18   31<br />
phbrtr#</p></blockquote>
<p>That pesky user!! Lets disconnect him..</p>
<blockquote><p>phbrtr#clear vpdn tunnel pptp id 37<br />
Starting to clear the tunnel<br />
phbrtr#</p></blockquote>
<p>Note here that we&#8217;ve used the TunID from the previous command (in this case &#8211; 37). Another quick &#8216;show vpdn session&#8217; (or for the lazy: &#8216;sh u&#8217;) will show that your user has disappeared.</p>
<p>If you&#8217;ve got a lot of users, looking up their id and clearing can be quite tedious. To clear ALL PPTP sessions:</p>
<blockquote><p>phbrtr#clear vpdn tunnel pptp all<br />
Clear all PPTP tunnels? [confirm]<br />
Starting to clear the tunnel</p>
<p>phbrtr#</p></blockquote>
<p>Simples!</p>
<p>Are you looking to learn more about Cisco equipment? Well, here&#8217;s a selection of a few books that I&#8217;ve found useful over the years:</p>
<table width="100%">
<tr>
<td valign="top" align="center"><a href="http://www.amazon.co.uk/gp/product/0072263830?ie=UTF8&#038;tag=beabi-21"><img src="http://ecx.images-amazon.com/images/I/51a9cEpt97L._BO2,204,203,200_PIsitb-sticker-arrow-click,TopRight,35,-76_AA150_SH20_OU02_.jpg" border="0"><br />
Cisco: A Beginner&#8217;s Guide</a></td>
<td>&nbsp;</td>
<td valign="top" align="center"><a href="http://www.amazon.co.uk/gp/product/0470110082?ie=UTF8&#038;tag=beabi-21"><img src="http://ecx.images-amazon.com/images/I/51hoZmqfLKL._BO2,204,203,200_PIsitb-sticker-arrow-click,TopRight,35,-76_AA150_SH20_OU02_.jpg" border="0"><br />
CCNA &#8211; Cisco Certified Network Associate Study Guide</a></td>
<td>&nbsp;</td>
<td valign="top" align="center"><a href="http://www.amazon.co.uk/gp/product/076451668X?ie=UTF8&#038;tag=beabi-21"><img src="http://ecx.images-amazon.com/images/I/51yzvygWW8L._BO2,204,203,200_PIsitb-sticker-arrow-click,TopRight,35,-76_AA150_SH20_OU02_.jpg" border="0"><br />
Cisco Networking for Dummies</a></td>
<td>&nbsp;</td>
<td valign="top" align="center"><a href="http://www.amazon.co.uk/gp/product/0596527225?ie=UTF8&#038;tag=beabi-21"><img src="http://ecx.images-amazon.com/images/I/51tMNtlYIeL._BO2,204,203,200_PIsitb-sticker-arrow-click,TopRight,35,-76_AA150_SH20_OU02_.jpg" border="0"><br />
Cisco IOS in a Nutshell &#8211; O&#8217;Reilly</a></td>
</tr>
</table>
<p>&nbsp;</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.phirebird.net/2009/09/terminate-current-vpn-sessions-on-cisco-routerasa/&amp;n=Terminate+current+VPN+sessions+on+Cisco+router%2FASA&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.phirebird.net/2009/09/terminate-current-vpn-sessions-on-cisco-routerasa/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.phirebird.net/2009/09/terminate-current-vpn-sessions-on-cisco-routerasa/&amp;title=Terminate+current+VPN+sessions+on+Cisco+router%2FASA" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.phirebird.net/2009/09/terminate-current-vpn-sessions-on-cisco-routerasa/&amp;title=Terminate+current+VPN+sessions+on+Cisco+router%2FASA" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.phirebird.net/2009/09/terminate-current-vpn-sessions-on-cisco-routerasa/&amp;t=Terminate+current+VPN+sessions+on+Cisco+router%2FASA" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.phirebird.net/2009/09/terminate-current-vpn-sessions-on-cisco-routerasa/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.phirebird.net/2009/09/terminate-current-vpn-sessions-on-cisco-routerasa/&amp;title=Terminate+current+VPN+sessions+on+Cisco+router%2FASA" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.phirebird.net/2009/09/terminate-current-vpn-sessions-on-cisco-routerasa/&amp;title=Terminate+current+VPN+sessions+on+Cisco+router%2FASA" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.phirebird.net/2009/09/terminate-current-vpn-sessions-on-cisco-routerasa/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Terminate+current+VPN+sessions+on+Cisco+router%2FASA+-+http://www.phirebird.net/2009/09/terminate-current-vpn-sessions-on-cisco-routerasa/&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.phirebird.net/2009/09/terminate-current-vpn-sessions-on-cisco-routerasa/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Add an email address alias to an Exchange account</title>
		<link>http://www.phirebird.net/2009/08/add-an-email-address-alias-to-an-exchange-account/</link>
		<comments>http://www.phirebird.net/2009/08/add-an-email-address-alias-to-an-exchange-account/#comments</comments>
		<pubDate>Sun, 09 Aug 2009 20:26:41 +0000</pubDate>
		<dc:creator>shands</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[email alias]]></category>
		<category><![CDATA[Exchange]]></category>

		<guid isPermaLink="false">http://www.phirebird.net/?p=111</guid>
		<description><![CDATA[Just a very quick one. Most people probably know this already &#8211; but just to show how to add/manage email address aliases: Fire up &#8220;Active Directory Users &#38; Computers&#8221; Locate the user and look at the objects properties In the Email Addresses tab - you&#8217;ll have a list of various entries. All of the &#8216;SMTP&#8217; type are [...]]]></description>
			<content:encoded><![CDATA[<p>Just a very quick one. Most people probably know this already &#8211; but just to show how to add/manage email address aliases:</p>
<ol>
<li>Fire up &#8220;Active Directory Users &amp; Computers&#8221;</li>
<li>Locate the user and look at the objects properties</li>
<li>In the Email Addresses tab - you&#8217;ll have a list of various entries. All of the &#8216;SMTP&#8217; type are email addresses / aliases. The one in bold is the primary account.</li>
<li>To add a new alias: click New, select &#8216;SMTP address&#8217;, click OK and enter the desired email address.</li>
</ol>
<p>Simples!<br />&nbsp;</p>
<p>Did you find this hint useful? Are you looking to learn more about Exchange? Well, here&#8217;s a few books that I&#8217;ve found useful &#8211; have a goosie!</p>
<table width="100%">
<tr>
<td valign="top" align="center"><a href="http://www.amazon.co.uk/gp/product/0735618992?ie=UTF8&#038;tag=beabi-21"><img src="http://ecx.images-amazon.com/images/I/51LEw9QYy8L._SL100.jpg" border="0"><br />
Microsoft Exchange Server 2003 Training kit</a></td>
<td>&nbsp;</td>
<td valign="top" align="center"><a href="http://www.amazon.co.uk/gp/product/0782142044?ie=UTF8&#038;tag=beabi-21"><img src="http://ecx.images-amazon.com/images/I/51eB7OBs6PL._SL100.jpg" border="0"><br />
Mastering Microsoft Exchange Server 2003</a></td>
<td>&nbsp;</td>
<td valign="top" align="center"><a href="http://www.amazon.co.uk/gp/product/0735624100?ie=UTF8&#038;tag=beabi-21"><img src="http://ecx.images-amazon.com/images/I/51MIdkmNUqL._SL100.jpg" border="0"><br />
Configuring Microsoft Exchange Server 2007 Training Kit</a></td>
<td>&nbsp;</td>
<td valign="top" align="center"><a href="http://www.amazon.co.uk/gp/product/0470398663?ie=UTF8&#038;tag=beabi-21"><img src="http://ecx.images-amazon.com/images/I/51GuaY18p3L._SL100.jpg" border="0"><br />
Microsoft Exchange Server 2007 for Dummies</a></td>
</tr>
</table>
<p>&nbsp;<br />
<br />&nbsp;</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.phirebird.net/2009/08/add-an-email-address-alias-to-an-exchange-account/&amp;n=Add+an+email+address+alias+to+an+Exchange+account&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.phirebird.net/2009/08/add-an-email-address-alias-to-an-exchange-account/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.phirebird.net/2009/08/add-an-email-address-alias-to-an-exchange-account/&amp;title=Add+an+email+address+alias+to+an+Exchange+account" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.phirebird.net/2009/08/add-an-email-address-alias-to-an-exchange-account/&amp;title=Add+an+email+address+alias+to+an+Exchange+account" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.phirebird.net/2009/08/add-an-email-address-alias-to-an-exchange-account/&amp;t=Add+an+email+address+alias+to+an+Exchange+account" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.phirebird.net/2009/08/add-an-email-address-alias-to-an-exchange-account/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.phirebird.net/2009/08/add-an-email-address-alias-to-an-exchange-account/&amp;title=Add+an+email+address+alias+to+an+Exchange+account" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.phirebird.net/2009/08/add-an-email-address-alias-to-an-exchange-account/&amp;title=Add+an+email+address+alias+to+an+Exchange+account" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.phirebird.net/2009/08/add-an-email-address-alias-to-an-exchange-account/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Add+an+email+address+alias+to+an+Exchange+account+-+http://www.phirebird.net/2009/08/add-an-email-address-alias-to-an-exchange-account/&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.phirebird.net/2009/08/add-an-email-address-alias-to-an-exchange-account/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

