<?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>Kolios &#187; Research</title>
	<atom:link href="http://www.kolios.dk/category/tech/research/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kolios.dk</link>
	<description></description>
	<lastBuildDate>Tue, 31 Aug 2010 11:38:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Speeding up your HTTPS server</title>
		<link>http://www.kolios.dk/2010/08/31/speeding-up-your-https-server/</link>
		<comments>http://www.kolios.dk/2010/08/31/speeding-up-your-https-server/#comments</comments>
		<pubDate>Tue, 31 Aug 2010 08:41:29 +0000</pubDate>
		<dc:creator>sebastien</dc:creator>
				<category><![CDATA[Research]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://secret.kolios.dk/?p=865</guid>
		<description><![CDATA[<img src="http://www.kolios.dk/icons/research-48x48.png" width="48" height="48" alt="" title="Research" /><img src="http://www.kolios.dk/icons/internet-48x48.png" width="48" height="48" alt="" title="Web" /><img src="http://www.kolios.dk/icons/linux-48x48.png" width="48" height="48" alt="" title="linux" /><br/>My everyday job is to find solutions to optimize systems that are working but that could also be better / faster / cheaper. Today, we&#8217;ll look on how to optimize your SSL / HTTPS layer for your webserver. The problem : The problem is that we want our webserver to provide a secure channel to [...]]]></description>
			<content:encoded><![CDATA[<img src="http://www.kolios.dk/icons/research-48x48.png" width="48" height="48" alt="" title="Research" /><img src="http://www.kolios.dk/icons/internet-48x48.png" width="48" height="48" alt="" title="Web" /><img src="http://www.kolios.dk/icons/linux-48x48.png" width="48" height="48" alt="" title="linux" /><br/><p>My everyday job is to find solutions to optimize systems that are working but that could also be better / faster / cheaper. Today, we&#8217;ll look on how to optimize your SSL / HTTPS layer for your webserver.</p>
<p><a href="http://www.kolios.dk/upload/2010/08/lock.png"><img class="alignleft size-full wp-image-907" title="lock" src="http://www.kolios.dk/upload/2010/08/lock.png" alt="" width="128" height="128" /></a></p>
<h3>The problem :</h3>
<p>The problem is that we want our webserver to provide a secure channel to our clients and to be as fast as possible to deliver all of our content. But the SSL layer usually adds up a large overhead to any http request, simply because data needs to be encrypted or decrypted (depending if we send or receive data ).</p>
<p>In a world where we CPU performances were increasing all the time, we could simply invest on a new, better performing, server hardware. It would be a bit pricy but would do the trick for a while. Unfortunately, that would really help you to scale much. You could also invest on a dedicated SSL hardware appliance but since that would cost you an arm and we need that arm to type on the keyboard, I digress, we would prefer something a bit smarter.</p>
<h3>So, what&#8217;s the solution ?</h3>
<p>The solution is simply to understand what is SSL. SSL is a suit of ciphers. All ciphers are mathematic formulas in a package that helps you to use them. But some ciphers are less ressource-consuming than others, some are dedicated to streams and others are not.</p>
<p>When you configure your webserver, you generally enter the following line:</p>
<pre>SSLCipherSuite HIGH:+MEDIUM:+LOW</pre>
<p>This tells you webserver  that it supports:</p>
<ul>
<li>ALL HIGH security ciphers,</li>
<li>ALL Medium,</li>
<li>ALL Low</li>
</ul>
<p>You web-browser will then pick on in the list (generally the most secure) and start to use it. Unfortunately, this means that you will end up using AES256 which is VERY resource consuming.</p>
<h3>How can I tell my webserver to use which cipher ?</h3>
<div class="box right">In <a title="Cryptography" href="/wiki/Cryptography">cryptography</a>, <strong>RC4</strong> is the most widely-used software <a title="Stream cipher" href="/wiki/Stream_cipher">stream cipher</a> and is used in popular protocols such as <a title="Secure Sockets Layer" href="/wiki/Secure_Sockets_Layer">Secure Sockets Layer</a> (SSL)</div>
<p>Well, for Apache, you just have to enter the following line :</p>
<pre>SSLCipherSuite RC4+RSA:HIGH:+MEDIUM:+LOW</pre>
<p>This will force your webserver to present <strong>at first</strong> the RC4 protocol and not our AES256 friend. In case of a browser who wouldn&#8217;t understand RC4, you can always fallback to AES256 and back all the medium and low ciphers.</p>
<p>In case, you would have doubt about the security provided by RC4 ( after all, the protocol has been used in WEP ), you should be convinced that a proper implementation of RC4 is very secure even with a 128bits long key.</p>
<h3>3 &#8230; 2 &#8230; 1 &#8230; GO !</h3>
<p>Comparing AES256 and RC4 (using a 128 bit key) wouldn&#8217;t be fair. Let&#8217;s compare what is comparable : AES128 and RC4( using a 128bit key).</p>
<pre>SSLCipherSuite AES128+RSA:HIGH:+MEDIUM:+LOW</pre>
<p>and</p>
<pre>SSLCipherSuite RC4+RSA:HIGH:+MEDIUM:+LOW</pre>
<p><img class="alignnone size-full wp-image-921" title="performances-aes-rc4" src="http://www.kolios.dk/upload/2010/08/performances-aes-rc4.png" alt="Performances between AES and RC4 (winner : RC4)" width="480" height="360" /></p>
<h3>Conclusion</h3>
<p>You can see, that you have a nice performance boost for the price of 0.00$/€. Isn&#8217;t life great ? <img src='http://www.kolios.dk/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.kolios.dk/2010/08/31/speeding-up-your-https-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Howto install a debian (from scratch) on a Buffalo Terastation Duo</title>
		<link>http://www.kolios.dk/2009/09/07/howto-install-a-debian-from-scratch-on-a-buffalo-terastation-duo-2/</link>
		<comments>http://www.kolios.dk/2009/09/07/howto-install-a-debian-from-scratch-on-a-buffalo-terastation-duo-2/#comments</comments>
		<pubDate>Sun, 06 Sep 2009 22:09:35 +0000</pubDate>
		<dc:creator>sebastien</dc:creator>
				<category><![CDATA[Research]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.kickban.net/?p=86</guid>
		<description><![CDATA[<img src="http://www.kolios.dk/icons/research-48x48.png" width="48" height="48" alt="" title="Research" /><img src="http://www.kolios.dk/icons/linux-48x48.png" width="48" height="48" alt="" title="linux" /><br/>Hi everyone, It&#8217;s been a while since I haven&#8217;t post anything here. Well, the truth is I have been pretty busy with some projects. And I&#8217;ve been able to play with a Buffalo TeraStation Duo with 2x512GB. But let&#8217;s dig in what we are here for, Debian Install. A bit of specs : cpu : [...]]]></description>
			<content:encoded><![CDATA[<img src="http://www.kolios.dk/icons/research-48x48.png" width="48" height="48" alt="" title="Research" /><img src="http://www.kolios.dk/icons/linux-48x48.png" width="48" height="48" alt="" title="linux" /><br/><p>Hi everyone,</p>
<p>It&#8217;s been a while since I haven&#8217;t post anything here. Well, the truth is I have been pretty busy with some projects. And I&#8217;ve been able to play with a Buffalo TeraStation Duo with 2x512GB.</p>
<p>But let&#8217;s dig in what we are here for, Debian Install.<br />
<span id="more-359"></span></p>
<p>A bit of specs :</p>
<ul>
<li> cpu : Arm9 at 800Mhz</li>
<li> memory : 512MB</li>
<li> Flash : 512MB</li>
<li> Net : 2 Ethernet ports.</li>
</ul>
<p>Hey ! But why the hell do you want Debian on it ??? It&#8217;s already pretty smooth and neat !<br />
First, it&#8217;s funny, secondly, I learnt a lot by doing that and third .. well &#8230; if Buffalo Administration software<br />
does enough for your needs, why are you reading this ??? Hmmmm ?</p>
<p>Well, enough ! Let&#8217;s go.</p>
<h3>How does the buffalo works ?</h3>
<p><img class="alignleft size-full wp-image-107" title="ts-wxl-r1_sm" src="http://www.kickban.net/wp-content/uploads/2009/09/ts-wxl-r1_sm.jpg" alt="ts-wxl-r1_sm" width="170" height="170" /><br />
The NAS use u-boot bootloader to boot. u-boot is a pretty well documented bootloader and is able to boot nearly everything.</p>
<p>In the normal case (99% of the time), it boots from the RAID1 array and load the kernel (and an initrd image).<br />
In a non-normal case (the so infamous 1% &#8211; for exemple, in case of a hard disk crash), it boots another kernel (and initrd image) from the NAND device. This mode is pretty useful when you have screwed up your NAS.</p>
<blockquote><p>If I was rich and patient, I&#8217;d bought a serial cable with a usb-serial converter to use the serial plug located in front of the device<br />
but I am fairly poor at the moment and really excited to play with the baby.<br />
We would have put the initrd from debian-installer and enjoy seeing the installation going smoothly.</p>
<p>But no, I am poor&#8230; and hopefully, we&#8217;ll find another way.</p></blockquote>
<h3>A bit of theory : How does Debian Lenny netboot works ?</h3>
<p><img class="size-full wp-image-103 alignright" title="logo debian" src="http://www.kickban.net/wp-content/uploads/2009/09/bouton.jpg" alt="logo debian" width="204" height="82" /><br />
Well, pretty easy. The installation disc load a kernel together with an initrd image. This initrd has a script and launch some required scripts that setup everything and finally launch debian-installer. debian-installer will then guide you through the complete process of a clean and neat debian installation.</p>
<h3>Here is the summary of what we will do:</h3>
<ul>
<li>Gain shell access to you TeraStation Duo</li>
<li>Backup the actual kernel and initrd image</li>
<li>Modify the initrd image to make sure that we will boot correctly</li>
<li>Package the Debian Installer for an easy use</li>
<li>Upload the necessary files</li>
<li>Screwup your nas to make it start in EM mode</li>
<li>Gaining access to your NAS (in EM mode)</li>
<li>Prepare the chroot environment and launch the debian-installer</li>
<li>a dirty Hack !</li>
<li>Install DEBIAN (YEAH !)</li>
<li>restore the kernel and initrd</li>
<li>install the WatchDog monitor</li>
<li>rebooting (and praying !)</li>
</ul>
<h3>Gaining access to you NAS:</h3>
<p>Some (very) nice people have seen an security hole in Buffalo ACP protocol and have made a tool to exploit and thus, gain access to your NAS by resetting the root password and starting a telnet deamon.</p>
<p>You can find <a href="http://downloads.nas-central.org/TOOLS/ALL_LS_KB_ARM9/ACP_COMMANDER/acp_commander.jar">acp_commander</a> by clicking on the link. And because you all want to gain shell access to your NAS, here is the command to use :</p>
<pre>java -jar acp_commander.jar -t &lt;ip_of_your_nas&gt; -o</pre>
<p>This should launch a telnet.</p>
<p>If this doesn&#8217;t work, the try the following:</p>
<pre>java -jar acp_commander.jar -t &lt;ip_of_your_nas&gt; -ip &lt;ip_of_your_nas&gt; -pw  -o</pre>
<p>You can now connect by issuing the following command:</p>
<pre>telnet &lt;ip_of_your_nas&gt;</pre>
<h3>Backup the actual kernel and initrd image</h3>
<p>Now that we are in, we have many possibilities. You could install the <a href="http://home.prea.net/hacking/TSLive">OPTWARE packages</a> and live the rest of your life happy and in peace, or we can go further and install a Debian system.  Let&#8217;s backup the kernel and the initrd image as this tutorial covers the Debian Installation but not the installation of a custom kernel.</p>
<pre>$&gt; scp /boot/uImage.buffalo &lt;someone&gt;@&lt;somewhere&gt;:
$&gt; scp /boot/initrd.buffalo &lt;someone&gt;@&lt;somewhere&gt;:</pre>
<h3>Modify the initrd image to make sure that we will boot correctly</h3>
<p>The initrd that we have just backed up, will be used when we will boot our new Debian. But if we use it has it is, the scripts contained in the image will probably do a lot of annoying things (like populating a /etc for no reason, saving the configuration, checking the filesystem). We don&#8217;t want that. So we use the technique described here ( <a href="http://buffalo.nas-central.org/index.php/How_to_modify_an_initrd">How to modify an initrd</a> ) to modify the linuxrc script.</p>
<pre class="brush: bash">HddRoot()
{
    echo "-HddRoot-"
    if [ "${SUPPORT_RAID}" = on ] ; then
    AssembleSysMd boot
    fi
    fsck_disks
#    HasUpdatedFile
#    if [ $? != 0 ]; then
#        echo "** has Updated Files **"
#        echo "** Creating system hotadd pending flag **"
#        touch /tmp/need_firmup
#        echo "0x100" &gt;/proc/sys/kernel/real-root-dev
#        return
#    fi
    if [ "${SUPPORT_RAID}" = on ] ; then
    AssembleSysMd
    fi
#    TestRootfs
#    if [ $? != 0 ]; then
#        echo "0x100" &gt; /proc/sys/kernel/real-root-dev
#    else
    if [ "${SUPPORT_RAID}" = on ] ; then
    echo "0x901" &gt; /proc/sys/kernel/real-root-dev
    else
    echo "0x802" &gt; /proc/sys/kernel/real-root-dev
    fi
    IS_HDDROOT=1
#    fi
}</pre>
<p>Note : 0&#215;901 represent /dev/md1 &#8230; the partition that contain the real-root&#8230;</p>
<pre>$&gt; umount INITRD
$&gt; rmdir INITRD
$&gt; mv initrd.buffalo initrd.stock [backup just in case]
$&gt; gzip initrd
$&gt; mkimage -A arm -O linux -T ramdisk -C gzip -a 0x0 -e 0x0 -n initrd -d initrd.gz initrd.buffalo</pre>
<h3>Package the Debian Installer for an easy use</h3>
<p>Now, we want to launch the debian-installer but &#8230; we have booted in EM mode which mean that we have booted with Buffalo&#8217;s initrd. Fortunately, Debian always do things the right way. Let&#8217;s get the Debian-Installer package, extract it and put in in a tar.gz file that we will be able to extract once booted in EM mode.</p>
<pre>$&gt; wget http://ftp.debian.org/dists/lenny/main/installer-armel/current/images/versatile/netboot/initrd.gz
$&gt; gunzip initrd.gz
$&gt; mkdir deb_init
$&gt; cd deb_init
$&gt; cpio -i &lt; ../initrd
$&gt; tar cf ../deb_init.tar *</pre>
<p>Now we can upload that new archive file on the NAS.</p>
<pre>$&gt; scp &lt;someone&gt;@&lt;somewhere&gt;:/sompath/deb_init.tar /boot</pre>
<h3>Screwup your nas to make it start in EM mode</h3>
<p>u-boot will fall back into booting the EM mode in case  of three unsucessful boot of the normal mode. Let&#8217;s now make sure that the NAS will never boot again <img src='http://www.kolios.dk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<pre>$&gt; rm /sbin/init</pre>
<p>now it&#8217;s time to REBOOT !</p>
<h3>Gaining access to your NAS (in EM mode)</h3>
<p>After three failed reboots, the NAS will enter the EM mode.</p>
<p>Same procedure :</p>
<pre>java -jar acp_commander.jar -t &lt;ip_of_your_nas&gt; -o</pre>
<h3>Preparing the chroot environment and launching the debian installer</h3>
<p>To be able to install Debian, we have to make a bit of preparation</p>
<pre>$&gt; miconapl -a system_set_watchdog 0
$&gt; killall daemonwatch
$&gt; killall miconmon clientUtil_server kernelmon errormon cat

# if /boot is not mounted yet
$&gt; mdadm -A /dev/md0 /dev/sda1 /dev/sdb1
$&gt; mount /dev/md0 /boot
$&gt; mkdir /debian
$&gt; mount -t tmpfs tmpfs /debian
$&gt; cd /debian
$&gt; cp /boot/uImage.buffalo /boot/new.initrd.buffalo /debian
$&gt; mv /debian/new.initrd.buffalo /debian/initrd.buffalo
$&gt; tar xf /boot/deb_init.tar
$&gt; mount -t proc proc proc/
$&gt; mount -t sysfs sysfs sys/
$&gt; cp /boot/uImage.buffalo initrd.buffalo /debian
$&gt; umount /boot
$&gt; mdadm -S /dev/md0
$&gt; chroot .

$&gt; /lib/debian-installer/start-udev
$&gt; sh /lib/debian-installer-startup.d/S01mount
$&gt; sh /lib/debian-installer-startup.d/S10syslog
$&gt; sh /lib/debian-installer-startup.d/S15lowmem
$&gt; sh /lib/debian-installer-startup.d/S20templates</pre>
<h3>a dirty Hack !</h3>
<p>Here is an awful hack. If you attend to kill dhcpcd to make sure that the debian installer will not get confused, then it will shutdown your interface and you will lose your telnet session. If you kill -9 dhcpcd, everything is fine until the debian-installer try to setup your iface again (with dhcp or manually).</p>
<p>So I opened another telnet session and wrote this dirty little hack that will do the job:</p>
<pre>while true; do ifconfig ethX &lt;ip&gt; netmask &lt;netmask&gt;; done</pre>
<p>Yes, this is an active loop <img src='http://www.kolios.dk/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /><br />
Let this script run, go back to your previous telnet session and</p>
<pre>$&gt; killall dhcpcd</pre>
<p> <img src='http://www.kolios.dk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Yeah !</p>
<h3>Installing DEBIAN (YEAH !)</h3>
<pre>$&gt; debian-installer</pre>
<p>Let&#8217;s launch the debian installer and follow the instructions. It will complain that it can&#8217;t find a suitable kernel, can&#8217;t find a suitable bootloader neither, just ignore everything. When it comes to the Partition manager, proceed as follow :</p>
<p>Delete ALL partitions of the two disks.</p>
<ul>
<li>Create a new partition (of ~ 512M/1GB) and choose use as physical volume for RAID</li>
<li>Create another partition of (5GB for exemple) and choose use as physical volume for RAID</li>
<li>Finally do the same for the rest of the disk (except the last GB)</li>
<li>Create a swap partition using the last GB of available free space on the disk</li>
</ul>
<p>Do EXACTLY the same for the second disk.</p>
<p>Once this is done, you can see that on top of the disk#1, you know have a menu called &#8220;Configure RAID&#8221;. Go into it, accept the warning message (by selecting YES)</p>
<p>The Disk Partionner restarts again and now we have the RAID devices.</p>
<ul>
<li>Select the first one and assign it to /boot using ext3</li>
<li>Select the second one ad assign it to / using ext3</li>
<li>Select the last one using it for /mnt/array1 using XFS for example.</li>
</ul>
<p>Write the changes to disks. The debian-installer may complain about not being able to re-read the partition table. DO NOT REBOOT. Just press continue to re try reading the partition table. After some tries, it should be ok.</p>
<p>Make sure that you don&#8217;t reboot the NAS at the end of the installation. Instead, open a new telnet session.</p>
<h3>restoring the kernel and initrd</h3>
<pre>$&gt; cp /debian/uImage.buffalo /debian/initrd.buffalo /debian/target/boot</pre>
<h3>installing the WatchDog monitor</h3>
<p>A watchdog is running on the NAS to reboot it in case of a Hanged system. Buffalo&#8217;s firmware was running a small piece of code to manage it. Fortunately, the people from nas-central.org have made it available for ourt debian installation.</p>
<p>Download the tar file and extract it in the new environement.</p>
<pre>$&gt; cd /debian/target
$&gt; chroot .
$&gt; cd /tmp
$&gt; wget http://buffalo.nas-central.org/download/Users/gnyf/micro_evtd_TSP.tar.gz
$&gt; cd /
$&gt; tar zxvf micro_evtd_TSP.tar.gz</pre>
<h3>Install SSH server on the NAS</h3>
<p>While we are here, we want to install SSH server to make sure that we can connect back to the NAS.</p>
<pre>$&gt; apt-get install openssh-server.
$&gt; exit</pre>
<h3>rebooting (and praying !)</h3>
<p>You can now reboot and &#8230; pray !</p>
<p>Leave me any comments on improvement of this method that you can find.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kolios.dk/2009/09/07/howto-install-a-debian-from-scratch-on-a-buffalo-terastation-duo-2/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>How to mount (or at least convert) .bin/.cue images on Mac OSX</title>
		<link>http://www.kolios.dk/2009/04/13/how-to-mount-or-at-least-convert-bincue-images-on-mac-osx/</link>
		<comments>http://www.kolios.dk/2009/04/13/how-to-mount-or-at-least-convert-bincue-images-on-mac-osx/#comments</comments>
		<pubDate>Mon, 13 Apr 2009 14:54:05 +0000</pubDate>
		<dc:creator>sebastien</dc:creator>
				<category><![CDATA[Research]]></category>
		<category><![CDATA[bin image file]]></category>
		<category><![CDATA[iso image file]]></category>
		<category><![CDATA[mac os x]]></category>

		<guid isPermaLink="false">http://www.kickban.net/?p=25</guid>
		<description><![CDATA[<img src="http://www.kolios.dk/icons/research-48x48.png" width="48" height="48" alt="" title="Research" /><br/>A long time ago, I downloaded a .bin/.cue file on my Mac and Suprize ! the famous (un)popular format is not handled by Mac os X (10.5 at least &#8230; ) so I couldn&#8217;t mount it properly. As this format is not really a standard, I understand Apple policy to not include any filesystem that [...]]]></description>
			<content:encoded><![CDATA[<img src="http://www.kolios.dk/icons/research-48x48.png" width="48" height="48" alt="" title="Research" /><br/><p><img class="alignleft size-full wp-image-29" title="iso-image" src="http://www.kickban.net/wp-content/uploads/2009/04/iso-image.png" alt="iso-image" width="69" height="71" />A long time ago, I downloaded a .bin/.cue file on my Mac and Suprize ! the famous (un)popular format is not handled by Mac os X (10.5 at least &#8230; ) so I couldn&#8217;t mount it properly.<br />
<span id="more-357"></span><br />
As this format is not really a standard, I understand Apple policy to not include any filesystem that support it but it bugs me everytime I want to play around with this kind of file. Of course, the Licensed Software addicts would jump on <a title="Toast, the licensed burning software for mac os x" href="http://www.roxio.com/enu/products/toast/titanium/overview.html" target="_blank">Toast </a>because it has such feature.</p>
<p>Instead I propose you a (GPL&#8217;ed) softwaree that will convert your .bin/.cue file to an <a title="iso9660 at Wikipedia" href="http://en.wikipedia.org/wiki/Iso9660">.iso image</a>. This format is a supported nearly everywhere and you just have to open the file in Mac os X to mount it and browse the content. This magic software is called <a title="bchunk, the magic tool" href="http://he.fi/bchunk/" target="_blank">bchunk </a>and a version compiled for Mac os X is available <a href="http://jamesnsears.com/code/bchunk.zip">here.</a></p>
<p>Just type the following in your favorite terminal application :</p>
<blockquote><p>$&gt; bchunk myfile.bin myfile.cue mydestination.iso</p></blockquote>
<blockquote><p>$&gt; open mydestination.iso</p></blockquote>
<p>And voila ! This should do the work.</p>
<p>Refer to <a title="James weblog" href="http://www.jamesnsears.com/2007/04/convert_bin_cue_iso_on_mac_osx.php" target="_blank">James blog</a> for a proper installation of this tool.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kolios.dk/2009/04/13/how-to-mount-or-at-least-convert-bincue-images-on-mac-osx/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
