<?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>Some Assembly Required &#187; Linux</title>
	<atom:link href="http://znark.com/blog/category/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://znark.com/blog</link>
	<description></description>
	<lastBuildDate>Sun, 20 Feb 2011 23:57:23 +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>Destroyer of Motherboards</title>
		<link>http://znark.com/blog/2008/12/destroyer-of-motherboards/</link>
		<comments>http://znark.com/blog/2008/12/destroyer-of-motherboards/#comments</comments>
		<pubDate>Sun, 21 Dec 2008 21:55:10 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://znark.com/blog/?p=369</guid>
		<description><![CDATA[A week ago, I got two more hard drives for my home server. The plan is to make a RAID 5 array with 1.5 TB of total space. The problem is that the Jetway J7F4 board I have only has two SATA ports. Luckily, I had a 2-port SATA PCI card and got the PCI [...]]]></description>
			<content:encoded><![CDATA[<p>A week ago, I got two more hard drives for my home server.  The plan is to make a RAID 5 array with 1.5 TB of total space.  The problem is that the <a href="http://www.jetwaycomputer.com/VIA3.html">Jetway J7F4</a> board I have only has two SATA ports.  Luckily, I had a 2-port SATA PCI card and got the PCI riser card for my case.  Putting a PCI card in the <a href="http://www.chenbro.com/corporatesite/products_detail.php?serno=100">Chenbro case</a> requires taking off the bracket and delicate routing of the cables around the card.  Unfortunately, when I put the card in, the system wouldn&#8217;t turn on.  Then, when I removed the card, the system also wouldn&#8217;t turn on.  I assumed that I had touched the motherboard and damaged it.  </p>

<p>I bought a new motherboard, the <a href="http://www.intel.com/Products/Desktop/Motherboards/D945GCLF2/D945GCLF2-overview.htm">Intel D945GCLF2</a> board.  It has the dual-core Atom 330 processor and Gigabit Ethernet but is still as cheap as original Little Falls Atom board.  I got it installed in the case and it booted. The Realtek RTL8111/8168B Ethernet chip wouldn&#8217;t work with Linux.  I had to get the new <a href="http://wiki.centos.org/AdditionalResources/HardwareList/RealTekRTL8111b">r8168 driver</a>.  It is still flaky and will only do 100Mb/s.</p>

<p>When I put in the SATA card, it wouldn&#8217;t start. Then I noticed that the PCI card was backwards. The card was keyed for both 5V and 3.3V slots and would fit backwards in the 5V slot.  Which is easy to do when the bracket is removed from the card.  I am pretty sure that this destroyed the old motherboard and probably the card since it did not work when put in the right way.  I am going to have to get a new SATA card.</p>
]]></content:encoded>
			<wfw:commentRss>http://znark.com/blog/2008/12/destroyer-of-motherboards/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Converting to RAID 1</title>
		<link>http://znark.com/blog/2008/11/converting-to-raid-1/</link>
		<comments>http://znark.com/blog/2008/11/converting-to-raid-1/#comments</comments>
		<pubDate>Wed, 12 Nov 2008 07:02:29 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://znark.com/blog/?p=362</guid>
		<description><![CDATA[I was at Fry&#8217;s recently and saw a good deal on a 500 GB hard drive. I decided to get it to expand my home server from a single 500 GB drive to two drives in RAID 1. With Linux, it is possible to do the conversion without any downtime (but lots of time spent [...]]]></description>
			<content:encoded><![CDATA[<p>I was at Fry&#8217;s recently and saw a good deal on a 500 GB hard drive.  I decided to get it to expand my <a href="http://znark.com/blog/2008/11/12/home-server">home server</a> from a single 500 GB drive to two drives in RAID 1.  With Linux, it is possible to do the conversion without any downtime (but lots of time spent copying files). The secret is to create the RAID 1 volume in a degraded state with the new drive, copy the files to the RAID 1 voume, and then add the old drive to the volume.  With LVM2, the extents can be moved with <code>pvmove</code>.</p>

<ol>
<li><p>Partition the new drive</p>

<p>fdisk /dev/sdb</p></li>
<li><p>Create the RAID 1 volume</p>

<p>mdadm &#8211;create /dev/md0 &#8211;level=1 &#8211;raid-devices=2 missing /dev/sdb1</p></li>
<li><p>Create the Physical Volume</p>

<p>pvcreate /dev/md0</p></li>
<li><p>Add PV to Volume Group</p>

<p>vgextend vg0 /dev/md0</p></li>
<li><p>Move all the extents to new volume (takes a long time)</p>

<p>pvmove /dev/sda1 /dev/md0</p></li>
<li><p>Remove old disk from volume group</p>

<p>vgreduce vg0 /dev/sda1</p></li>
<li><p>Add the old disk to RAID volume (takes a long time)</p>

<p>mdadm /dev/md0 &#8211;add /dev/sda1</p></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://znark.com/blog/2008/11/converting-to-raid-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mini-ITX Home Server</title>
		<link>http://znark.com/blog/2008/11/mini-itx-home-server/</link>
		<comments>http://znark.com/blog/2008/11/mini-itx-home-server/#comments</comments>
		<pubDate>Wed, 12 Nov 2008 03:44:07 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://znark.com/blog/?p=363</guid>
		<description><![CDATA[A few months ago, I got a new home server. I wanted to replace the old desktop with something quiet and low-power that could be left on all day. This led toward an mini-ITX motherboard. A fanless processor was better since I didn&#8217;t need the performance for video or anything heavy. I also wanted something [...]]]></description>
			<content:encoded><![CDATA[<p>A few months ago, I got a new home server.  I wanted to replace the old desktop with something quiet and low-power that could be left on all day.  This led toward an mini-ITX motherboard.  A fanless processor was better since I didn&#8217;t need the performance for video or anything heavy. I also wanted something upgradable to four SATA hard drives and with Gigabit Ethernet.  All of it needed to cost less than $500 without drives.</p>

<p>The only case mini-ITX case with space for four hard drives I found was the <a href="http://www.chenbro.com/corporatesite/products_detail.php?serno=100">Chenbro ES34069</a>.  It was a little expensive but turned out to be nicely designed and well made.  The hard drives go in caddies which plug into a SATA backplane.  It also has space for a 2.5&#8243; hard drive, thin CD drive, and memory card reader.  I decided to get a CompactFlash card in an IDE adapter for the system drive. I skipped the CD drive and reader.</p>

<p>For the motherboard, I wanted to balance having 4 SATA ports, Gigabit Ethernet, and fanless processor.  The VIA EPIA SN10000EG would have worked well with 4 SATA ports and fanless processor but was too expensive. I chose to get the <a href="http://jetwaycomputer.com/VIA3.html">Jetway J7F4K1G2E</a> which has a fanless VIA C7 processor, Gigabit Ethernet, and only 2 SATA ports.  When I made the decision, the Intel Atom motherboard, the D945GCLF, had just been released.  Unfortunately, it did not have Gigabit and the chipset uses more power than the processor.  There are now more Atom motherboards with Gigabit and even 4 SATA ports that would work better.</p>

<p>The first problem with the install was forgetting the adapter cable from 40-pin IDE on motherboard to 44-pin notebook IDE connector on the drive. The second problem was the lack of mounting holes in the right place for the non-standard position of the 2.5&#8243; drive. I was able to wedge it in place. The CompactFlash card was nice because I could put in the memory card reader on my desktop to write the root filesystem. When I do decide to go to 4 drives, I will need get a special riser card to use a PCI SATA adapter. That will be a tight fit in an already tight case. The case has a place for everything put it requires putting together in the correct order to get it all to fit.</p>
]]></content:encoded>
			<wfw:commentRss>http://znark.com/blog/2008/11/mini-itx-home-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Maemo SDK on Fedora 9</title>
		<link>http://znark.com/blog/2008/09/maemo-sdk-on-fedora-9/</link>
		<comments>http://znark.com/blog/2008/09/maemo-sdk-on-fedora-9/#comments</comments>
		<pubDate>Sun, 21 Sep 2008 19:27:22 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
				<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Maemo]]></category>

		<guid isPermaLink="false">http://znark.com/blog/?p=352</guid>
		<description><![CDATA[I got the Maemo SDK installed on Fedora 9. The instructions are pretty complete. First, Scratchbox needs the compat VDSO mode enabled. This is done by echo 0 &#62; /proc/sys/vm/vdso_enabled. Also, Qemu requires mmap_min_addr set to 4096. These can be set permanently by adding the following lines to /etc/sysctl.conf. # scratchbox support vm.vdso_enabled = 0 [...]]]></description>
			<content:encoded><![CDATA[<p>I got the <a href="http://maemo.org">Maemo</a> <a href="http://maemo.org/development/sdks/maemo-4-1-diablo-sdk/">SDK</a> 
installed on Fedora 9.  The instructions are pretty complete.</p>

<p>First, Scratchbox needs the compat VDSO mode enabled.  This is done by
<code>echo 0 &gt; /proc/sys/vm/vdso_enabled</code>.  Also, Qemu requires
<code>mmap_min_addr</code> set to 4096.  These can be set permanently by adding
the following lines to <code>/etc/sysctl.conf</code>.</p>

<pre><code># scratchbox support
vm.vdso_enabled = 0
vm.mmap_min_addr = 4096
</code></pre>

<p>On my desktop, which is x86_64, compat VDSO can only be set with the
<code>vdso32=0</code> kernel command-line option.  Also, the scratchbox installer
script checks for i386 architecture.  It needs to faked out like this:
 <code>setarch i386 ./maemo-scratchbox-install_4.1.sh</code>.</p>
]]></content:encoded>
			<wfw:commentRss>http://znark.com/blog/2008/09/maemo-sdk-on-fedora-9/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VIA padlock support in OpenSSL</title>
		<link>http://znark.com/blog/2008/09/via-padlock-support-in-openssl/</link>
		<comments>http://znark.com/blog/2008/09/via-padlock-support-in-openssl/#comments</comments>
		<pubDate>Sat, 20 Sep 2008 23:01:34 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://znark.com/blog/?p=348</guid>
		<description><![CDATA[The VIA C7 processor also has padlock encryption acceleration support. Linux support was added a while ago. First, the automatically load the padlock module, add the /etc/sysconfig/modules/via-padlock.modules file. #!/bin/sh for i in padlock; do modprobe $i &#62;/dev/null 2&#62;&#38;1 done Second, to use it for internal kernel encryption, add to /etc/modprobe.conf. alias aes padlock Third, OpenSSL [...]]]></description>
			<content:encoded><![CDATA[<p>The VIA C7 processor also has padlock encryption acceleration support.
<a href="http://www.logix.cz/michal/doc/article.xp/padlock-en">Linux support</a>
was added a while ago.</p>

<p>First, the automatically load the <code>padlock</code> module, add the <code>/etc/sysconfig/modules/via-padlock.modules</code> file.</p>

<pre><code>#!/bin/sh
for i in padlock; do
    modprobe $i &gt;/dev/null 2&gt;&amp;1
done
</code></pre>

<p>Second, to use it for internal kernel encryption, add to <code>/etc/modprobe.conf</code>.</p>

<pre><code>alias aes padlock
</code></pre>

<p>Third, OpenSSL can be configured to use padlock.  To see if your
OpenSSL was compiled with padlock support, do <code>openssl engine
padlock</code>.  You can see the speed difference by comparing <code>openssl
speed -evp aes-128-cbc</code> to <code>openssl speed -evp aes-128-cbc -engine
padlock</code>.  To use padlock engine by default, add the following lines
to the top of `/etc/pki/tls/openssl.cnf.</p>

<pre><code>#enable padlock engine by default:
openssl_conf = openssl_def

[openssl_def]
engines = openssl_engines

[openssl_engines]
padlock = padlock_engine

[padlock_engine]
default_algorithms = ALL
</code></pre>

<p>Unfortunately, the version of openssh in Centos 5 does not use the
padlock engine.  Engine support was added to openssh in 4.9p1 
(<a href="https://bugzilla.mindrot.org/show_bug.cgi?id=1437">bug 1437</a>).  It looks
like there is a
<a href="http://rt.openssl.org/Ticket/Display.html?id=1668">bug</a> with engine
support which is fixed in OpenSSL 0.9.7h.  It looks like Ubuntu Hardy
<a href="https://bugs.launchpad.net/ubuntu/+source/openssl/+bug/119295">has patched its
packages</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://znark.com/blog/2008/09/via-padlock-support-in-openssl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VIA RNG on Centos</title>
		<link>http://znark.com/blog/2008/09/via-rng-on-centos/</link>
		<comments>http://znark.com/blog/2008/09/via-rng-on-centos/#comments</comments>
		<pubDate>Sat, 20 Sep 2008 22:30:59 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://znark.com/blog/?p=346</guid>
		<description><![CDATA[The J7F4 mini-ITX motherboard that I got for my home server has a VIA C7 processor. One of the feature of the processor is the PadLock Security Engine with hardware RNG. This is especially useful on a server since they are limited in entropy sources. Linux kernel has support for the VIA hardware RNG in [...]]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://www.jetwaycomputer.com/VIA3.html">J7F4 mini-ITX
motherboard</a> that I got for
my home server has a VIA C7 processor.  One of the feature of the
processor is the <a href="http://www.via.com.tw/en/initiatives/padlock/hardware.jsp">PadLock Security
Engine</a>
with hardware RNG.  This is especially useful on a server since they
are limited in entropy sources.  Linux kernel has support for the VIA
hardware RNG in the <code>via_rng</code> module.</p>

<p>Next, install the <code>rng-utils</code> package with the rngd daemon.  It
reads entropy from the hardware RNG, <code>/dev/hwrng</code>, and feeds it to the
kernel entropy pool for <code>/dev/random</code>.  </p>

<p>Unfortunately, the package is missing an init.d script to start the
service (see <a href="https://bugzilla.redhat.com/show_bug.cgi?id=215371">redhat bug
215371</a>.  The
<code>/etc/rc.d/rc.sysinit</code> actually has a commented-out line to start
rngd.  Download the script from the bug and put it in
/etc/init.d/rngd.  Add the service, <code>chkconfig --add rngd</code>, and start it, <code>service rngd start</code>.</p>
]]></content:encoded>
			<wfw:commentRss>http://znark.com/blog/2008/09/via-rng-on-centos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Starcraft on Linux and Mac</title>
		<link>http://znark.com/blog/2007/07/starcraft-on-linux-and-mac/</link>
		<comments>http://znark.com/blog/2007/07/starcraft-on-linux-and-mac/#comments</comments>
		<pubDate>Wed, 04 Jul 2007 23:50:37 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
				<category><![CDATA[Games]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://znark.com/blog/2007/07/04/starcraft-on-linux-and-mac</guid>
		<description><![CDATA[My coworkers and I have gotten addicated to Starcraft again. The question is how to run it since my only computers are Linux and Mac. Starcraft under Wine on Linux works pretty well. There are some issues with the display changing resolution that makes it hard to switch back to the desktop and resizes programs. [...]]]></description>
			<content:encoded><![CDATA[<p>My coworkers and I have gotten addicated to Starcraft again.  The question is how to run it since my only computers are Linux and Mac.</p>

<p>Starcraft under <a href="http://winehq.com">Wine</a> on Linux works pretty well.  There are some issues with the display changing resolution that makes it hard to switch back to the desktop and resizes programs.  There is a problem with some of the menus not clearing the screen which results in a jumble of text.</p>

<p>Starcraft under <a href="http://www.codeweavers.com/products/cxmac/">CrossOver Mac</a> on the Mac works but not well.  The CrossOver installer is nice; it makes managing installs easy.  But Starcraft runs slowly. The mouse is jerky and unresponsive.</p>

<p>Starcraft under <a href="http://www.vmware.com/beta/fusion/">VMware Fusion</a> running Windows 2000 on the Mac works pretty well.  I used the free <a href="http://www.vmware.com/products/converter/">VMware Converter</a> to turn the Windows 2000 partition on my old desktop into a VMware virtual machine.  One of the nice things about VMware Fusion is that I can run the same virtual machine on Linux and Mac.</p>

<p>Another option for running it on Mac is to use the Mac version of Starcraft.  The Mac version was originally made of Mac OS 9 and is PPC.  Blizzard has a <a href="http://www.blizzard.com/support/?id=mwb0483p">Mac OS X installer</a> that allows it to run on Mac OS X.  Supposedly, Rosetta is fast enough with running the PPC binary under Intel.  Unfortunately, I have the Windows CD of Starcraft.  It is possible one of my coworkers has the Mac version and I can use my CD key with that.</p>
]]></content:encoded>
			<wfw:commentRss>http://znark.com/blog/2007/07/starcraft-on-linux-and-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reverse proxy mirror</title>
		<link>http://znark.com/blog/2007/06/reverse-proxy-mirror/</link>
		<comments>http://znark.com/blog/2007/06/reverse-proxy-mirror/#comments</comments>
		<pubDate>Sat, 02 Jun 2007 23:59:20 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://znark.com/blog/2007/06/02/reverse-proxy-mirror</guid>
		<description><![CDATA[Does anybody know of software that could be used to build a mirroring reverse proxy? I am looking for something to cache and mirror files for distributions and other archives of mostly static files. To clients, it looks like a copy of the archive. If a file does not exist, or is too old, it [...]]]></description>
			<content:encoded><![CDATA[<p>Does anybody know of software that could be used to build a mirroring reverse proxy? I am looking for something to cache and mirror files for distributions and other archives of mostly static files.</p>

<p>To clients, it looks like a copy of the archive. If a file does not exist, or is too old, it is fetched from the master servers and saved to disk. The files can be populated from CDs or mirrored through rsync to get complete copies. Ideally, it would load balance from multiple mirror servers.</p>

<p>It is possible to set something up with Apache2, mod<em>proxy, and mod</em>disk_cache but that does not allow load balancing between servers and stores files in an opaque cache.</p>

<p>Would Perlbal be usable for this? Could it be extended? I am leaning toward writing a mod_perl module.</p>
]]></content:encoded>
			<wfw:commentRss>http://znark.com/blog/2007/06/reverse-proxy-mirror/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Multiple Monitors and Remote Keyboard</title>
		<link>http://znark.com/blog/2007/02/remote-keyboard/</link>
		<comments>http://znark.com/blog/2007/02/remote-keyboard/#comments</comments>
		<pubDate>Sat, 24 Feb 2007 04:20:42 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://znark.com/blog/2007/02/23/remote-keyboard</guid>
		<description><![CDATA[At work, they have been buying all the programmers new monitors. Everybody now has at least one 20&#8243; LCD. Some people have two. The rest of us could have two monitors, one maybe smaller, if there wasn&#8217;t a shortage of dual-head video cards. I decided to hook up the second smaller monitor up to my [...]]]></description>
			<content:encoded><![CDATA[<p>At work, they have been buying all the programmers new monitors.  Everybody now has at least one 20&#8243; LCD.  Some people have two.  The rest of us could have two monitors, one maybe smaller, if there wasn&#8217;t a shortage of dual-head video cards.  I decided to hook up the second smaller monitor up to my MacBook.</p>

<p>The Mac is very good at handling multiple displays. It detected the monitor when it was plugged in.  It didn&#8217;t get the resolution correct but that was easy to change.  The menu bar handling is annoying; one display is the primary one with the menu bar and dock. The other can just have windows where it is hard to use the menu. Also, some programs get confused about the resizing; it would be nice if windows recgonized that they were touching a side and stayed that way. If the menu bar was moved to the monitor, then the computer would stay active with the lid closed.</p>

<p>Somebody pointed me toward <a href="http://synergy2.sourceforge.net/">Synergy</a> which allows sharing keyboard and mouse over the network.  The machine that has the keyboard and mouse (in this case my work desktop) runs the server.  Other machines run the client and connect to the server.  Each machine has to have a text configuration file.  Once it is working, it is smooth to move the mouse off the side of the screen and onto the other screen.  The keyboard follows the mouse. Also, it connects the clipboards.  It isn&#8217;t possible to drag windows between screens.</p>

<p>The only problem is that the key bindings are different between Mac and Linux.  The Mac uses the Option key (mapped to Alt) where Linux uses Ctrl.  The clipboard commands are especially confusing since Gnome Terminal is also different.  I have gotten used to the different key bindings when switching between the laptop and desktop but it helps that the laptop keyboard is different.</p>
]]></content:encoded>
			<wfw:commentRss>http://znark.com/blog/2007/02/remote-keyboard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FC6 on MacBook</title>
		<link>http://znark.com/blog/2006/11/fc6-on-macbook/</link>
		<comments>http://znark.com/blog/2006/11/fc6-on-macbook/#comments</comments>
		<pubDate>Fri, 03 Nov 2006 03:59:51 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
				<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technical]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I am writing this on Fedora Core 6 running on my MacBook. In general, it works pretty well with a few problems. The wireless works great with the madwifi drivers from livna. The biggest problem is that suspend and hibernate don&#8217;t work. Suspend seems to work but does not restore. Hibernate suceeds with the most [...]]]></description>
			<content:encoded><![CDATA[<p>I am writing this on Fedora Core 6 running on my MacBook.  In general, it works pretty well with a few problems.  The wireless works great with the madwifi drivers from <a href="http://rpm.livna.org/fedora/6/">livna</a>.</p>

<p>The biggest problem is that suspend and hibernate don&#8217;t work.  Suspend seems to work but does not restore.  Hibernate suceeds with the most recent kernel but that kernel does not boot reliably.</p>

<p>I hadn&#8217;t noticed that I wasn&#8217;t running at the ideal resolution, 1280&#215;900.  1080&#215;768 looked a little squished. I had to switch to the &#8216;intel&#8217; driver for Xorg for the graphics to work at the ideal resolution.</p>

<p>I just installed the compiz compositing window manager. The flipping effect when changing desktops is a nice touch even though it is a little blurry and jumpy.I understand what people were talking about with the wobbly window effect.</p>

<p>The Mighty Mouse is not detected automatically by the Bluetooth system. I have to run &#8216;hidd &#8211;search&#8217; and occasionally restart the hidd daemon.  The scroll ball only works in one direction. Unfortunately, moving the scroll ball horizontally scrolls vertically.</p>
]]></content:encoded>
			<wfw:commentRss>http://znark.com/blog/2006/11/fc6-on-macbook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

