On Thu, 2008-05-29 at 14:23 -0400, Alfred von Campe wrote:
> Ever since I upgraded all my systems to CentOS 5.1 I have been
> getting reports from users about "all their windows disappearing". A
> little digging revealed that they meant all gnome-terminal windows.
> Since there is only one gnome-terminal process by default for all
> your open terminal windows and tabs, a crash of that process means
> losing all your terminal windows. These crashes often (but not
> always) occur over night when the system is otherwise idle.
>
> A quick Google search found a problem on Ubuntu related to VTE (the
> terminal emulator widget used by gnome-terminal) but not much else of
> interest. Has anyone on this list experienced this? I find it hard
> to believe I'm the only one. I never saw this issue while running
> CentOS 4.X on these systems...
>
> Alfred
>
I've seen extreme slow gnome terminals in the past on Cent 5, I even
downgraded the package for the terminal to make it work better.
Never had it close randomly. I have however had applications randomly
close other then the terminal.
Gregg.
_______________________________________________
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos
05-29-2008, 06:48 PM
Johnny Hughes
Frequent Gnome Terminal crashes in CentOS 5.1
Alfred von Campe wrote:
Ever since I upgraded all my systems to CentOS 5.1 I have been getting
reports from users about "all their windows disappearing". A little
digging revealed that they meant all gnome-terminal windows. Since
there is only one gnome-terminal process by default for all your open
terminal windows and tabs, a crash of that process means losing all your
terminal windows. These crashes often (but not always) occur over night
when the system is otherwise idle.
A quick Google search found a problem on Ubuntu related to VTE (the
terminal emulator widget used by gnome-terminal) but not much else of
interest. Has anyone on this list experienced this? I find it hard to
believe I'm the only one. I never saw this issue while running CentOS
4.X on these systems...
How did you upgrade?
I am running CentOS-5 on many workstations that stay on all the time and
I have never had the gnome-terminal crash.
Is it possible that you have older (possibly orphaned) binaries still
installed from the upgrade process?
If this is from a NEW install, then we need more info to help.
_______________________________________________
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos
05-29-2008, 07:14 PM
Alfred von Campe
Frequent Gnome Terminal crashes in CentOS 5.1
On May 29, 2008, at 14:48, Johnny Hughes wrote:
How did you upgrade?
Fresh install via kickstart. I reformatted the root and /boot
partitions, but left one user partition untouched.
Is it possible that you have older (possibly orphaned) binaries
still installed from the upgrade process?
I don't think this is possible since I reformatted the root partition
(I only have /, /boot, and /scratch partitions in addition to a swap
partition).
If this is from a NEW install, then we need more info to help.
The process ends without leaving a trace unfortunately (at least that
I can find). I did have an strace running on one system attached to
the gnone-terminal process and it finally died after 5 days or so.
Here are the last 20 lines from the log:
Is there a better way than strace to get some information on this crash?
Alfred
_______________________________________________
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos
05-29-2008, 08:23 PM
MHR
Frequent Gnome Terminal crashes in CentOS 5.1
On Thu, May 29, 2008 at 12:14 PM, Alfred von Campe <alfred@von-campe.com> wrote:
>
> Fresh install via kickstart. I reformatted the root and /boot partitions,
> but left one user partition untouched.
>
> I don't think this is possible since I reformatted the root partition (I
> only have /, /boot, and /scratch partitions in addition to a swap
> partition).
>
> The process ends without leaving a trace unfortunately (at least that I can
> find). I did have an strace running on one system attached to the
> gnone-terminal process and it finally died after 5 days or so. Here are the
> last 20 lines from the log:
>
Is it possible you have some kind of time-out set, like an idle time
cut-off? If it's only happening at night, this might explain it.
I have Seamonkey crashes and strange behavior related to nautilus
windows when I try to open Netowrk Connections, but I've never seen or
heard of anything like this.
mhr
_______________________________________________
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos
05-30-2008, 12:58 AM
"Filipe Brandenburger"
Frequent Gnome Terminal crashes in CentOS 5.1
On Thu, May 29, 2008 at 3:14 PM, Alfred von Campe <alfred@von-campe.com> wrote:
> write(2, "The program 'gnome-terminal' rec"..., 592) = 592
This looks interesting, but unfortunately you cut the message too
short to know what it was saying... You might find it in
/var/log/Xorg.0.log, but I wouldn't bet on that.
> Is there a better way than strace to get some information on this crash?
strace seems fine, just use some options to enhance the output you get:
-s 1024: take 1024 bytes for every string. This wouldn't have cut that one short
-tt: if you want timestamps
-f: to follow forked processes
Try to do it again and you might find out what gnome-terminal was
trying to tell you.
HTH,
Filipe
_______________________________________________
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos
05-30-2008, 12:59 AM
"Filipe Brandenburger"
Frequent Gnome Terminal crashes in CentOS 5.1
On Thu, May 29, 2008 at 8:58 PM, Filipe Brandenburger
<filbranden@gmail.com> wrote:
> On Thu, May 29, 2008 at 3:14 PM, Alfred von Campe <alfred@von-campe.com> wrote:
>> write(2, "The program 'gnome-terminal' rec"..., 592) = 592
>
> This looks interesting, but unfortunately you cut the message too
> short to know what it was saying... You might find it in
> /var/log/Xorg.0.log, but I wouldn't bet on that.
Try ~/.xsession-errors, that's a more likely place to find the error message.
HTH,
Filipe
_______________________________________________
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos
05-30-2008, 11:59 AM
Alfred von Campe
Frequent Gnome Terminal crashes in CentOS 5.1
On May 29, 2008, at 20:58, Filipe Brandenburger wrote:
strace seems fine, just use some options to enhance the output you
get:
-s 1024: take 1024 bytes for every string. This wouldn't have cut
that one short
-tt: if you want timestamps
-f: to follow forked processes
Great suggestion. I didn't know about the -s switch. I'll change
the strace to use all those options and wait for it to fail again.
Alfred
P.S. There was nothing interesting in any of the log files.
_______________________________________________
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos
06-05-2008, 12:54 AM
Alfred von Campe
Frequent Gnome Terminal crashes in CentOS 5.1
On May 29, 2008, at 20:58, Filipe Brandenburger wrote:
strace seems fine, just use some options to enhance the output you
get:
-s 1024: take 1024 bytes for every string. This wouldn't have cut
that one short
-tt: if you want timestamps
-f: to follow forked processes
I started strace with those parameters, but the strace output did not
change: