<?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>Jean-Christophe Martin&#039;s blog&#187; Technology</title>
	<atom:link href="http://www.jcmartin.org/category/tech/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jcmartin.org</link>
	<description></description>
	<lastBuildDate>Wed, 28 Sep 2011 20:43:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.5</generator>
		<item>
		<title>Compiling rTorrent on openSolaris</title>
		<link>http://www.jcmartin.org/compiling-rtorrent-on-opensolaris/</link>
		<comments>http://www.jcmartin.org/compiling-rtorrent-on-opensolaris/#comments</comments>
		<pubDate>Wed, 26 Aug 2009 04:37:10 +0000</pubDate>
		<dc:creator>jc</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[opensolaris]]></category>
		<category><![CDATA[rlibtorrent]]></category>
		<category><![CDATA[rTorrent]]></category>

		<guid isPermaLink="false">http://www.jcmartin.org/?p=263</guid>
		<description><![CDATA[As I mentioned in a previous post, I&#8217;ve recently upgraded a PC to the latest opensolaris release, and had to port some of the applications over. One of these is the fast and efficient rtorrent client. I did not find recent packages in the repositories and had to compile it myself. I found that a [...]]]></description>
			<content:encoded><![CDATA[<p>As I mentioned in a <a href="http://www.jcmartin.org/no-zfs-in-snow-leopard/">previous post</a>, I&#8217;ve recently upgraded a PC to the latest opensolaris release, and had to port some of the applications over. One of these is the fast and efficient <a href="http://libtorrent.rakshasa.no/">rtorrent</a> client. I did not find recent packages in the repositories and had to compile it myself. I found that a future version of opensolaris may have the client integrated, and <a href="http://cr.opensolaris.org/~alz/bittorrent/">a case for the <span class="caps">SFW</span> consolidation</a> was recently submitted by Huawei Zhang with all the required patches included.</p>
<p>The first step in the install is to make sure that the development environment is setup correctly. From the base opensolaris, I installed the following:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ pfexec pkg <span style="color: #c20cb9; font-weight: bold;">install</span> SUNWncurses
$ pfexec pkg <span style="color: #c20cb9; font-weight: bold;">install</span> SUNWcurl
$ pfexec pkg <span style="color: #c20cb9; font-weight: bold;">install</span> SUNWgnome-common-devel
$ pfexec pkg <span style="color: #c20cb9; font-weight: bold;">install</span> SUNWgmake
$ pfexec pkg <span style="color: #c20cb9; font-weight: bold;">install</span> SUNWgcc
$ pfexec pkg <span style="color: #c20cb9; font-weight: bold;">install</span> SUNWgnu-automake-<span style="color: #000000;">110</span>
$ pfexec pkg <span style="color: #c20cb9; font-weight: bold;">install</span> SUNWlibtool
$ pfexec pkg <span style="color: #c20cb9; font-weight: bold;">install</span> SUNWaconf</pre></div></div>

<p>The next step is to install libsig++ 2.0 that is required by rlibtorrent. Your mileage may vary, but I had better chance using gmake for all the builds. Note: You will find the lib in the repositories, but I had compilation issues and had to build it myself.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">wget</span> http:<span style="color: #000000; font-weight: bold;">//</span>ftp.gnome.org<span style="color: #000000; font-weight: bold;">/</span>pub<span style="color: #000000; font-weight: bold;">/</span>GNOME<span style="color: #000000; font-weight: bold;">/</span>sources<span style="color: #000000; font-weight: bold;">/</span>libsigc++<span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000;">2.0</span><span style="color: #000000; font-weight: bold;">/</span>libsigc++-2.0.18.tar.gz
$ <span style="color: #c20cb9; font-weight: bold;">gzip</span> <span style="color: #660033;">-dc</span> libsigc++-2.0.18.tar.gz <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">tar</span> xvf -
$ <span style="color: #7a0874; font-weight: bold;">cd</span> libsigc++-2.0.18
$ .<span style="color: #000000; font-weight: bold;">/</span>configure
$ <span style="color: #c20cb9; font-weight: bold;">gmake</span>
$ pfexec <span style="color: #c20cb9; font-weight: bold;">gmake</span> <span style="color: #c20cb9; font-weight: bold;">install</span></pre></div></div>

<p> <br />
If you do not change the default location, you should have the libsig++ library installed under /usr/local.<br />
Adding the following will help later to build the rlibtorrent and rtorrent itself.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #7a0874; font-weight: bold;">export</span> <span style="color: #007800;">PKG_CONFIG_PATH</span>=<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>pkgconfig:<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>pkgconfig</pre></div></div>

<p> </p>
<p>Next, on to install rlibtorrent. This is were I would recommend you take to version submitted to SFW with the associated patches.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">wget</span> http:<span style="color: #000000; font-weight: bold;">//</span>cr.opensolaris.org<span style="color: #000000; font-weight: bold;">/</span>~alz<span style="color: #000000; font-weight: bold;">/</span>bittorrent<span style="color: #000000; font-weight: bold;">/</span>raw_files<span style="color: #000000; font-weight: bold;">/</span>new<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>src<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>libtorrent<span style="color: #000000; font-weight: bold;">/</span>libtorrent-0.12.2.tar.gz
$ <span style="color: #c20cb9; font-weight: bold;">gzip</span> <span style="color: #660033;">-dc</span> libtorrent-0.12.2.tar.gz <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">tar</span> xvf -
$ <span style="color: #c20cb9; font-weight: bold;">mkdir</span> patches
$ <span style="color: #7a0874; font-weight: bold;">cd</span> patches
$ <span style="color: #c20cb9; font-weight: bold;">wget</span> <span style="color: #660033;">-r</span> <span style="color: #660033;">-l1</span> <span style="color: #660033;">-nd</span> -A.diff http:<span style="color: #000000; font-weight: bold;">//</span>cr.opensolaris.org<span style="color: #000000; font-weight: bold;">/</span>~alz<span style="color: #000000; font-weight: bold;">/</span>bittorrent<span style="color: #000000; font-weight: bold;">/</span>raw_files<span style="color: #000000; font-weight: bold;">/</span>new<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>src<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>libtorrent<span style="color: #000000; font-weight: bold;">/</span>patches<span style="color: #000000; font-weight: bold;">/</span>
$ <span style="color: #7a0874; font-weight: bold;">cd</span> ..<span style="color: #000000; font-weight: bold;">/</span>libtorrent-0.12.2
$ <span style="color: #c20cb9; font-weight: bold;">cat</span> ..<span style="color: #000000; font-weight: bold;">/</span>patches<span style="color: #000000; font-weight: bold;">/</span>rlibtorrent-<span style="color: #000000; font-weight: bold;">*</span> <span style="color: #000000; font-weight: bold;">|</span> gpatch <span style="color: #660033;">-p1</span></pre></div></div>

<p> </p>
<p> The following is required because some am files were modified through the patching process.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ aclocal-<span style="color: #000000;">1.10</span> -I.<span style="color: #000000; font-weight: bold;">/</span>scripts -I.
$ <span style="color: #c20cb9; font-weight: bold;">autoheader</span>
$ libtoolize <span style="color: #660033;">--automake</span> <span style="color: #660033;">--copy</span> <span style="color: #660033;">--force</span>
$ automake-<span style="color: #000000;">1.10</span>
$ <span style="color: #c20cb9; font-weight: bold;">autoconf</span>
$ .<span style="color: #000000; font-weight: bold;">/</span>configure <span style="color: #660033;">--enable-shared</span> <span style="color: #660033;">--disable-static</span> <span style="color: #660033;">--with-ports</span> <span style="color: #660033;">--disable-libtool-lock</span>
$ <span style="color: #c20cb9; font-weight: bold;">gmake</span>
$ pfexec <span style="color: #c20cb9; font-weight: bold;">gmake</span> <span style="color: #c20cb9; font-weight: bold;">install</span></pre></div></div>

<p> <br />
 Same principles to finally build the rtorrent client.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">wget</span> http:<span style="color: #000000; font-weight: bold;">//</span>cr.opensolaris.org<span style="color: #000000; font-weight: bold;">/</span>~alz<span style="color: #000000; font-weight: bold;">/</span>bittorrent<span style="color: #000000; font-weight: bold;">/</span>raw_files<span style="color: #000000; font-weight: bold;">/</span>new<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>src<span style="color: #000000; font-weight: bold;">/</span>cmd<span style="color: #000000; font-weight: bold;">/</span>rtorrent<span style="color: #000000; font-weight: bold;">/</span>rtorrent-0.8.2.tar.gz
$ <span style="color: #c20cb9; font-weight: bold;">gzip</span> <span style="color: #660033;">-dc</span> rtorrent-0.8.2.tar.gz <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">tar</span> xvf -
$ <span style="color: #7a0874; font-weight: bold;">cd</span> patches
$ <span style="color: #c20cb9; font-weight: bold;">wget</span> <span style="color: #660033;">-r</span> <span style="color: #660033;">-l1</span> <span style="color: #660033;">-nd</span> -A.diff http:<span style="color: #000000; font-weight: bold;">//</span>cr.opensolaris.org<span style="color: #000000; font-weight: bold;">/</span>~alz<span style="color: #000000; font-weight: bold;">/</span>bittorrent<span style="color: #000000; font-weight: bold;">/</span>raw_files<span style="color: #000000; font-weight: bold;">/</span>new<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>src<span style="color: #000000; font-weight: bold;">/</span>cmd<span style="color: #000000; font-weight: bold;">/</span>rtorrent<span style="color: #000000; font-weight: bold;">/</span>patches<span style="color: #000000; font-weight: bold;">/</span>
$ <span style="color: #7a0874; font-weight: bold;">cd</span> rtorrent-0.8.2
$ <span style="color: #c20cb9; font-weight: bold;">cat</span> ..<span style="color: #000000; font-weight: bold;">/</span>patches<span style="color: #000000; font-weight: bold;">/</span>rtorrent-<span style="color: #000000;">0</span><span style="color: #000000; font-weight: bold;">*</span> <span style="color: #000000; font-weight: bold;">|</span> gpatch <span style="color: #660033;">-p1</span>
$ <span style="color: #7a0874; font-weight: bold;">export</span> <span style="color: #007800;">LDFLAGS</span>=<span style="color: #ff0000;">'-Wl,-zignore -Wl,-zcombreloc -Wl,-Bdirect  -L/usr/sfw/lib -R/usr/sfw/lib -L/usr/gnu/lib -R/usr/gnu/lib  -L/usr/lib/'</span>
$ <span style="color: #7a0874; font-weight: bold;">export</span> <span style="color: #007800;">CXXFLAGS</span>=-I<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>include<span style="color: #000000; font-weight: bold;">/</span>ncurses
$ aclocal-<span style="color: #000000;">1.10</span> -I.<span style="color: #000000; font-weight: bold;">/</span>scripts -I.
$ <span style="color: #c20cb9; font-weight: bold;">autoheader</span>
$ libtoolize <span style="color: #660033;">--automake</span> <span style="color: #660033;">--copy</span> <span style="color: #660033;">--force</span>
$ automake-<span style="color: #000000;">1.10</span>
$ <span style="color: #c20cb9; font-weight: bold;">autoconf</span>
$ .<span style="color: #000000; font-weight: bold;">/</span>configure
$ <span style="color: #c20cb9; font-weight: bold;">gmake</span>
$ pfexec <span style="color: #c20cb9; font-weight: bold;">gmake</span> <span style="color: #c20cb9; font-weight: bold;">install</span></pre></div></div>

<p> <br />
 Here it is. Hopefully I did not forget any step or made mistakes while capturing the commands, but you should have enough of a base to start and successfully build rtorrent. Do not hesitate to post a comment with your experience.</p>
<p><b> Updated </b> on 09/07/2009 to add SUNWlibtool that I forgot. Thanks to Gustavo for pointing it out.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jcmartin.org/compiling-rtorrent-on-opensolaris/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>No ZFS in Snow Leopard ?</title>
		<link>http://www.jcmartin.org/no-zfs-in-snow-leopard/</link>
		<comments>http://www.jcmartin.org/no-zfs-in-snow-leopard/#comments</comments>
		<pubDate>Tue, 25 Aug 2009 00:23:30 +0000</pubDate>
		<dc:creator>jc</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Snow Leopard]]></category>
		<category><![CDATA[ZFS]]></category>

		<guid isPermaLink="false">http://www.jcmartin.org/no-zfs-in-snow-leopard/</guid>
		<description><![CDATA[Now that the shipping date for Snow Leopard is approaching, I came to the realization that I will not get rid of my Solaris based NAS. It&#8217;s been running flawlessly for the past 2 or 3 years (well, I lost several disks and a controller, but never lost any data), but I was hopping to [...]]]></description>
			<content:encoded><![CDATA[<p>Now that the shipping date for Snow Leopard is approaching, I came to the realization that I will not get rid of my Solaris based NAS. It&#8217;s been running flawlessly for the past 2 or 3 years (well, I lost several disks and a controller, but never lost any data), but I was hopping to consolidate everything on a Mac Pro with 8 cores.<br />
Since ZFS is not going to be there, and this apparently until the next major release, I will likely upgrade my PC to a better setup in order to keep running ZFS. Even the open source effort on Mac OS Forge  <a href="http://lists.macosforge.org/pipermail/zfs-discuss/2009-August/001734.html">seems to be going nowhere</a> &#8230;</p>
<p>In the mean time, I just upgraded my box to <a href="http://opensolaris.org/os/TryOpenSolaris/">opensolaris 2009.06</a> and spent some time compiling the tools that I needed on the box, more on that later.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jcmartin.org/no-zfs-in-snow-leopard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Parallels acquired by SWsoft</title>
		<link>http://www.jcmartin.org/parallels-acquired-by-swsoft/</link>
		<comments>http://www.jcmartin.org/parallels-acquired-by-swsoft/#comments</comments>
		<pubDate>Mon, 22 Jan 2007 18:47:42 +0000</pubDate>
		<dc:creator>jc</dc:creator>
				<category><![CDATA[MacOS]]></category>
		<category><![CDATA[Virtualization]]></category>

		<guid isPermaLink="false">http://www.jcmartin.org/2007/01/22/1169495262227.html</guid>
		<description><![CDATA[According to this article, Parallels was acquired 3 years ago by SWsoft: The tectonics of virtualization are shifting. It turns out that Parallels is not such a little company after all. About three years ago it was quietly purchased by an enterprise-focused virtualization company called SWsoft, a fact that has never been publicly disclosed until [...]]]></description>
			<content:encoded><![CDATA[<p>
According to<a href="http://money.cnn.com/2007/01/19/technology/fastforward_parallels.fortune/?postversion=2007012206"> this article</a>, Parallels was acquired 3 years ago by <a href="http://www.swsoft.com/">SWsoft</a>:
</p>
<blockquote><p>
The tectonics of virtualization are shifting. It turns out that Parallels is not such a little company after all. About three years ago it was quietly purchased by an enterprise-focused virtualization company called SWsoft, a fact that has never been publicly disclosed until now.
</p></blockquote>
<p>
SWsoft is providing Plesk, HSPcomplete, PEM and Virtuozzo, which seems to be the only virtualization related technology. It will be interesting to see if SWsoft applies its expertise in Self Service, Accounting and Billing to the VM Management space.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jcmartin.org/parallels-acquired-by-swsoft/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Killer app for Palm : Google Map</title>
		<link>http://www.jcmartin.org/killer-app-for-palm-google-map/</link>
		<comments>http://www.jcmartin.org/killer-app-for-palm-google-map/#comments</comments>
		<pubDate>Sun, 07 Jan 2007 03:37:51 +0000</pubDate>
		<dc:creator>jc</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.jcmartin.org/2007/01/06/1168144671156.html</guid>
		<description><![CDATA[I have been using my treo 650 for a couple of years now, and I must say that the early days were really bumpy. Lots of reset, freeze, and so on. However, recently, it has been really reliable (after exchanging it 3 times). Few months ago, Google released a Palm version of google map for [...]]]></description>
			<content:encoded><![CDATA[<p>I have been using my treo 650 for a couple of years now, and I must say that the early days were really bumpy. Lots of reset, freeze, and so on. However, recently, it has been really reliable (after exchanging it 3 times). Few months ago, Google released a <a href="http://www.google.com/gmm/treo">Palm version of google map for mobiles</a>. I use it daily since then. I get the traffic every morning on my way to work, and it has proven very reliable.</p>
<p>In this picture, you can see for example a congestion on the southbound 101, around San Bruno.</p>
<p><img class="alignnone size-full wp-image-88" title="Snap-C1C5B014" src="http://69.89.31.96/~jcmartin/wordpress/wp-content/uploads/2007/01/Snap-C1C5B014.jpg" alt="Snap-C1C5B014" width="160" height="160" /></p>
<p>Or, I use it to find a restaurant or other business, I even get their phone number, and can call them from the same screen.</p>
<p><img class="alignnone size-full wp-image-89" title="Snap-C1C5B085" src="http://69.89.31.96/~jcmartin/wordpress/wp-content/uploads/2007/01/Snap-C1C5B085.jpg" alt="Snap-C1C5B085" width="160" height="160" /></p>
<p>And you can even get turn by turn directions</p>
<p><img class="alignnone size-full wp-image-90" title="Snap-C1C5B0C1-1" src="http://69.89.31.96/~jcmartin/wordpress/wp-content/uploads/2007/01/Snap-C1C5B0C1-1.jpg" alt="Snap-C1C5B0C1-1" width="160" height="160" /></p>
<p>If only it could tell me where I am right now &#8230;</p>
<p>Anyway, it really justifies the cost of the unlimited internet connection I have to pay Cingular every month.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jcmartin.org/killer-app-for-palm-google-map/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VMWare for Mac Beta has opened</title>
		<link>http://www.jcmartin.org/vmware-for-mac-beta-has-opened/</link>
		<comments>http://www.jcmartin.org/vmware-for-mac-beta-has-opened/#comments</comments>
		<pubDate>Fri, 22 Dec 2006 17:44:02 +0000</pubDate>
		<dc:creator>jc</dc:creator>
				<category><![CDATA[MacOS]]></category>
		<category><![CDATA[Virtualization]]></category>

		<guid isPermaLink="false">http://www.jcmartin.org/2006/12/22/1166809442116.html</guid>
		<description><![CDATA[Today, the VMWare Fusion Beta program opened : The new VMware desktop product for the Mac, codenamed Fusion, allows Intel-based Macs to run x86 operating systems, such as Windows, Linux, NetWare and Solaris, in virtual machines at the same time as Mac OS X. It is built on VMware&#8217;s rock-solid and advanced desktop virtualization platform [...]]]></description>
			<content:encoded><![CDATA[<p>Today, the<a href="http://www.vmware.com/products/beta/fusion//"> VMWare Fusion Beta program</a> opened :</p>
<blockquote><p>The new VMware desktop product for the Mac, codenamed Fusion, allows Intel-based Macs to run x86 operating systems, such as Windows, Linux, NetWare and Solaris, in virtual machines at the same time as Mac OS X. It is built on VMware&#8217;s rock-solid and advanced desktop virtualization platform that is used by over four million users today.</p></blockquote>
<p>I&#8217;ve tried to start a windows 2003 VM Image that was created on a PC, without any problem.</p>
<p style="text-align: center;"><img class="size-full wp-image-86 aligncenter" title="fusion" src="http://69.89.31.96/~jcmartin/wordpress/wp-content/uploads/2006/12/fusion.jpg" alt="fusion" width="484" height="325" /></p>
<p style="text-align:center;">
]]></content:encoded>
			<wfw:commentRss>http://www.jcmartin.org/vmware-for-mac-beta-has-opened/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Running Solaris 10 in Parallels on Macbook</title>
		<link>http://www.jcmartin.org/running-solaris-10-in-parallels-on-macbook/</link>
		<comments>http://www.jcmartin.org/running-solaris-10-in-parallels-on-macbook/#comments</comments>
		<pubDate>Mon, 18 Dec 2006 06:41:29 +0000</pubDate>
		<dc:creator>jc</dc:creator>
				<category><![CDATA[MacOS]]></category>
		<category><![CDATA[Virtualization]]></category>

		<guid isPermaLink="false">http://www.jcmartin.org/2006/12/17/1166424089386.html</guid>
		<description><![CDATA[I have been trying for the past few days to run Solaris 10/11 in parallels on a new macbook. The main issue I had was the JDS/gnome resolution adaptation with the 1280&#215;800 resolution of the macbook. Here are my steps : I installed the new parallels beta (build 3036) downloaded the free Solaris 10 update [...]]]></description>
			<content:encoded><![CDATA[<p>
I have been trying for the past few days to run Solaris 10/11 in parallels on a new macbook. The main issue I had was the JDS/gnome resolution adaptation with the 1280&#215;800 resolution of the macbook.
</p>
<p>
Here are my steps :
</p>
<ul>
<li>  I installed the new parallels beta (build 3036)</li>
<li>  downloaded the free Solaris 10 update 3 from Sun&#8217;s web site. Download the DVD since it can be directly mounted in parallels.</li>
<li>  create a new VM with the Solaris 10 type, but, before to finish, un-select the option to start the Solaris installation and edit the VM configuration to add a custom screen resolution of 1280&#215;800.</li>
<li>  start the VM to launch the install</li>
<li>  log in an create a /etc/X11/xorg.conf with something like the one attached here (<a href="images/xorg.conf/">xorg.conf</a>). Basically you need to add the Modeline lines (generated with /usr/X11/bin/gtf) and put 1280&#215;800 in the appropriate Display subsections.</li>
</ul>
<p>
It should work. However, I&#8217;m still experiencing some duplicate keystrokes and garbled screen after VM resume (I have solved the later issue by switching multiple times between full screen and os window).
</p>
<p>
If anyone has any solution for these two problems, let me know.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jcmartin.org/running-solaris-10-in-parallels-on-macbook/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Wi-Spy: 2.4Ghz Spectrum Analyzer for PC</title>
		<link>http://www.jcmartin.org/wi-spy-2-4ghz-spectrum-analyzer-for-pc/</link>
		<comments>http://www.jcmartin.org/wi-spy-2-4ghz-spectrum-analyzer-for-pc/#comments</comments>
		<pubDate>Tue, 22 Aug 2006 00:43:02 +0000</pubDate>
		<dc:creator>jc</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.jcmartin.org/2006/08/21/1156203782513.html</guid>
		<description><![CDATA[Metageek has a nice product, Wi Spy, a combination of an USB dongle and a Windows Software that let you analyze frequencies around 2.4 Ghz : Wi-Spy&#8482; is the world&#8217;s smallest 2.4 GHz spectrum analyzer*. Wi-Spy is perfect for troubleshooting interference from the following devices: Wi-Fi (802.11 b/g/n) Microwave Ovens Cordless Phones Zigbee Bluetooth Wi-Spy [...]]]></description>
			<content:encoded><![CDATA[<p>
<a href="http://www.metageek.net/">Metageek</a> has a nice product, Wi Spy,  a combination of an USB dongle and a Windows Software that let you analyze frequencies around 2.4 Ghz :
</p>
<blockquote><p>
Wi-Spy&#8482; is the world&#8217;s smallest 2.4 GHz spectrum analyzer*. Wi-Spy is perfect for troubleshooting interference from the following devices:<br />
<br />Wi-Fi (802.11 b/g/n)<br />
<br />Microwave Ovens<br />
<br />Cordless Phones<br />
<br />Zigbee<br />
<br />Bluetooth
</p></blockquote>
<p>
Wi-Spy is priced at $99. It&#8217;s been reviewed <a href="http://www.tomsnetworking.com/2006/02/12/review_wispy/">Tom&#8217;s networking here</a>.
</p>
<p>
Some<a href="http://www.kismetwireless.net/wispy.shtml"> open source tools</a> are available for Linux and OSX supporting the Wi-Spy hardware:
</p>
<blockquote><p>
Wispy-Raw &#8211; A basic dumper from the USB interface to stdout, without RSSI to dBm conversion.<br />
<br />Wispy-Curses &#8211; A simple libcurses text-based graphing tool.<br />
<br />Wispy-GTK &#8211; A full GTK grapher, similar to the windows graphing tool
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.jcmartin.org/wi-spy-2-4ghz-spectrum-analyzer-for-pc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IBM acquires Webify</title>
		<link>http://www.jcmartin.org/ibm-acquires-webify/</link>
		<comments>http://www.jcmartin.org/ibm-acquires-webify/#comments</comments>
		<pubDate>Wed, 02 Aug 2006 23:32:00 +0000</pubDate>
		<dc:creator>jc</dc:creator>
				<category><![CDATA[Soa]]></category>

		<guid isPermaLink="false">http://www.jcmartin.org/2006/08/02/1154561520722.html</guid>
		<description><![CDATA[Today, IBM announced that they are acquiring Webify: ARMONK, NY - 02 Aug 2006: IBM (NYSE: IBM) today announced it acquired Webify Solutions, an Austin, Texas-based, privately held provider of industry-specific software and services for building service oriented architectures (SOA). Webify provides what they call Industry Fabrics : The Webify Industry Fabric is an integrated [...]]]></description>
			<content:encoded><![CDATA[<p>Today,<a href="http://www-03.ibm.com/press/us/en/pressrelease/20058.wss"> IBM announced</a> that they are acquiring <a href="http://www.webifysolutions.com/index.html">Webify</a>:</p>
<blockquote><p>ARMONK, NY	 -	 02 Aug 2006: IBM (NYSE: IBM) today announced it acquired Webify Solutions, an Austin, Texas-based, privately held provider of industry-specific software and services for building service oriented architectures (SOA).</p></blockquote>
<p>Webify provides what they call<a href="http://www.webifysolutions.com/products_Industry_Fabric.html"> Industry Fabrics</a> :</p>
<blockquote><p>The Webify Industry Fabric is an integrated environment for policy driven sourcing, assembly, delivery and governance of business services and composite business services. It consists of six complementary modules that allows companies to source, provision, deliver, and govern industry-specific business services, processes, content, and events from a variety of internal and external sources.</p></blockquote>
<p>They have fabrics for the following industries:</p>
<ul>
<li>Healthcare</li>
<li>Banking</li>
<li>Telecom</li>
<li>Insurance</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.jcmartin.org/ibm-acquires-webify/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ILoad products: IPod without a PC</title>
		<link>http://www.jcmartin.org/iload-products-ipod-without-a-pc/</link>
		<comments>http://www.jcmartin.org/iload-products-ipod-without-a-pc/#comments</comments>
		<pubDate>Thu, 13 Jul 2006 17:14:47 +0000</pubDate>
		<dc:creator>jc</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.jcmartin.org/2006/07/13/1152807287778.html</guid>
		<description><![CDATA[A friend sent me a link to the Iload products, it sounds very cool, there are three model : ILoad allows you to load CDs directly on the IPod without a PC ILoad-v connect to a cable or satellite box and allow you to record video shows directly on the Ipod, or an USB hard [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-97" style="margin-left: 20px; margin-right: 20px;" title="_images_product_image_iload-v_down-2" src="http://69.89.31.96/~jcmartin/wordpress/wp-content/uploads/2006/07/images_product_image_iload-v_down-2.jpg" alt="_images_product_image_iload-v_down-2" width="123" height="150" /></p>
<p>A friend sent me a link to the<a href="http://www.iload.com/products.html"> Iload products</a>, it sounds very cool, there are three model :</p>
<ul>
<li><strong>ILoad</strong> allows you to load CDs directly on the IPod without a PC</li>
<li><strong>ILoad-v </strong> connect to a cable or satellite box and allow you to record video shows directly on the Ipod, or an USB hard drive. It is integrate with a TV guide to select programs to record.</li>
<li><strong>Iload-c </strong> integrate a Cell Phone to directly load music from a music store into your Ipod Nano.</li>
</ul>
<p>The prices seem reasonable: $199 for the Iload-v for example.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jcmartin.org/iload-products-ipod-without-a-pc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Brainiac playing in the US</title>
		<link>http://www.jcmartin.org/brainiac-playing-in-the-us/</link>
		<comments>http://www.jcmartin.org/brainiac-playing-in-the-us/#comments</comments>
		<pubDate>Thu, 13 Jul 2006 16:32:27 +0000</pubDate>
		<dc:creator>jc</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.jcmartin.org/2006/07/13/1152804747387.html</guid>
		<description><![CDATA[You might have seen this show in UK, or in the Google videos , like this one : I found recently that the G4 channel Cool &#8230; explosions, and silly experiments &#8230;]]></description>
			<content:encoded><![CDATA[<p>
You might have seen this show in UK, or in the <a href="http://video.google.com/videosearch?q=brainiac">Google videos</a> , like this one :
</p>
<p><embed style="width:400px; height:326px;" id="VideoPlayback" align="middle" type="application/x-shockwave-flash" src="http://video.google.com/googleplayer.swf?docId=-2134266654801392897" quality="best" bgcolor="#ffffff" scale="noScale" salign="TL"  FlashVars="playerMode=embedded"> </embed></p>
<p>
I found recently that the <a href="http://www.g4tv.com/"> G4 channel</a> Cool &#8230; explosions, and silly experiments &#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jcmartin.org/brainiac-playing-in-the-us/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

