Fedora-8-issues

From Amahi

[edit] Current Issues

  • When using LVM (logical volume management), the disk size and usage information broke in the HDA dashboard -> setup page. the reason is that the LVM layer introduces a complex layer of what it means to be a disk and the usage. if you do not use LVM, this is still broken and will be fixed shortly.


[edit] Prior Issues (Fixed)

After installing F8, there appears to be a bug in bind (dns server) where some manual editing needs to take place for now.

First, check if bind-chroot is not installed. If not, it needs to be

 yum install -y bind-chroot

Somehow the dependencies did not pick this one up in one case.

Second, there appears to be a bug in Fedora 8 bind scripts. The way to fix it is simple but annoying due to manual editing. Edit

/etc/init.d/named

and change this line (line 68 in our system):

   if [ ! -r $named_conf ]; then

to this:

   if [ ! -r $ROOTDIR/$named_conf ]; then

after that, reboot (or do service bind restart).