I have determined my sound problem (no S/PDIF output) is due to not having the right drivers loaded.  The install.sh file that comes with the motherboard will not run; this code fails:<br><br>#Check if user have installed the kernel source<br>
echo &quot;Second, please make sure you have installed the kernel source.&quot;<br>if [ -L /lib/modules/$KERNEL_VER/source -a -L /lib/modules/$KERNEL_VER/build ]<br>  then echo &quot;It&#39;s OK.&quot;<br>else echo &quot;You haven&#39;t installed the kernel source.&quot; &amp;&amp; exit 1<br>
fi<br><br>This fails because the links to &#39;source&#39; and &#39;build&#39; in /lib/modules/2.6.33.3-85.fc13.x86_64 are broken:<br><br>     This link cannot be used, because its target &quot;../../../usr/src/kernels/2.6.33.3-85.fc13.x86_64&quot; doesn&#39;t exist.<br>
<br>So now I&#39;m a little lost as to what I need to do next.  My searches for info have returned some instructions for how to build a &#39;hello world&#39; smple kernel module but I&#39;m more interested in figuring out what module(s) are missing and how to install them.<br>
<br>Nick<br>