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:
#Check if user have installed the kernel source echo "Second, please make sure you have installed the kernel source." if [ -L /lib/modules/$KERNEL_VER/source -a -L /lib/modules/$KERNEL_VER/build ] then echo "It's OK." else echo "You haven't installed the kernel source." && exit 1 fi This fails because the links to 'source' and 'build' in /lib/modules/2.6.33.3-85.fc13.x86_64 are broken: This link cannot be used, because its target "../../../usr/src/kernels/2.6.33.3-85.fc13.x86_64" doesn't exist. So now I'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 'hello world' smple kernel module but I'm more interested in figuring out what module(s) are missing and how to install them. Nick
-- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines