[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: xosview
On Wed, 22 Jul 1998, Ira Abramov wrote:
> > xosview -net 0
>
> ok, that solved the "no /proc/net/ip_acct" problem.
>
> [root@monster ~]# xosview -net 0 -display ira:0
> Segmentation fault
re-compile xosview with the '-g' flag, run it via gdb:
gdb /usr/local/bin/xosview
.....
(gdb) run -net 0 -display ira:0
....
program received signal 11 (SEGV).....
(gdb) where
....
... <- stack trace goes here
there, you might get an idea from that, or you might send it over, and
maybe we will.
another option: strace /usr/local/bin/xosview -net 0 -display ira:0
and look for files it opens, files it closes, etc. many times you can get
a clue from just looking at the output (ofcourse, redirect the stdout and
stderr of strace to a file, and start scanning it). in particular, look
for system calls that failed in a bad way.
guy
- References:
- xosview
- From: Ira Abramov <ira@scso.com>