<?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>Computer Plumber &#187; Mac</title>
	<atom:link href="http://computerplumber.com/category/mac/feed/" rel="self" type="application/rss+xml" />
	<link>http://computerplumber.com</link>
	<description></description>
	<lastBuildDate>Sat, 21 Jan 2012 02:54:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How to change the default SSH port in Lion</title>
		<link>http://computerplumber.com/2012/01/how-to-change-the-default-ssh-port-in-lion/</link>
		<comments>http://computerplumber.com/2012/01/how-to-change-the-default-ssh-port-in-lion/#comments</comments>
		<pubDate>Sat, 21 Jan 2012 02:51:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[Leopard]]></category>
		<category><![CDATA[Leopard Server]]></category>
		<category><![CDATA[Lion Server]]></category>
		<category><![CDATA[ssh]]></category>

		<guid isPermaLink="false">http://computerplumber.com/?p=687</guid>
		<description><![CDATA[So you don&#8217;t want to have your remote login port (ssh port) on your Lion server setup to port 22. You can easily change the listening port doing the following 2 steps. There is no need to add another service. First you will need to edit your Lion Services file: sudo nano /etc/services Search for [...]]]></description>
		<wfw:commentRss>http://computerplumber.com/2012/01/how-to-change-the-default-ssh-port-in-lion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Open Directory Users on Lion Cannot Change Passwords</title>
		<link>http://computerplumber.com/2012/01/open-directory-users-on-lion-cannot-change-passwords/</link>
		<comments>http://computerplumber.com/2012/01/open-directory-users-on-lion-cannot-change-passwords/#comments</comments>
		<pubDate>Fri, 20 Jan 2012 20:42:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Directory Services]]></category>
		<category><![CDATA[LDAP]]></category>
		<category><![CDATA[Lion Server]]></category>
		<category><![CDATA[Open Directory]]></category>
		<category><![CDATA[OS X]]></category>

		<guid isPermaLink="false">http://computerplumber.com/?p=680</guid>
		<description><![CDATA[We recently ran into an issue with Open Directory Users on Apple&#8217;s OSX Lion. Users were not able to change their passwords using the web interface on a fresh install of Lion with Open Directory. The error we were receiving is below: com.apple.passwordreset (2012-01-20 14:00:09,100): Could not change password for user (johnsmith) com.apple.passwordreset (2012-01-20 14:00:09,104): [...]]]></description>
		<wfw:commentRss>http://computerplumber.com/2012/01/open-directory-users-on-lion-cannot-change-passwords/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FTP script to automate file transfers to remote server</title>
		<link>http://computerplumber.com/2012/01/ftp-script-to-automate-file-transfers/</link>
		<comments>http://computerplumber.com/2012/01/ftp-script-to-automate-file-transfers/#comments</comments>
		<pubDate>Wed, 18 Jan 2012 03:22:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[file sharing]]></category>
		<category><![CDATA[files]]></category>
		<category><![CDATA[ftp]]></category>
		<category><![CDATA[scripts]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://computerplumber.com/?p=670</guid>
		<description><![CDATA[Below you will find a FTP script that will allow you to automate your files transfers without requiring any user input. The only problem with this method is you will be putting a username and password into the script file, but having a simple automated FTP file upload or FTP file download probably outweighs the [...]]]></description>
		<wfw:commentRss>http://computerplumber.com/2012/01/ftp-script-to-automate-file-transfers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apache redirect for wildcard domains</title>
		<link>http://computerplumber.com/2012/01/apache-redirect-for-wildcard-domains/</link>
		<comments>http://computerplumber.com/2012/01/apache-redirect-for-wildcard-domains/#comments</comments>
		<pubDate>Mon, 09 Jan 2012 23:40:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[redirects]]></category>

		<guid isPermaLink="false">http://computerplumber.com/?p=660</guid>
		<description><![CDATA[We recently had to redirect a wildcard domain to another wildcard domain using Apache redirects. It is assumed you have already enabled mod_rewrite, if not make sure you enable that apache module before you try adding this rule. RewriteEngine On RewriteRule ^([A-Za-z0-9-]+)\.domain1\.com?$ http://%1.domain2.com$1 Now there are certainly other versions of this rule (add below), but [...]]]></description>
		<wfw:commentRss>http://computerplumber.com/2012/01/apache-redirect-for-wildcard-domains/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WinSCP program for Mac</title>
		<link>http://computerplumber.com/2010/01/winscp-program-for-mac/</link>
		<comments>http://computerplumber.com/2010/01/winscp-program-for-mac/#comments</comments>
		<pubDate>Thu, 07 Jan 2010 20:34:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[sftp]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[winSCP]]></category>

		<guid isPermaLink="false">http://computerplumber.com/?p=652</guid>
		<description><![CDATA[WinSCP is a great program for Windows that will give you a GUI interface to manage files on a remote server when all you can use to connect is SSH. Having grown fond of this program a colleague was sad to find there was no version for MAC. After playing with several different options, they [...]]]></description>
		<wfw:commentRss>http://computerplumber.com/2010/01/winscp-program-for-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing Mongrel with Ruby 1.9</title>
		<link>http://computerplumber.com/2009/08/installing-mongrel-with-ruby19/</link>
		<comments>http://computerplumber.com/2009/08/installing-mongrel-with-ruby19/#comments</comments>
		<pubDate>Thu, 27 Aug 2009 15:27:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Rails]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[Error]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://computerplumber.com/?p=635</guid>
		<description><![CDATA[Installing mongrel on ruby 1.9 has caused problems for many different people as has been reported on isitruby19.com. Running gem install mongrel produces the following error. http11.c: In function &#8216;http_field&#8217;: http11.c:77: error: &#8216;struct RString&#8217; has no member named &#8216;ptr&#8217; http11.c:77: error: &#8216;struct RString&#8217; has no member named &#8216;len&#8217; http11.c:77: warning: left-hand operand of comma expression [...]]]></description>
		<wfw:commentRss>http://computerplumber.com/2009/08/installing-mongrel-with-ruby19/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to control Windows with Apple Remote Desktop</title>
		<link>http://computerplumber.com/2009/07/how-to-control-windows-with-apple-remote-desktop/</link>
		<comments>http://computerplumber.com/2009/07/how-to-control-windows-with-apple-remote-desktop/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 19:01:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Windows 2000]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows NT]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[Windows XP]]></category>

		<guid isPermaLink="false">http://computerplumber.com/?p=610</guid>
		<description><![CDATA[If you do not want to use the Microsoft Remote Desktop application as detailed here. You can do the following to allow you to control Windows via Apple&#8217;s Remote Desktop application. Install RealVNC Server (www.realvnc.com or www.tightvnc.com) on your Windows PC. Once installed it will appear in the tray area of the taskbar or in [...]]]></description>
		<wfw:commentRss>http://computerplumber.com/2009/07/how-to-control-windows-with-apple-remote-desktop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VMware Fusion cannot connect to the virtual machine</title>
		<link>http://computerplumber.com/2009/05/vmware-fusion-cannot-connect-to-the-virtual-machine/</link>
		<comments>http://computerplumber.com/2009/05/vmware-fusion-cannot-connect-to-the-virtual-machine/#comments</comments>
		<pubDate>Wed, 27 May 2009 09:23:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Virtual]]></category>
		<category><![CDATA[Error]]></category>
		<category><![CDATA[OS X]]></category>
		<category><![CDATA[VMware Fusion 2]]></category>

		<guid isPermaLink="false">http://blog.computerplumber.ca/?p=458</guid>
		<description><![CDATA[After having a Mac Book pro crash and subsequently get repaired with a new logic board, we found that the virtual machines on the computer would not start at all. This problem started happening just before the computer fatally crashed before needing repair, but persisted after the logic board was replaced. The exact error VMware [...]]]></description>
		<wfw:commentRss>http://computerplumber.com/2009/05/vmware-fusion-cannot-connect-to-the-virtual-machine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WMV Playback on MAC</title>
		<link>http://computerplumber.com/2009/04/wmv-playback-on-mac/</link>
		<comments>http://computerplumber.com/2009/04/wmv-playback-on-mac/#comments</comments>
		<pubDate>Fri, 17 Apr 2009 22:20:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[file sharing]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Network]]></category>
		<category><![CDATA[OS X]]></category>
		<category><![CDATA[Safari]]></category>

		<guid isPermaLink="false">http://blog.computerplumber.ca/?p=373</guid>
		<description><![CDATA[There are many options for what to use to play WMV files on OS X. The first of these is Flip4Mac which is a plugin for Quicktime. With Windows Media® Components for QuickTime, by Flip4Mac™, you can play Windows Media files (.wma and .wmv) directly in QuickTime Player and view Windows Media content on the [...]]]></description>
		<wfw:commentRss>http://computerplumber.com/2009/04/wmv-playback-on-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adjust What the History Command Shows</title>
		<link>http://computerplumber.com/2009/02/adjust-what-the-history-command-shows/</link>
		<comments>http://computerplumber.com/2009/02/adjust-what-the-history-command-shows/#comments</comments>
		<pubDate>Sat, 14 Feb 2009 03:41:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[Leopard Server]]></category>
		<category><![CDATA[OS X]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false">http://blog.computerplumber.ca/?p=389</guid>
		<description><![CDATA[By default on OS X, the history command (accessed via the terminal) shows the last 500 commands including multiple entries that are the exact same. Just to find an old useful command, you may have to sort through 100&#8242;s of ls and cd commands. Wouldn&#8217;t it be nice to show only unique commands, and remove [...]]]></description>
		<wfw:commentRss>http://computerplumber.com/2009/02/adjust-what-the-history-command-shows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

