Hi Bill,
Mandrake and Fedora Core 2 (FC2) use a new directory indexing feature on their filesystems, which causes "." and ".." to not always be first in the file list. LabVIEW currently relies on this behavior (you can see this by doing ls -af in a directory). Fortunately, you can turn the feature off.
On all of your ext3 partitions, you'll want to run (as root):
tune2fs -O ^dir_index /dev/yourpartition
You can find out the partition(s) by running "mount". Here is what this might look like:
dduffey$ mount
/dev/hdb2 on / type ext3 (rw)
proc on /proc type proc (rw)
devpts on /dev/pts type devpts
(rw,gid=5,mode=620)
tmpfs on /dev/shm type tmpfs (rw)
sysfs on /sys type sysfs (rw)
usbfs on /proc/bus/usb type usbfs (rw)
none on /proc/sys/fs/binfmt
_misc type
binfmt_misc (rw)
in which case I did:
tune2fs -O ^dir_index /dev/hdb2
(my only ext3 partition)
You should immediatly be able to use LabVIEW. This process changes a flag on the filesystem, and should work across reboots (unless Mandrake/RedHat resets the dir_index in their startup scripts, highly unlikely).
Good luck!
Kileen C.
NI