At 24 Feb 2003 11:08:26 +1100, Stuart Guthrie wrote:
> Just got a nasty with Open office and am wondering the best way to
> debug. 
> 
> The only change to my laptop setup is to alter the network from
> 192.168.2.201 to 192.168.1.201.
> 
> Now oocalc hangs after inital CPU flurry for 2 secs. The processes are
> there in background but the splash screen seems to be waiting for
> something.

to find out what the process is waiting for, do "strace -p $pid" and
see if you can make sense of the last line.  you may need to strace
the app from the beginning (lots of output for something large like
openoffice), with "strace -o /tmp/strace.log oocalc", and then skip to
the bottom of the log and scroll backwards.
(if oocalc forks child processes, and one of them is blocking, you'll
need to add "-f" to the strace command line)

if you include strace output (no more than the last screen or two), we
should be able to explain what it all means.


from your description, its likely its a network thing and the cause
should be fairly obvious.

-- 
 - Gus.verbose
-- 
SLUG - Sydney Linux User's Group - http://slug.org.au/
More Info: http://lists.slug.org.au/listinfo/slug

Reply via email to