thx,
tf
I have seen that. But, it worked for me after i had enabled NFS
locking. OpenOffice wants to lock its stuff and will not work if it
cannot do it. Theproblem is that this requires some cooperation from the
server, so if you cannot have access to the NFS server and locking is
not enabled here you have bad luck. On your side, you need:
rpc_lockd_enable="YES"
rpc_statd_enable="YES"
After that you can test if locking works using the command lockf. For
example:
#!/bin/sh
lockf -k $1 sleep 10 &
sleep 3
lockf -k -s -t 0 $1 echo BAD || echo GOOD
wait
--
Michel TALON
Thank you! It works now, almost like, magic!
tf