<?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>The Open Source Ministry Blog &#187; Personal Notes</title>
	<atom:link href="http://blog.osministry.com/category/personal-notes/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.osministry.com</link>
	<description>Because you can observe a lot just by watching.</description>
	<lastBuildDate>Thu, 18 Feb 2010 04:14:39 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Linux Command Line &#8211; SSH and Telnet</title>
		<link>http://blog.osministry.com/2009/06/08/linux-command-line-ssh-and-telnet/</link>
		<comments>http://blog.osministry.com/2009/06/08/linux-command-line-ssh-and-telnet/#comments</comments>
		<pubDate>Mon, 08 Jun 2009 18:07:08 +0000</pubDate>
		<dc:creator>Bob Brown</dc:creator>
				<category><![CDATA[Personal Notes]]></category>
		<category><![CDATA[Techie]]></category>

		<guid isPermaLink="false">http://blog.osministry.com/2009/06/08/linux-command-line-ssh-and-telnet/</guid>
		<description><![CDATA[I just grabbed this from an old forum post of mine. It was originally written in 2002 or so, but I wanted to post it here as one of my reference items since this blog is where I come to find that stuff anyway.
This covers typical Linux commands used in web hosting.

Telnet vs. SSH
Telnet is [...]]]></description>
			<content:encoded><![CDATA[<p>I just grabbed this from an old forum post of mine. It was originally written in 2002 or so, but I wanted to post it here as one of my reference items since this blog is where I come to find that stuff anyway.</p>
<p>This covers typical Linux commands used in web hosting.</p>
<p><span id="more-537"></span></p>
<p><span style="color: darkblue"><span style="font-size: 11pt; line-height: 100%"><strong>Telnet vs. SSH</strong></span></span></p>
<p>Telnet is an insecure way of accessing the server command line and is therefore not an option. SSH (Secure Shell) is a secure replacement for Telnet which gives the same type of access.</p>
<p><span style="color: darkblue"><span style="font-size: 11pt; line-height: 100%"><strong>Accessing SSH</strong></span></span></p>
<p>SSH can be accessed by an applet included in certain cPanel themes. It is preferable to access through an SSH program installed on your own computer.</p>
<p>Mac OSX users can open a terminal window and enter <strong><em>ssh -l username yourdomain.com</em></strong></p>
<p><span style="color: darkblue"><span style="font-size: 11pt; line-height: 100%"><strong>Useful commands</strong></span></span></p>
<p>When using SSH you are accessing the server&#8217;s command line (Similar to MSDOS).<br />
Here is a short list of commonly used commands:<br />
(tip: when using Putty you can use the &#8220;right click&#8221; to copy and paste commands and information)</p>
<p><strong><em>man</em></strong><br />
Display command manual (use: man [command])<br />
To exit from the manual use the &#8216;<em>q</em>&#8216; key.</p>
<p><strong><em>logout</em></strong><br />
Logout of SSH</p>
<p><strong><em>exit</em></strong><br />
Logout of SSH</p>
<p><strong><em>Ctrl + C</em></strong><br />
End current command</p>
<p><strong><em>dir</em></strong><br />
Directory listing</p>
<p><strong><em>ls</em></strong><br />
Better directory listing with more options (type &#8220;man ls&#8221; for more information. Note: The &#8220;l&#8221; is an &#8220;L&#8221;<br />
<em>ls -al</em> is what I normally use.</p>
<p><strong><em>cp source.file destination.file</em></strong><br />
Copies a file from one location to another</p>
<p><strong><em>mv source.file destination.file</em></strong><br />
Moves a file from one location to another.<br />
It copies it to the new location and deletes the original one</p>
<p><strong><em>chmod</em></strong><br />
Changes the permissions on a file.<br />
I prefer doing this through FTP and would recommend that for newbies as well.</p>
<p><strong><em>chown</em></strong><br />
Changes the User and/or Group ownership for a file.</p>
<p><strong><em>tar -cpzf filename.tar.gz</em></strong><br />
Tar (compress a number of files into one file) the current directory<br />
Replace &#8220;filename&#8221; with an appropriate name.</p>
<p><strong><em>tar -xzpf filename.tar.gz</em></strong><br />
Untar (uncompress a number of files out of one file) a file<br />
Replace &#8220;filename&#8221; with the file&#8217;s name.</p>
<p><strong><em>lynx</em></strong><br />
Lynx is a text based browser installed on the server that can be accessed via the command line or by cron.</p>
<p><strong><em>cd /home/username</em></strong><br />
Navigate into a directory on the server (~ Navigate to your home directory, you can use &#8220;~&#8221; as part of the path: cd ~/public_html.<br />
Replace &#8220;/home/username&#8221; with the appropriate directory.</p>
<p><strong><em>whereis [function]</em></strong><br />
The easiest way to find the actual path to perl, sendmail, etc<br />
Replace &#8220;[function]&#8221; with the function name e.g. &#8220;sendmail&#8221;.</p>
<p><strong><em>rm</em></strong><br />
Remove/delete (use rm -r to delete recursive directories. Type &#8220;rm &#8211;help&#8221; for full help, there is no way to undelete)</p>
<p><strong><em>top</em></strong><br />
List running processes and check server load (type <strong>h</strong> for help and <strong>q</strong> to exit the &#8220;top&#8221; display.</p>
<p><strong><em>mysqldump -u[Username] -p[Password] [Database Name] &lt; filename.sql</em></strong><br />
Dump a SQL file into a MySQL database. Note the &#8220;&lt;&#8221;.<br />
Replace &#8220;[Username]&#8221; with the database username (generally controlpaneluser_databaseuser). Replace &#8220;[Password]&#8221; with the database password and replace &#8220;[Database Name]&#8221; with the database name. Finally change &#8220;filename.sql&#8221; to the correct filename/location.</p>
<p><strong><em>mysqldump -u[Username] -p[Password] [Database Name] &gt; filename.sql</em></strong><br />
Dump a MySQL database to a SQL file. Note the &#8220;&gt;&#8221;.<br />
Replace &#8220;[Username]&#8221; with the database username (generally controlpaneluser_databaseuser). Replace &#8220;[Password]&#8221; with the database password and replace &#8220;[Database Name]&#8221; with the database name. Finally change &#8220;filename.sql&#8221; to the correct filename/location.</p>
<p><strong><em>mkdir directory_name</em></strong><br />
Make directory<br />
Replace &#8220;directory_name&#8221; with the directory you want to create&#8217; name.</p>
<p><strong><em>ln -s real/path [link name]</em></strong><br />
Create a symlink to a path<br />
Replace &#8220;real/path&#8221; with the physical (real) path to the file. For example /home/user/downloads. Also replace &#8220;[link name]&#8221; with what you would like the symlink to be called. To remove the sym link use &#8220;rm [link name]&#8220;.</p>
<p><strong><em>pico [filename]</em></strong><br />
Easy to use text editor to edit files<br />
Replace &#8220;(filename)&#8221; with the filename to open e.g. &#8220;pico file.txt&#8221;<br />
<strong><em>vi</em></strong> and <strong><em>vim</em></strong> are also available on many servers.</p>
<p><strong><em>wget <a href="http://www.example.com/" target="_blank">http://www.example.com</a></em></strong><br />
Wget can grab files from a web site or even the entire website in its directory structure and copy them to your server. Type <strong>man wget</strong> to see all of your options.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.osministry.com/2009/06/08/linux-command-line-ssh-and-telnet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Installer Service in Safemode</title>
		<link>http://blog.osministry.com/2009/04/29/windows-installer-service-in-safemode/</link>
		<comments>http://blog.osministry.com/2009/04/29/windows-installer-service-in-safemode/#comments</comments>
		<pubDate>Wed, 29 Apr 2009 04:39:06 +0000</pubDate>
		<dc:creator>Bob Brown</dc:creator>
				<category><![CDATA[Personal Notes]]></category>
		<category><![CDATA[Techie]]></category>

		<guid isPermaLink="false">http://blog.osministry.com/2009/04/29/windows-installer-service-in-safemode/</guid>
		<description><![CDATA[I&#8217;ve not tried this yet, but it is worth noting here.
Tip: How to install and uninstall a program in Safe Mode
Contents of file.reg:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SafeBoot\Minimal\MSIServer]
@=”Service”
Also worth noting: Run &#62; Net Start msiserver
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve not tried this yet, but it is worth noting here.</p>
<p><a href="http://4sysops.com/archives/tip-how-to-install-and-uninstall-a-program-in-safe-mode/">Tip: How to install and uninstall a program in Safe Mode</a></p>
<p>Contents of file.reg:</p>
<blockquote><p>Windows Registry Editor Version 5.00</p>
<p>[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SafeBoot\Minimal\MSIServer]<br />
@=”Service”</p></blockquote>
<p>Also worth noting: Run &gt; Net Start msiserver</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.osministry.com/2009/04/29/windows-installer-service-in-safemode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Page filled with registry tweaks and edits</title>
		<link>http://blog.osministry.com/2009/03/20/page-filled-with-registry-tweaks-and-edits/</link>
		<comments>http://blog.osministry.com/2009/03/20/page-filled-with-registry-tweaks-and-edits/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 18:41:22 +0000</pubDate>
		<dc:creator>Bob Brown</dc:creator>
				<category><![CDATA[Personal Notes]]></category>

		<guid isPermaLink="false">http://blog.osministry.com/2009/03/20/page-filled-with-registry-tweaks-and-edits/</guid>
		<description><![CDATA[Registry Tweaks and Edits
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.kellys-korner-xp.com/xp_tweaks.htm">Registry Tweaks and Edits</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.osministry.com/2009/03/20/page-filled-with-registry-tweaks-and-edits/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Who&#8217;s that MAC?</title>
		<link>http://blog.osministry.com/2009/03/16/whos-that-mac/</link>
		<comments>http://blog.osministry.com/2009/03/16/whos-that-mac/#comments</comments>
		<pubDate>Tue, 17 Mar 2009 03:11:41 +0000</pubDate>
		<dc:creator>Bob Brown</dc:creator>
				<category><![CDATA[Personal Notes]]></category>

		<guid isPermaLink="false">http://blog.osministry.com/2009/03/16/whos-that-mac/</guid>
		<description><![CDATA[Another item I looked for on the blog. The search page for finding the manufacturer of a network adapter based on its MAC address
Vendor/Ethernet/Bluetooth MAC Address Lookup and Search 
]]></description>
			<content:encoded><![CDATA[<p>Another item I looked for on the blog. The search page for finding the manufacturer of a network adapter based on its MAC address</p>
<p><a href="http://www.coffer.com/mac_find/">Vendor/Ethernet/Bluetooth MAC Address Lookup and Search </a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.osministry.com/2009/03/16/whos-that-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>List of Available TCP and UDP Ports</title>
		<link>http://blog.osministry.com/2009/03/16/list-of-available-tcp-and-udp-ports/</link>
		<comments>http://blog.osministry.com/2009/03/16/list-of-available-tcp-and-udp-ports/#comments</comments>
		<pubDate>Mon, 16 Mar 2009 15:19:41 +0000</pubDate>
		<dc:creator>Bob Brown</dc:creator>
				<category><![CDATA[Personal Notes]]></category>

		<guid isPermaLink="false">http://blog.osministry.com/2009/03/16/list-of-available-tcp-and-udp-ports/</guid>
		<description><![CDATA[Personal Note: Link to list of TCP and UDP ports.
I tend to search on the blog for this link, but I can never find it. That is because I never linked it here. So, here it is.
Wikipedia listing of TCP and UDP ports.
I usually expect to find it on the post about using a different [...]]]></description>
			<content:encoded><![CDATA[<p>Personal Note: Link to list of TCP and UDP ports.</p>
<p>I tend to search on the blog for this link, but I can never find it. That is because I never linked it here. So, here it is.</p>
<p><a href="http://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers">Wikipedia listing of TCP and UDP ports</a>.</p>
<p>I usually expect to find it on the post about using a different Remote Desktop ( RDP ) port: <a href="http://blog.osministry.com/2007/07/26/changing-remote-desktop-port/">Changing Remote Desktop Port</a>.</p>
<p>That should be enough key words for my searches.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.osministry.com/2009/03/16/list-of-available-tcp-and-udp-ports/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Notes from the FLCITRT</title>
		<link>http://blog.osministry.com/2009/02/09/notes-from-the-flcitrt/</link>
		<comments>http://blog.osministry.com/2009/02/09/notes-from-the-flcitrt/#comments</comments>
		<pubDate>Tue, 10 Feb 2009 03:20:13 +0000</pubDate>
		<dc:creator>Bob Brown</dc:creator>
				<category><![CDATA[Arena]]></category>
		<category><![CDATA[Personal Notes]]></category>
		<category><![CDATA[Podcasting]]></category>
		<category><![CDATA[Techie]]></category>

		<guid isPermaLink="false">http://blog.osministry.com/2009/02/09/notes-from-the-flcitrt/</guid>
		<description><![CDATA[I wrote my Florida Church IT Round Table notes inside the wiki for the schedule so they could be shared. However, I think it is a good idea to keep my own copy of notes like these. Since this blog is my notepad, I might as well copy them here.

Cloud Services
discussion led initially by Tim [...]]]></description>
			<content:encoded><![CDATA[<p>I wrote my <a href="http://fl.citrt.org/" target="_blank">Florida Church IT Round Table</a> notes inside the wiki for the schedule so they could be shared. However, I think it is a good idea to keep my own copy of notes like these. Since this blog is my notepad, I might as well copy them here.</p>
<p><span id="more-524"></span></p>
<p><strong>Cloud Services</strong><br />
discussion led initially by Tim Whitehorn from <a href="http://www.ServiceU.com">http://www.ServiceU.com</a></p>
<p><a href="http://blog.osministry.com/2009/01/29/signusupcom-is-going-today/">SignUsUp.com</a> going out of business.</p>
<p>Wireless syncing to phones: <a href="https://www.nuevasync.com/">https://www.nuevasync.com/</a></p>
<p>Issues with single sign-on:</p>
<p>ServiceU looking at <a href="http://openid.net/">OpenID</a></p>
<p>Online Storage:</p>
<p>S3</p>
<blockquote></blockquote>
<p><a href="http://www.wuala.com/">Waula</a> &#8211; <a href="http://www.youtube.com/watch?v=3xKZ4KGkQY8">Video</a></p>
<p>Smugmug (they were comped a pro account as a church) site matches church site</p>
<p><span class="msgtxt en" id="msgtxt1149245098">    Microsoft SkyDrive and LiveSync</span></p>
<p>GDrive potentially leaving Rumorware status</p>
<p><span class="msgtxt en">     </span></p>
<p><span class="msgtxt en">Podcasting: </span></p>
<p><span class="msgtxt en">    Off site servers with iTunes</span></p>
<p><span class="msgtxt en">    AMSI &#8211; <a href="http://www.flycast.fm">http://www.flycast.fm</a><br />
</span></p>
<p><a href="http://mosso.com/">Mosso.com</a> &#8211; allows multiple server technologies (Windows/Linux) for ASP, .net, PHP , etc on same service</p>
<p><a href="http://dreamhost.com/">Dreamhost.com</a> &#8211; Lots of storage and some good features. Free for non-profits, I can get you a discount if you are interested (post in comments)<a href="http://dreamhost.com/"><br />
</a></p>
<p><a href="http://site5.com/">site5.com</a></p>
<p>&#8212;&#8211;</p>
<p><strong>Church Management Software </strong></p>
<p>We sort of drifted into this topic as the next time period started up</p>
<p><a href="http://www.acstechnologies.com/products/accessacs">ACS Technologies</a> &#8211; See <a href="http://jeffsuever.wordpress.com/2009/01/06/facility-scheduler-calendar-links/">Jeff</a></p>
<p><a href="http://arenachms.com/">http://ArenaCHMS.com</a> &#8211; My church is using ArenaCHMS<a href="http://arenachms.com/"><br />
</a></p>
<p><a href="https://www.fellowshipone.com/">https://www.fellowshipone.com</a></p>
<p>&#8212;-</p>
<p><strong>Firewalls</strong></p>
<p>Focusing primarily on free options, but some mention of other options.</p>
<p><a href="http://gochristfellowship.com/">Christ Fellowship</a> is doing a Round Robin connection through 2 Comcast accounts and reliable AT&amp;T connections.</p>
<p><a href="http://www.freebsd.org" target="_blank">FreeBSD</a></p>
<ul>
<li><a href="http://www.freebsd.org/doc/en/books/handbook/firewalls-pf.html" target="_blank">Packetfilter</a></li>
<li><a href="http://www.squid-cache.org/Intro/" target="_blank">Squid Proxy</a> (<a href="http://dansguardian.org/?page=introduction" target="_blank">Dan&#8217;s Guardian</a>)</li>
</ul>
<p>PFSense <a href="http://www.pfsense.com/">http://www.pfsense.com/</a> &#8211; FreeBSD based firewall system<a href="http://www.pfsense.com/"><br />
</a></p>
<p>SonicWall <a href="http://www.sonicwall.com/">http://www.sonicwall.com/</a> &#8211; not free.<a href="http://www.sonicwall.com/"><br />
</a></p>
<p>OpenDNS <a href="http://www.opendns.com/">http://www.opendns.com/</a> &#8211; Free options available. Not really a firewall, but provides DNS filtering.<a href="http://www.opendns.com/"><br />
</a></p>
<p>Others mentioned:  <a href="http://www.cisco.com/en/US/products/hw/vpndevc/ps2030/" target="_blank">Cisco PIX</a> and <a href="http://www.astaro.com/" target="_blank">Astaro</a> (Astaro has a free version you can install to test on your own hardware or you can get one of their appliances)</p>
<p>&#8212;-</p>
<p><strong>Open Source Software Discussion </strong></p>
<p id="wikipage" class="box wikistyle">&nbsp;</p>
<p id="wikipage-inner">Impromptu Open Source Conversation and IT Management</p>
<p><a href="http://www.asterisk.org/">Asterisk</a> (<a href="http://www.switchvox.com/">SwitchVox</a>) PBX phone system (Christ Fellowhip starting to use), there is a church tying Asterisk to Arena and other church management systems for call center style autodialing.</p>
<p><a href="http://www.spiceworks.com/">http://www.spiceworks.com/</a> IT Management</p>
<p><a href="http://www.sysaid.com/">http://www.sysaid.com/</a></p>
<p>&#8212;-</p>
<p><strong>Crafting an IT Strategy</strong></p>
<p id="wikipage" class="box wikistyle">&nbsp;</p>
<p id="wikipage-inner">Getting IT connected into ministry</p>
<ul>
<li>Making staff comfortable</li>
<li>Making staff competent</li>
</ul>
<p>Getting the IT in the church connected</p>
<ul>
<li>Breaking down silos to make teams work together</li>
</ul>
<p>Strategy is hindered by a firefighter situation</p>
<p>Strategy is not looking at a tool, but going toward a goal.</p>
<ul>
<li>What is a proper IT goal?</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.osministry.com/2009/02/09/notes-from-the-flcitrt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Note: Virus Definitions Link</title>
		<link>http://blog.osministry.com/2009/02/02/note-virus-definitions-link/</link>
		<comments>http://blog.osministry.com/2009/02/02/note-virus-definitions-link/#comments</comments>
		<pubDate>Mon, 02 Feb 2009 20:03:33 +0000</pubDate>
		<dc:creator>Bob Brown</dc:creator>
				<category><![CDATA[Personal Notes]]></category>
		<category><![CDATA[Techie]]></category>

		<guid isPermaLink="false">http://blog.osministry.com/2009/02/02/note-virus-definitions-link/</guid>
		<description><![CDATA[I use this blog for personal notes that I can refer to in the future, but also so I can share them with others.
Shortcut to Norton Symantec Antivirus Rapid Release Definition Updates
Direct link to symrapidreleasedefsi32.exe
Also of interest, a link to the Microsoft Malicious Software Removal Tool. Someone just handed me a laptop that is 7 [...]]]></description>
			<content:encoded><![CDATA[<p>I use this blog for personal notes that I can refer to in the future, but also so I can share them with others.</p>
<p>Shortcut to <a href="http://www.symantec.com/business/security_response/definitions/download/detail.jsp?gid=rr">Norton Symantec Antivirus Rapid Release Definition Updates</a></p>
<p>Direct link to <a href="http://definitions.symantec.com/defs/rapidrelease/symrapidreleasedefsi32.exe">symrapidreleasedefsi32.exe</a></p>
<p>Also of interest, a link to the <a href="http://www.microsoft.com/security/malwareremove/default.mspx">Microsoft Malicious Software Removal Tool</a>. Someone just handed me a laptop that is 7 months out of date.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.osministry.com/2009/02/02/note-virus-definitions-link/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Moment of Irony</title>
		<link>http://blog.osministry.com/2007/12/10/a-moment-of-irony/</link>
		<comments>http://blog.osministry.com/2007/12/10/a-moment-of-irony/#comments</comments>
		<pubDate>Mon, 10 Dec 2007 21:48:58 +0000</pubDate>
		<dc:creator>Bob Brown</dc:creator>
				<category><![CDATA[Personal Notes]]></category>

		<guid isPermaLink="false">http://blog.osministry.com/2007/12/10/a-moment-of-irony/</guid>
		<description><![CDATA[It is December and I am cleaning out a build-up of digital detritus and coprolite. While clearing through some old emails I found the following message that I saved a long time ago.
If you are missing a CD entitled “Where Nothing Can Go Wrong” please let me know.
The cleaning crew found it.
Now I can delete [...]]]></description>
			<content:encoded><![CDATA[<p>It is December and I am cleaning out a build-up of digital detritus and coprolite. While clearing through some old emails I found the following message that I saved a long time ago.</p>
<blockquote><p>If you are missing a CD entitled “Where Nothing Can Go Wrong” please let me know.<br />
The cleaning crew found it.</p></blockquote>
<p>Now I can delete that email.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.osministry.com/2007/12/10/a-moment-of-irony/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Clean Printer Cartridges with WD-40</title>
		<link>http://blog.osministry.com/2007/09/28/clean-printer-cartridges-with-wd-40/</link>
		<comments>http://blog.osministry.com/2007/09/28/clean-printer-cartridges-with-wd-40/#comments</comments>
		<pubDate>Fri, 28 Sep 2007 14:45:36 +0000</pubDate>
		<dc:creator>Bob Brown</dc:creator>
				<category><![CDATA[Personal Notes]]></category>
		<category><![CDATA[Techie]]></category>

		<guid isPermaLink="false">http://blog.osministry.com/2007/09/28/clean-printer-cartridges-with-wd-40/</guid>
		<description><![CDATA[We have these huge efficient printers located throughout the building for everyone to use. They print inexpensively even in gorgeous color. The first time I printed to the one near my office I had accidentally left it set to color and felt ashamed that I had wasted such beauty on horendous web advertisements.
In spite of [...]]]></description>
			<content:encoded><![CDATA[<p>We have these huge efficient printers located throughout the building for everyone to use. They print inexpensively even in gorgeous color. The first time I printed to the one near my office I had accidentally left it set to color and felt ashamed that I had wasted such beauty on horendous web advertisements.</p>
<p>In spite of all these printers located in each of the office areas we still have several dozen expensive, slow, noisy, and lousy printers on everyones personal desk as well. Why bother walking 10 feet when you can get less for more.</p>
<p>My problem with printers is that they soon get to the point that the more-expensive-than-gold ink gets clogged in one of the color channels and I have a dead $40 cartridge that has provided me with $2 worth of value over its pitiful life.</p>
<p>A West Virginia Blogger has posted about <a href="http://www.bloggingwv.com/yet-another-use-for-wd-40/" target="_blank">cleaning your print cartridge with WD-40</a>. Found via <a href="http://lifehacker.com/software/clever-uses/clean-inkjet-printer-cartridges-with-wd+40-303736.php" target="_blank">Lifehacker</a> where there are many more cleaning suggestions in the comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.osministry.com/2007/09/28/clean-printer-cartridges-with-wd-40/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changing Remote Desktop Port</title>
		<link>http://blog.osministry.com/2007/07/26/changing-remote-desktop-port/</link>
		<comments>http://blog.osministry.com/2007/07/26/changing-remote-desktop-port/#comments</comments>
		<pubDate>Thu, 26 Jul 2007 15:18:12 +0000</pubDate>
		<dc:creator>Bob Brown</dc:creator>
				<category><![CDATA[Personal Notes]]></category>
		<category><![CDATA[Techie]]></category>

		<guid isPermaLink="false">http://blog.osministry.com/2007/07/26/changing-remote-desktop-port/</guid>
		<description><![CDATA[I keep looking for this information on the blog here and forgetting that it is actually in the forum here: VPN&#8217;s.
So, without further ado, I will post it here as well (note: I am not using the port mentioned here).
Notes:  You can change the listening port for remote desktop
Then connect on that port
To set [...]]]></description>
			<content:encoded><![CDATA[<p>I keep looking for this information on the blog here and forgetting that it is actually in the forum here: <a href="http://osministry.com/forum/index.php?showtopic=1626" target="_blank">VPN&#8217;s</a>.</p>
<p>So, without further ado, I will post it here as well (note: I am not using the port mentioned here).</p>
<p>Notes:  You can <a href="http://support.microsoft.com/default.aspx?scid=kb;en-us;306759" target="_blank">change the listening port for remote desktop</a><br />
Then <a href="http://support.microsoft.com/kb/304304/" target="_blank">connect on that port</a></p>
<p>To set up remote desktop on port 3053 instead of <span class="searchlite">3389</span></p>
<p>Using regedit (if you don&#8217;t know what that is then don&#8217;t do this) change:<br />
<strong>HKEY_LOCAL_MACHINE<br />
\System<br />
\CurrentControlSet<br />
\Control<br />
\TerminalServer<br />
\WinStations<br />
\RDP-Tcp<br />
\PortNumber</strong><br />
to <strong>3053</strong> (or <strong>bed</strong> in Hexadecimal).<br />
Reboot Windows to make sure the setting took properly<br />
Open port 3053 on the Windows firewall</p>
<p>Set the IP address so that a future reboot would not give me a new IP.</p>
<p>Open 3053 on the router&#8217;s firewall and point at the IP set for the computer.</p>
<p>To test it I connected to my home computer and then had it connect back to the computer here using domain.com:3053 and it worked. It was dead slow, but it worked.</p>
<p>Just a note that even a fast internet connection gets sluggish when you are connecting both directions over RDP.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.osministry.com/2007/07/26/changing-remote-desktop-port/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
