Hi, all the Kindly friends
Here is another new discover:
I run aMSN remotely. That is to say, I use xhost cmd to allow some remote
machine can use my laptop
as the X11 server, and one the remote machine, setup DISPLAY environment
variable correctly.
When run, The X11 server machine's hard disk begin to blink endless and the
keyboard lost respones.
I had use strace to hacking the problem. and found that when it happen, the
program is in poll.
The fd param of poll is a socket. Locally and remotely run the TK related
program, the FD is created
differently:
local running is
socket(PF_FILE, SOCK_STREAM|SOCK_CLOEXEC, 0) = 5
remote running is
socket(PF_INET, SOCK_STREAM|SOCK_CLOEXEC, IPPROTO_TCP) = 5
And that is right I think. X11 protocal should run on the most fast way
it found.
Now, I can say that: This problem is something related to the TK and X11
library.
It has nothing to do with the GUI program's function ---- no git repo
problems(when run gitk ), nor
networks problems( when run amsn ).
More testing should be done, But I can't spend too many time on this. By
far, the company
can not allow me to hacking the linux system all day and all night......
Does anyone has any other GUI program that using TK library?
We can try more softwares.....
On 2012-05-29 19:51:42, Patrick Burroughs wrote:
> Date: Tue, 29 May 2012 19:51:42 -0700
> From: Patrick Burroughs <[email protected]>
> To: General Discussion about Arch Linux <[email protected]>
> Subject: Re: [arch-general] TK related GUI program run VERY slow, any idea?
>
> On Tue, May 29, 2012 at 5:31 PM, <[email protected]> wrote:
> > Thanks for your kindness reply!
> >
> > I'm 燼lmost sure that it is not the swap partition's problem.
> > My KDE runs prefectly, but when any GUI program which use TK library starts,
> > the hard disk will keep busy for VERY long time, and the keyboard can not
> > input
> > into other program for a long time. When the TK related GUI program
> > initialization
> > finished, It runs ok, except the same thing occurs when it pop up any
> > diaglogs (for
> > example, aMSN automatically pop up a notice box when a new friend appear
> > online).
> >
> > I have not log info currently. And it needs some time to get more info
> > about it...
>
> This might be a long shot, but could you have an environment variable
> or something set that's triggering a debug state? Maybe lots of
> logfile writing?
>
> ~Celti