<?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>Geekologist - Your Technology Forecast! &#187; virtual machine</title>
	<atom:link href="http://geekologist.net/tag/virtual-machine/feed/" rel="self" type="application/rss+xml" />
	<link>http://geekologist.net</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Fri, 11 Sep 2009 02:26:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Sending Notifications from mIRC to Growl</title>
		<link>http://geekologist.net/2009/04/sending-notifications-from-mirc-to-growl/</link>
		<comments>http://geekologist.net/2009/04/sending-notifications-from-mirc-to-growl/#comments</comments>
		<pubDate>Thu, 16 Apr 2009 04:38:43 +0000</pubDate>
		<dc:creator>whoknew</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[iPocalypse]]></category>
		<category><![CDATA[geekologist]]></category>
		<category><![CDATA[geekology]]></category>
		<category><![CDATA[Growl Notifications]]></category>
		<category><![CDATA[GrowlNotify]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[mIRC]]></category>
		<category><![CDATA[mIRC on mac]]></category>
		<category><![CDATA[mIRC scripting]]></category>
		<category><![CDATA[mIRC to Growl]]></category>
		<category><![CDATA[os x]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[Send Notifications]]></category>
		<category><![CDATA[SSH]]></category>
		<category><![CDATA[virtual machine]]></category>
		<category><![CDATA[Windows XP]]></category>

		<guid isPermaLink="false">http://geekologist.net/?p=893</guid>
		<description><![CDATA[First please watch the video above as it will help you better understand the tools required to get this job done correctly. I have always had the issue of Mac OS X not having the best IRC clients. So I decided to start using mIRC within a VM (Virtual Machine) Running windows XP. However the [...]


Related posts:<ol><li><a href='http://geekologist.net/2009/01/dock-spaces-review/' rel='bookmark' title='Permanent Link: Dock Spaces Review'>Dock Spaces Review</a></li>
<li><a href='http://geekologist.net/2009/07/att-mms-and-iphone-os-3-1/' rel='bookmark' title='Permanent Link: AT&#038;T/MMS and iPhone OS 3.1'>AT&#038;T/MMS and iPhone OS 3.1</a></li>
<li><a href='http://geekologist.net/2009/03/ubuntu-alpha-brings-notifications-to-the-mix/' rel='bookmark' title='Permanent Link: Ubuntu Alpha brings notifications to the mix&#8230;'>Ubuntu Alpha brings notifications to the mix&#8230;</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><object width="560" height="340" data="http://www.youtube.com/v/4svAB3uDz3Y&amp;hl=en&amp;fs=1&amp;rel=0&amp;hd=1" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/4svAB3uDz3Y&amp;hl=en&amp;fs=1&amp;rel=0&amp;hd=1" /><param name="allowfullscreen" value="true" /></object></p>
<p>First please watch the video above as it will help you better understand the tools required to get this job done correctly.</p>
<p>I have always had the issue of Mac OS X not having the best IRC clients. So I decided to start using mIRC within a VM (Virtual Machine) Running windows XP. However the problem I ran into was not getting the fancy growl notifications when I received a PM or Highlight. To solve this issue we at Geekologist have found a way to get mIRC to send notifications to Growl via SSH.</p>
<p><strong>Requirements :</strong></p>
<ul>
<li>plink.exe &#8211; It can be download from putty&#8217;s download page. (Just google Putty)</li>
<li>growlnotify &#8211; This is included in the software bundle when you download Growl</li>
<li>mIRC (Obvious)</li>
<li>SSH enabled on the Mac &#8211; (Follow the instructions in the video to do this)</li>
<li>Growl installed and running on the mac</li>
</ul>
<p><strong>mIRC Scripts you will need :</strong></p>
<blockquote><p><strong>For Highlights :</strong></p>
<p>On $*:Text:*:#: {<br />
if ($highlight($1-)) {<br />
if (($0 == 1) &amp;&amp; ($1 isnum)) return<br />
else echo $color(highlight) -ts -Highlight- $nick highlighted you in $chan $+ . ( $+ $replace($1-,$ifmatch, $+ $ifmatch $+ ) $+ )<br />
/run -hide plink.exe -ssh MACIP -l YOURUSERNAME -pw YOURPASSWORD /Users/YOURUSERNAME/growlnotify &#8211;image &#8216;/users/YOURUSERNAME/images.png&#8217; -t &#8216; Highlight from $nick &#8216; -m &#8216; $chan $+ : $replace($1-,$ifmatch, $+ $ifmatch $+ ) $+ &#8216; -n &#8216; mIRC &#8216;<br />
}</p>
<p><strong>For PM&#8217;s :</strong><br />
On $*:Text:*:?: {<br />
if ($nick == $active) { return }<br />
/run -hide plink.exe -ssh MACIP -l YOURUSERNAME -pw YOURPASSWORD /Users/YOURUSERNAME/growlnotify &#8211;image &#8216;/Users/YOURUSERNAME/images.png&#8217; -t &#8216;PM from $nick &#8216; -m &#8216; $1- &#8216;<br />
}</p></blockquote>
<p>Please replace YOURUSERNAME with your mac username, YOURPASSWORD with your mac password and MACIP with the IP address of the mac running growl.</p>
<p>If you have any questions or comments please leave them below.</p>


<p>Related posts:<ol><li><a href='http://geekologist.net/2009/01/dock-spaces-review/' rel='bookmark' title='Permanent Link: Dock Spaces Review'>Dock Spaces Review</a></li>
<li><a href='http://geekologist.net/2009/07/att-mms-and-iphone-os-3-1/' rel='bookmark' title='Permanent Link: AT&#038;T/MMS and iPhone OS 3.1'>AT&#038;T/MMS and iPhone OS 3.1</a></li>
<li><a href='http://geekologist.net/2009/03/ubuntu-alpha-brings-notifications-to-the-mix/' rel='bookmark' title='Permanent Link: Ubuntu Alpha brings notifications to the mix&#8230;'>Ubuntu Alpha brings notifications to the mix&#8230;</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://geekologist.net/2009/04/sending-notifications-from-mirc-to-growl/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Geekologist Deep Dish Radio &#8211; Episode #1 &#8211; Servers and Sidekicks!</title>
		<link>http://geekologist.net/2009/01/servers-and-sidekicks/</link>
		<comments>http://geekologist.net/2009/01/servers-and-sidekicks/#comments</comments>
		<pubDate>Sat, 03 Jan 2009 22:59:31 +0000</pubDate>
		<dc:creator>whoknew</dc:creator>
				<category><![CDATA[Geekologist Deep Dish]]></category>
		<category><![CDATA[Podcast]]></category>
		<category><![CDATA[Radio]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[deep dish]]></category>
		<category><![CDATA[geekologist]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[os x server]]></category>
		<category><![CDATA[parallels]]></category>
		<category><![CDATA[servers]]></category>
		<category><![CDATA[support]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[virtual machine]]></category>
		<category><![CDATA[virtualbox]]></category>
		<category><![CDATA[vmware]]></category>
		<category><![CDATA[vmware fusion]]></category>
		<category><![CDATA[windows server]]></category>

		<guid isPermaLink="false">http://geekologist.net/?p=319</guid>
		<description><![CDATA[Hosts: Chris C Dan Peters Excerpt: On this week&#8217;s episode of Geekologist Deep Dish Radio, Dan and Chris begin the journey into the depths of the IT industry. After a brief introduction of the everyday working lives of Dan and Chris (and a slight disagreement over who is actually the host of the show), the [...]


Related posts:<ol><li><a href='http://geekologist.net/2009/01/geekologist-deep-dish-radio-episode-3-the-data-is-right/' rel='bookmark' title='Permanent Link: Geekologist Deep Dish Radio &#8211; Episode #3 &#8211; The Data is Right'>Geekologist Deep Dish Radio &#8211; Episode #3 &#8211; The Data is Right</a></li>
<li><a href='http://geekologist.net/2009/01/geekologist-deep-dish-radio-episode-2-backups/' rel='bookmark' title='Permanent Link: Geekologist Deep Dish Radio &#8211; Episode #2 &#8211; Backups!'>Geekologist Deep Dish Radio &#8211; Episode #2 &#8211; Backups!</a></li>
<li><a href='http://geekologist.net/2009/02/geekologist-deep-dish-radio-episode-4-be-sirius-about-your-xm/' rel='bookmark' title='Permanent Link: Geekologist Deep Dish Radio &#8211; Episode #4 &#8211; Be Sirius About Your XM'>Geekologist Deep Dish Radio &#8211; Episode #4 &#8211; Be Sirius About Your XM</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><em></em><img class="alignleft size-medium wp-image-68" title="dts-artwork-small1" src="http://geekologist.net/wp-content/uploads/2009/01/deepdish-2.jpg" alt="" width="259" height="230" />Hosts:<br />
<a href="http://geekologist.net" target="_blank">Chris C</a><br />
<a href="http://dlpeters.com" target="_blank">Dan Peters</a><br />
<strong><br />
Excerpt:<br />
<span style="font-weight: normal;"> On this week&#8217;s episode of Geekologist Deep Dish Radio, Dan and Chris begin the journey into the depths of the IT industry. After a brief introduction of the everyday working lives of Dan and Chris (and a slight disagreement over who is actually the host of the show), the duo talk briefly about servers in general and some of the common uses for them in the workplace. This leads into a discussion of virtual machines, including what they are used for (in the business and home environments) and various VM software packages on the market. Finally, Dan and Chris answer questions from the chat involving VMWare layers and Mac OS X Server.</span><br />
</strong></p>
<p style="text-align: center;"><a href="http://dlpeters.com/geekologist/deepdishradio/Geekologist%20Deep%20Dish%20Radio%20-%20Episode%20%231%20-%20Severs%20and%20Sidekicks.mp3"><strong> Click to Listen</strong></a></p>
<p style="text-align: left;"><strong><br />
</strong></p>


<p>Related posts:<ol><li><a href='http://geekologist.net/2009/01/geekologist-deep-dish-radio-episode-3-the-data-is-right/' rel='bookmark' title='Permanent Link: Geekologist Deep Dish Radio &#8211; Episode #3 &#8211; The Data is Right'>Geekologist Deep Dish Radio &#8211; Episode #3 &#8211; The Data is Right</a></li>
<li><a href='http://geekologist.net/2009/01/geekologist-deep-dish-radio-episode-2-backups/' rel='bookmark' title='Permanent Link: Geekologist Deep Dish Radio &#8211; Episode #2 &#8211; Backups!'>Geekologist Deep Dish Radio &#8211; Episode #2 &#8211; Backups!</a></li>
<li><a href='http://geekologist.net/2009/02/geekologist-deep-dish-radio-episode-4-be-sirius-about-your-xm/' rel='bookmark' title='Permanent Link: Geekologist Deep Dish Radio &#8211; Episode #4 &#8211; Be Sirius About Your XM'>Geekologist Deep Dish Radio &#8211; Episode #4 &#8211; Be Sirius About Your XM</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://geekologist.net/2009/01/servers-and-sidekicks/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
<enclosure url="http://dlpeters.com/geekologist/deepdishradio/Geekologist%20Deep%20Dish%20Radio%20-%20Episode%20%231%20-%20Severs%20and%20Sidekicks.mp3" length="17544798" type="audio/mpeg" />
		</item>
	</channel>
</rss>
