[opensuse] User cannot start Open Office
One of my users has suddenly lost the ability to start Open Office, the other two can use it as usual. No configuration files have been changed, and this has only happened in the last 10 days or so. Typing 'soffice' at a terminal just returns the command line prompt (immediately). Even typing '/usr/bin/soffice' fails. Clicking on Desktop folder icons or start menu items also fails. Other programs all work as expected. I cannot understand why or how this could happen. Any ideas/suggestions please? Bob -- Registered Linux User #463880 FSFE Member #1300 GPG-FP: A6C1 457C 6DBA B13E 5524 F703 D12A FB79 926B 994E openSUSE 11.2, Kernel 2.6.31.12-0.2-desktop, KDE 4.3.5 Intel Core2 Quad Q9400 2.66GHz, 4GB DDR RAM, nVidia GeForce 9600GT -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org For additional commands, e-mail: opensuse+help@opensuse.org
On 01/04/10 22:38, Bob Williams wrote:
One of my users has suddenly lost the ability to start Open Office, the other two can use it as usual. No configuration files have been changed, and this has only happened in the last 10 days or so. Typing 'soffice' at a terminal just returns the command line prompt (immediately). Even typing '/usr/bin/soffice' fails. Clicking on Desktop folder icons or start menu items also fails. Other programs all work as expected.
I cannot understand why or how this could happen. Any ideas/suggestions please?
Bob
Not that I'm an OpenOffice guy, but this is the way I'd go about getting some debugging info: First of all /usr/bin/soffice is a wrapper shell script. Add a "set -x" to the top of it (just below the #!/bin/sh shebang) to get some output. If it is a problem in the actual executable, try it under gdb, see if it is a crash - in which case get a backtrace, otherwise you will be able to see the return status. e.g.
gdb /usr/lib/ooo3/program/soffice.bin (gdb) run <crash> (gdb) bt ... backtrace ...
Regards, Tejas -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org For additional commands, e-mail: opensuse+help@opensuse.org
participants (2)
-
Bob Williams
-
Tejas Guruswamy