public inbox for cygwin-xfree@sourceware.org
help / color / mirror / Atom feed
* Can't start xterm from Cygwin/X icon in system tray
@ 2009-12-30 17:07 Jim Reisert AD1C
2009-12-31 13:33 ` dahaiou
` (2 more replies)
0 siblings, 3 replies; 12+ messages in thread
From: Jim Reisert AD1C @ 2009-12-30 17:07 UTC (permalink / raw)
To: cygwin-xfree
I have a very strange situation.
At work, I am running Win XP SP3. I installed all the latest Cygwin
(1.7.1) + Xorg updates, including startxwin.exe. Everything works
perfectly.
At home, I am running Windows 7 Professional, 64-bit. I am unable to
start an xterm from the Cygwin/X icon in the system tray (right-click,
select xterm). Both setups have the same line in .XWinrc:
"xterm" EXEC "xterm"
I am starting the X server the same way:
D:\Cygwin\bin\run.exe /usr/bin/bash.exe -l -c /usr/bin/startxwin.exe
I do not have a ~/.startxwinrc file. The xterm that is supposed to be
created when the server starts doesn't start either.
The symptom is that xterm.exe is shown running in the task manager,
but there is no Xterm window on the desktop.
As a work-around, I created a shortcut on my desktop to start an xterm:
D:\Cygwin\bin\run.exe /usr/bin/xterm -display localhost:0
That works perfectly, but is not an optimum solution (I try to have as
few desktop icons as possible).
There is nothing in the /var/log/Xwin log that indicates why an xterm
would start but not open a window.
Any ideas?
--
Jim Reisert AD1C, <jjreisert@alum.mit.edu>, http://www.ad1c.us
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Problem reports: http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ: http://x.cygwin.com/docs/faq/
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: Can't start xterm from Cygwin/X icon in system tray
2009-12-30 17:07 Can't start xterm from Cygwin/X icon in system tray Jim Reisert AD1C
@ 2009-12-31 13:33 ` dahaiou
2009-12-31 15:35 ` Jim Reisert AD1C
2009-12-31 20:43 ` Yaakov (Cygwin/X)
2010-01-13 5:28 ` Jim Reisert AD1C
2 siblings, 1 reply; 12+ messages in thread
From: dahaiou @ 2009-12-31 13:33 UTC (permalink / raw)
To: cygwin-xfree
Jim Reisert AD1C wrote:
>
> I am unable to start an xterm from the Cygwin/X icon in the system tray
> (right-click, select xterm). Both setups have the same line in .XWinrc:
> "xterm" EXEC "xterm"
> As a work-around, I created a shortcut on my desktop to start an xterm:
> D:\Cygwin\bin\run.exe /usr/bin/xterm -display localhost:0
> That works perfectly,
What exact command is mapped to the "xterm" label in the right-click tray
menu? It's configured in an init file somewhere though I can't remember the
filename right now.
Can you check whether the DISPLAY variable is set in the xterm process
started from the tray menu? If it isn't, that would explain it.
--
View this message in context: http://old.nabble.com/Can%27t-start-xterm-from-Cygwin-X-icon-in-system-tray-tp26969798p26977792.html
Sent from the cygwin-xfree mailing list archive at Nabble.com.
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Problem reports: http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ: http://x.cygwin.com/docs/faq/
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: Can't start xterm from Cygwin/X icon in system tray
2009-12-31 13:33 ` dahaiou
@ 2009-12-31 15:35 ` Jim Reisert AD1C
2009-12-31 15:53 ` john
0 siblings, 1 reply; 12+ messages in thread
From: Jim Reisert AD1C @ 2009-12-31 15:35 UTC (permalink / raw)
To: cygwin-xfree
On Thu, Dec 31, 2009 at 6:33 AM, dahaiou wrote:
>
>
> Jim Reisert AD1C wrote:
>>
>> I am unable to start an xterm from the Cygwin/X icon in the system tray
>> (right-click, select xterm). Both setups have the same line in .XWinrc:
>> "xterm" EXEC "xterm"
>> As a work-around, I created a shortcut on my desktop to start an xterm:
>> D:\Cygwin\bin\run.exe /usr/bin/xterm -display localhost:0
>> That works perfectly,
>
> What exact command is mapped to the "xterm" label in the right-click tray
> menu? It's configured in an init file somewhere though I can't remember the
> filename right now.
"which" points to /usr/bin/xterm
> Can you check whether the DISPLAY variable is set in the xterm process
> started from the tray menu? If it isn't, that would explain it.
I tried this explicitly:
"xterm" EXEC "xterm -display localhost:0"
That didn't make a difference.
One other piece of data: I modifed ~/.XWinrc and then clicked "Reload
.xwinrc" from the menu in the system tray. This KILLED the X server!
- Jim
--
Jim Reisert AD1C, <jjreisert@alum.mit.edu>, http://www.ad1c.us
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Problem reports: http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ: http://x.cygwin.com/docs/faq/
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: Can't start xterm from Cygwin/X icon in system tray
2009-12-31 15:35 ` Jim Reisert AD1C
@ 2009-12-31 15:53 ` john
2009-12-31 16:28 ` Ken Brown
0 siblings, 1 reply; 12+ messages in thread
From: john @ 2009-12-31 15:53 UTC (permalink / raw)
To: cygwin-xfree
[-- Attachment #1: Type: TEXT/PLAIN, Size: 1401 bytes --]
I had this problem. It was happening because PATH was not being set. The
problem went away when I used /startxwin.bat instead of
/bin/startxwin.exe.
On Thu, 31 Dec 2009, Jim Reisert AD1C wrote:
> On Thu, Dec 31, 2009 at 6:33 AM, dahaiou wrote:
> >
> >
> > Jim Reisert AD1C wrote:
> >>
> >> I am unable to start an xterm from the Cygwin/X icon in the system tray
> >> (right-click, select xterm). Â Both setups have the same line in .XWinrc:
> >> Â Â Â Â "xterm" Â Â Â EXEC Â "xterm"
> >> As  a work-around, I created a shortcut on my desktop to start an xterm:
> >> Â Â D:\Cygwin\bin\run.exe /usr/bin/xterm -display localhost:0
> >> That works perfectly,
> >
> > What exact command is mapped to the "xterm" label in the right-click tray
> > menu? It's configured in an init file somewhere though I can't remember the
> > filename right now.
>
> "which" points to /usr/bin/xterm
>
> > Can you check whether the DISPLAY variable is set in the xterm process
> > started from the tray menu? If it isn't, that would explain it.
>
> I tried this explicitly:
>
> "xterm" EXEC "xterm -display localhost:0"
>
> That didn't make a difference.
>
> One other piece of data: I modifed ~/.XWinrc and then clicked "Reload
> .xwinrc" from the menu in the system tray. This KILLED the X server!
>
> - Jim
>
>
>
--
Hendrik Groeneveld
+1 (425) 327-4506
+1 (425) 645-8027 Fax
hendrik@hg.com
[-- Attachment #2: Type: text/plain, Size: 223 bytes --]
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Problem reports: http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ: http://x.cygwin.com/docs/faq/
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: Can't start xterm from Cygwin/X icon in system tray
2009-12-31 15:53 ` john
@ 2009-12-31 16:28 ` Ken Brown
0 siblings, 0 replies; 12+ messages in thread
From: Ken Brown @ 2009-12-31 16:28 UTC (permalink / raw)
To: cygwin-xfree
On 12/31/2009 10:53 AM, john at asyn dot org wrote:
> On Thu, 31 Dec 2009, Jim Reisert AD1C wrote:
>>> Jim Reisert AD1C wrote:
>>>>
>>>> I am unable to start an xterm from the Cygwin/X icon in the system tray
>>>> (right-click, select xterm). Both setups have the same line in .XWinrc:
>>>> "xterm" EXEC "xterm"
>>>> As a work-around, I created a shortcut on my desktop to start an xterm:
>>>> D:\Cygwin\bin\run.exe /usr/bin/xterm -display localhost:0
>>>> That works perfectly,
[...]
>> I tried this explicitly:
>>
>> "xterm" EXEC "xterm -display localhost:0"
>>
>> That didn't make a difference.
>>
>> One other piece of data: I modifed ~/.XWinrc and then clicked "Reload
>> .xwinrc" from the menu in the system tray. This KILLED the X server!
>
> I had this problem. It was happening because PATH was not being set.
> The problem went away when I used /startxwin.bat instead of
> /bin/startxwin.exe.
If PATH is not being set, then you're probably not running startxwin.exe
from a login shell. See
http://cygwin.com/ml/cygwin-xfree/2009-12/msg00117.html
Ken
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Problem reports: http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ: http://x.cygwin.com/docs/faq/
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: Can't start xterm from Cygwin/X icon in system tray
2009-12-30 17:07 Can't start xterm from Cygwin/X icon in system tray Jim Reisert AD1C
2009-12-31 13:33 ` dahaiou
@ 2009-12-31 20:43 ` Yaakov (Cygwin/X)
2010-01-01 15:53 ` Jim Reisert AD1C
2010-01-13 5:28 ` Jim Reisert AD1C
2 siblings, 1 reply; 12+ messages in thread
From: Yaakov (Cygwin/X) @ 2009-12-31 20:43 UTC (permalink / raw)
To: cygwin-xfree
On 30/12/2009 11:07, Jim Reisert AD1C wrote:
> I do not have a ~/.startxwinrc file. The xterm that is supposed to be
> created when the server starts doesn't start either.
>
> The symptom is that xterm.exe is shown running in the task manager,
> but there is no Xterm window on the desktop.
This sounds like it has nothing to do with startxwin. I can't reproduce
this, but do any of the following help:
1) creating a ~/.startxwinrc containing just "xterm &"?
2) changing that .startxwinrc to "run xterm"?
3) setting LANG=en_US.ISO-8859-1 ?
4) installing the font-daewoo-misc, font-isas-misc, and font-jis-misc
packages?
Yaakov
Cygwin/X
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Problem reports: http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ: http://x.cygwin.com/docs/faq/
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: Can't start xterm from Cygwin/X icon in system tray
2009-12-31 20:43 ` Yaakov (Cygwin/X)
@ 2010-01-01 15:53 ` Jim Reisert AD1C
2010-01-01 19:41 ` john
0 siblings, 1 reply; 12+ messages in thread
From: Jim Reisert AD1C @ 2010-01-01 15:53 UTC (permalink / raw)
To: cygwin-xfree
On 12/31/2009 1:43 PM, Yaakov (Cygwin/X) wrote:
> This sounds like it has nothing to do with startxwin. I can't reproduce
> this, but do any of the following help:
>
> 1) creating a ~/.startxwinrc containing just "xterm &"?
Same problem. No xterm.
> 2) changing that .startxwinrc to "run xterm"?
Pop-up: "Couldn't find xterm anywhere. I even looked in the PATH"
Same when I tried "run /usr/bin/xterm" (couldn't find /usr/bin/xterm
anywhere etc.)
> 3) setting LANG=en_US.ISO-8859-1 ?
No change.
> 4) installing the font-daewoo-misc, font-isas-misc, and font-jis-misc
> packages?
Those fonts are already installed.
As I said, I have a desktop icon for starting an XTERM that works. It
only "doesn't work" when trying to start the xterm from ~/.startxwinrc,
or from the system tray.
- Jim
--
Jim Reisert AD1C, <jjreisert@alum.mit.edu>, http://www.ad1c.us
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Problem reports: http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ: http://x.cygwin.com/docs/faq/
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: Can't start xterm from Cygwin/X icon in system tray
2010-01-01 15:53 ` Jim Reisert AD1C
@ 2010-01-01 19:41 ` john
2010-01-01 22:05 ` Jim Reisert AD1C
0 siblings, 1 reply; 12+ messages in thread
From: john @ 2010-01-01 19:41 UTC (permalink / raw)
To: cygwin-xfree
Are you executing startxwin from a login shell? I use
"\path\to\cygwin\bin\run.exe /bin/bash.exe -l -c /bin/startxwin.exe"
and it works for me.
On Fri, 1 Jan 2010, Jim Reisert AD1C wrote:
> On 12/31/2009 1:43 PM, Yaakov (Cygwin/X) wrote:
>
> > This sounds like it has nothing to do with startxwin. I can't reproduce
> > this, but do any of the following help:
> >
> > 1) creating a ~/.startxwinrc containing just "xterm &"?
>
> Same problem. No xterm.
>
> > 2) changing that .startxwinrc to "run xterm"?
>
> Pop-up: "Couldn't find xterm anywhere. I even looked in the PATH"
>
> Same when I tried "run /usr/bin/xterm" (couldn't find /usr/bin/xterm anywhere
> etc.)
>
> > 3) setting LANG=en_US.ISO-8859-1 ?
>
> No change.
>
> > 4) installing the font-daewoo-misc, font-isas-misc, and font-jis-misc
> > packages?
>
> Those fonts are already installed.
>
> As I said, I have a desktop icon for starting an XTERM that works. It only
> "doesn't work" when trying to start the xterm from ~/.startxwinrc, or from the
> system tray.
>
> - Jim
>
>
>
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Problem reports: http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ: http://x.cygwin.com/docs/faq/
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: Can't start xterm from Cygwin/X icon in system tray
2010-01-01 19:41 ` john
@ 2010-01-01 22:05 ` Jim Reisert AD1C
2010-01-03 5:01 ` Yaakov (Cygwin/X)
0 siblings, 1 reply; 12+ messages in thread
From: Jim Reisert AD1C @ 2010-01-01 22:05 UTC (permalink / raw)
To: cygwin-xfree
On 1/1/2010 12:41 PM, john wrote:
>
> Are you executing startxwin from a login shell? I use
> "\path\to\cygwin\bin\run.exe /bin/bash.exe -l -c /bin/startxwin.exe"
> and it works for me.
Yes, my startup folder shortcut is:
D:\Cygwin\bin\run.exe /usr/bin/bash.exe -l -c /usr/bin/startxwin.exe
As I've said before, this works properly on my XP SP3 system at work,
but not on my Windows 7 64-bit system at home.
- Jim
>
> On Fri, 1 Jan 2010, Jim Reisert AD1C wrote:
>
>> On 12/31/2009 1:43 PM, Yaakov (Cygwin/X) wrote:
>>
>>> This sounds like it has nothing to do with startxwin. I can't reproduce
>>> this, but do any of the following help:
>>>
>>> 1) creating a ~/.startxwinrc containing just "xterm&"?
>>
>> Same problem. No xterm.
>>
>>> 2) changing that .startxwinrc to "run xterm"?
>>
>> Pop-up: "Couldn't find xterm anywhere. I even looked in the PATH"
>>
>> Same when I tried "run /usr/bin/xterm" (couldn't find /usr/bin/xterm anywhere
>> etc.)
>>
>>> 3) setting LANG=en_US.ISO-8859-1 ?
>>
>> No change.
>>
>>> 4) installing the font-daewoo-misc, font-isas-misc, and font-jis-misc
>>> packages?
>>
>> Those fonts are already installed.
>>
>> As I said, I have a desktop icon for starting an XTERM that works. It only
>> "doesn't work" when trying to start the xterm from ~/.startxwinrc, or from the
>> system tray.
>>
>> - Jim
--
Jim Reisert AD1C, <jjreisert@alum.mit.edu>, http://www.ad1c.us
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Problem reports: http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ: http://x.cygwin.com/docs/faq/
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: Can't start xterm from Cygwin/X icon in system tray
2010-01-01 22:05 ` Jim Reisert AD1C
@ 2010-01-03 5:01 ` Yaakov (Cygwin/X)
2010-01-03 6:56 ` Jim Reisert AD1C
0 siblings, 1 reply; 12+ messages in thread
From: Yaakov (Cygwin/X) @ 2010-01-03 5:01 UTC (permalink / raw)
To: cygwin-xfree
On 01/01/2010 16:04, Jim Reisert AD1C wrote:
> Yes, my startup folder shortcut is:
>
> D:\Cygwin\bin\run.exe /usr/bin/bash.exe -l -c /usr/bin/startxwin.exe
>
> As I've said before, this works properly on my XP SP3 system at work,
> but not on my Windows 7 64-bit system at home.
I run Win7 64bit as well and the shortcut WJFFM.
One thing I just realized tonight is that if you use keychain(1) and
added the command to your ~/.bash_profile (as suggested in that
manpage), AND you use the shortcut to launch XWin without having started
a console session first, then the login shell in which we want to launch
startxwin will wait indefinitely for your SSH password (which you won't
see because we use run.exe). Trying the shortcut again while this
occurs should work after a ~30-sec delay.
The fix for that is to test the presence of an interactive shell before
running keychain (see bash.info, section 6.3.2):
case "$-" in
*i*) eval `keychain --eval ~/.ssh/id_dsa` ;;
esac
Since you mention it's your home computer that's having issues, I can
only guess this might be it. If you're not using keychain, then we'll
need to see your 'cygcheck -srv' output and your /var/log/XWin.0.log (as
plain-text attachments).
Yaakov
Cygwin/X
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Problem reports: http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ: http://x.cygwin.com/docs/faq/
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: Can't start xterm from Cygwin/X icon in system tray
2010-01-03 5:01 ` Yaakov (Cygwin/X)
@ 2010-01-03 6:56 ` Jim Reisert AD1C
0 siblings, 0 replies; 12+ messages in thread
From: Jim Reisert AD1C @ 2010-01-03 6:56 UTC (permalink / raw)
To: cygwin-xfree
[-- Attachment #1: Type: text/plain, Size: 1281 bytes --]
On 1/2/2010 10:01 PM, Yaakov (Cygwin/X) wrote:
> Since you mention it's your home computer that's having issues, I can
> only guess this might be it. If you're not using keychain, then we'll
> need to see your 'cygcheck -srv' output and your /var/log/XWin.0.log (as
> plain-text attachments).
Hi Yaakov,
I am not using keychain. I disabled Microsoft Security Essentials. I
do not have an ~/.Xdefaults nor a ~/.startxwinrc file.
I've attached the output from cygcheck, as well as the Xwin log. I got
these warnings while running it:
/usr/bin/cygrunsrv: warning: OpenService failed for 'DcomLaunch': Win32
error 5
Access is denied.
/usr/bin/cygrunsrv: warning: OpenService failed for 'odserv': Win32 error 5
Access is denied.
/usr/bin/cygrunsrv: warning: OpenService failed for 'ose': Win32 error 5
Access is denied.
/usr/bin/cygrunsrv: warning: OpenService failed for 'pla': Win32 error 5
Access is denied.
/usr/bin/cygrunsrv: warning: OpenService failed for 'QWAVE': Win32 error 5
Access is denied.
/usr/bin/cygrunsrv: warning: OpenService failed for 'RpcEptMapper':
Win32 error 5
Access is denied.
/usr/bin/cygrunsrv: warning: OpenService failed for 'RpcSs': Win32 error 5
Access is denied.
--
Jim Reisert AD1C, <jjreisert@alum.mit.edu>, http://www.ad1c.us
[-- Attachment #2: cygcheck.out --]
[-- Type: text/plain, Size: 20054 bytes --]
Cygwin Configuration Diagnostics
Current System Time: Sat Jan 02 23:52:25 2010
Windows 7 Professional N Ver 6.1 Build 7600
Running under WOW64 on AMD64
Path: .\
D:\Home\bin
D:\Cygwin\usr\local\emacs\bin
D:\Cygwin\Bin
C:\Windows\system32
C:\Windows
C:\Windows\System32\Wbem
C:\Windows\System32\WindowsPowerShell\v1.0\
C:\Program
Files
(x86)\QuickTime\QTSystem\
C:\Program
Files
(x86)\Common
Files\Acronis\SnapAPI\
D:\utility\DISKEE~1\
D:\WATCOM\BINNT
D:\WATCOM\BINW
Output from D:\Cygwin\bin\id.exe
UID: 1001(Jim Reisert) GID: 513(None)
545(Users) 1000(HomeUsers) 513(None)
SysDir: C:\Windows\system32
WinDir: C:\Windows
CYGWIN = 'tty'
HOME = '/cygdrive/d/Home'
PWD = '/cygdrive/d/Home'
USER = 'Jim Reisert'
LIBRARY_PATH = '/usr/lib/mingw'
ALLUSERSPROFILE = 'C:\ProgramData'
APPDATA = 'C:\Users\Jim Reisert\AppData\Roaming'
CLASSPATH = '.;C:\Program Files (x86)\QuickTime\QTSystem\QTJava.zip'
COMMONPROGRAMFILES = 'C:\Program Files (x86)\Common Files'
CommonProgramFiles(x86) = 'C:\Program Files (x86)\Common Files'
CommonProgramW6432 = 'C:\Program Files\Common Files'
COMPUTERNAME = 'JJR'
COMSPEC = 'C:\Windows\system32\cmd.exe'
CVSROOT = 'F:\CVS'
CYGROOT = 'D:\Cygwin'
EDPATH = 'd:\WATCOM\EDDAT'
FP_NO_HOST_CHECK = 'NO'
HOMEDRIVE = 'C:'
HOMEPATH = '\Users\Jim Reisert'
INCLUDE = 'd:\WATCOM\H;d:\WATCOM\H\NT'
LANG = 'en_US.ISO-8859-1'
LANG_JJR = 'C'
LC_TIME_JJR = 'C'
LOCALAPPDATA = 'C:\Users\Jim Reisert\AppData\Local'
LOCALE_JJR = 'C.UTF-8'
LOGONSERVER = '\\JJR'
NUMBER_OF_PROCESSORS = '4'
OS = 'Windows_NT'
PATHEXT = '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC'
PROCESSOR_ARCHITECTURE = 'x86'
PROCESSOR_ARCHITEW6432 = 'AMD64'
PROCESSOR_IDENTIFIER = 'Intel64 Family 6 Model 15 Stepping 7, GenuineIntel'
PROCESSOR_LEVEL = '6'
PROCESSOR_REVISION = '0f07'
ProgramData = 'C:\ProgramData'
PROGRAMFILES = 'C:\Program Files (x86)'
ProgramFiles(x86) = 'C:\Program Files (x86)'
ProgramW6432 = 'C:\Program Files'
PSModulePath = 'C:\Windows\system32\WindowsPowerShell\v1.0\Modules\'
PUBLIC = 'C:\Users\Public'
QTJAVA = 'C:\Program Files (x86)\QuickTime\QTSystem\QTJava.zip'
SESSIONNAME = 'Console'
SYSTEMDRIVE = 'C:'
SYSTEMROOT = 'C:\Windows'
TEMP = '/cygdrive/c/Users/JIMREI~1/AppData/Local/Temp'
TERM = 'xterm'
TMP = '/cygdrive/c/Users/JIMREI~1/AppData/Local/Temp'
USERDOMAIN = 'JJR'
USERNAME = 'Jim Reisert'
USERPROFILE = 'C:\Users\Jim Reisert'
VS80COMNTOOLS = 'D:\Microsoft Visual Studio 8\Common7\Tools\'
WATCOM = 'd:\WATCOM'
WINDIR = 'C:\Windows'
WINDOWID = '10485797'
DISPLAY = 'localhost:0.0'
XTERM_VERSION = 'Cygwin 6.8.99.903(251)'
XTERM_LOCALE = 'en_US.ISO-8859-1'
LOGNAME = 'Jim Reisert'
XTERM_SHELL = '/bin/tcsh'
HOSTTYPE = 'i386-cygwin'
VENDOR = 'intel'
OSTYPE = 'cygwin'
MACHTYPE = 'i386'
SHLVL = '1'
GROUP = 'None'
HOST = 'JJR'
REMOTEHOST = 'JJR'
MANPATH = ':/usr/ssl/man'
CVSEDITOR = 'emacs'
G_SLICE = 'always-malloc'
DXSPIDER_ROOT = '/cygdrive/e/spider'
HKEY_CURRENT_USER\Software\Cygwin
HKEY_CURRENT_USER\Software\Cygwin\Program Options
HKEY_CURRENT_USER\Software\Cygwin\setup
HKEY_LOCAL_MACHINE\SOFTWARE\Cygwin
HKEY_LOCAL_MACHINE\SOFTWARE\Cygwin\Installations
(default) = '\??\D:\Cygwin'
HKEY_LOCAL_MACHINE\SOFTWARE\Cygwin\Program Options
HKEY_LOCAL_MACHINE\SOFTWARE\Cygwin\setup
(default) = 'D:\cygwin'
obcaseinsensitive set to 1
Cygwin installations found in the registry:
System: Key: 1720b01b097bf4fc Path: D:\Cygwin
a: fd FAT 1Mb 0% CP UN
c: hd NTFS 32765Mb 64% CP CS UN PA FC JJR
d: hd NTFS 32765Mb 25% CP CS UN PA FC Applications
e: hd NTFS 32765Mb 30% CP CS UN PA FC Ham Radio
f: hd NTFS 32765Mb 49% CP CS UN PA FC Data
g: hd NTFS 12291Mb 35% CP CS UN PA FC Swap
i: hd NTFS 163842Mb 50% CP CS UN PA FC iTunes
j: fd FAT32 7654Mb 71% CP UN
p: hd NTFS 408206Mb 48% CP CS UN PA FC Photo
r: cd N/A N/A
s: hd NTFS 715401Mb 49% CP CS UN PA FC Nova Backup
u: cd CDFS 6Mb 100% CS UN U3 System
y: fd N/A N/A
z: fd N/A N/A
D:\Cygwin / system binary,auto
D:\Cygwin\bin /usr/bin system binary,auto
D:\Cygwin\lib /usr/lib system binary,auto
cygdrive prefix /cygdrive user binary,auto
Found: D:\Cygwin\Bin\awk.exe
-> D:\Cygwin\bin\gawk.exe
Found: D:\Cygwin\Bin\bash.exe
Found: D:\Cygwin\Bin\cat.exe
Found: D:\Cygwin\Bin\cp.exe
Found: D:\Cygwin\Bin\cpp.exe
-> D:\Cygwin\etc\alternatives\cpp
-> D:\Cygwin\bin\cpp-4.exe
Not Found: crontab
Found: D:\Cygwin\Bin\find.exe
Found: C:\Windows\system32\find.exe
Warning: D:\Cygwin\Bin\find.exe hides C:\Windows\system32\find.exe
Found: D:\Cygwin\Bin\gcc.exe
-> D:\Cygwin\etc\alternatives\gcc
-> D:\Cygwin\bin\gcc-4.exe
Found: D:\Cygwin\Bin\gdb.exe
Found: D:\Cygwin\Bin\grep.exe
Found: D:\Cygwin\Bin\kill.exe
Found: D:\Cygwin\Bin\ld.exe
Found: D:\Cygwin\Bin\ls.exe
Found: D:\Cygwin\Bin\make.exe
Found: D:\Cygwin\Bin\mv.exe
Found: D:\Cygwin\Bin\patch.exe
Found: D:\Cygwin\Bin\perl.exe
Found: D:\Cygwin\Bin\rm.exe
Found: D:\Cygwin\Bin\sed.exe
Found: D:\Cygwin\Bin\ssh.exe
Found: D:\Cygwin\Bin\sh.exe
Found: D:\Cygwin\Bin\tar.exe
Found: D:\Cygwin\Bin\test.exe
Found: D:\WATCOM\BINNT\vi.exe
Found: D:\WATCOM\BINW\vi.exe
Warning: D:\WATCOM\BINNT\vi.exe hides D:\WATCOM\BINW\vi.exe
Not Found: vim
61k 2009/03/02 D:\Cygwin\Bin\cygbz2-1.dll - os=4.0 img=1.0 sys=4.0
"cygbz2-1.dll" v0.0 ts=2009/3/1 20:11
7k 2003/10/19 D:\Cygwin\Bin\cygcrypt-0.dll - os=4.0 img=1.0 sys=4.0
"cygcrypt-0.dll" v0.0 ts=2003/10/19 1:57
1147k 2009/11/05 D:\Cygwin\Bin\cygcrypto-0.9.8.dll - os=4.0 img=1.0 sys=4.0
"cygcrypto-0.9.8.dll" v0.0 ts=2009/11/5 10:36
943k 2007/12/17 D:\Cygwin\Bin\cygdb-4.5.dll - os=4.0 img=1.0 sys=4.0
"cygdb-4.5.dll" v0.0 ts=2007/12/17 6:12
1296k 2007/12/17 D:\Cygwin\Bin\cygdb_cxx-4.5.dll - os=4.0 img=1.0 sys=4.0
"cygdb_cxx-4.5.dll" v0.0 ts=2007/12/17 6:12
118k 2008/05/09 D:\Cygwin\Bin\cygexpat-1.dll - os=4.0 img=1.0 sys=4.0
"cygexpat-1.dll" v0.0 ts=2008/5/8 22:03
24k 2009/12/11 D:\Cygwin\Bin\cygffi-4.dll - os=4.0 img=1.0 sys=4.0
"cygffi-4.dll" v0.0 ts=2009/12/7 17:39
174k 2009/09/25 D:\Cygwin\Bin\cygfontconfig-1.dll - os=4.0 img=1.0 sys=4.0
"cygfontconfig-1.dll" v0.0 ts=2009/9/24 20:05
21k 2009/10/14 D:\Cygwin\Bin\cygfontenc-1.dll - os=4.0 img=1.0 sys=4.0
"cygfontenc-1.dll" v0.0 ts=2009/10/13 19:04
40k 2009/03/01 D:\Cygwin\Bin\cygform-8.dll - os=4.0 img=1.0 sys=4.0
"cygform-8.dll" v0.0 ts=2009/2/28 23:32
43k 2009/11/20 D:\Cygwin\Bin\cygform-9.dll - os=4.0 img=1.0 sys=4.0
"cygform-9.dll" v0.0 ts=2009/11/20 12:14
489k 2009/10/15 D:\Cygwin\Bin\cygfreetype-6.dll - os=4.0 img=1.0 sys=4.0
"cygfreetype-6.dll" v0.0 ts=2009/10/14 19:22
45k 2009/12/11 D:\Cygwin\Bin\cyggcc_s-1.dll - os=4.0 img=1.0 sys=4.0
"cyggcc_s-1.dll" v0.0 ts=2009/12/7 17:30
19k 2009/02/26 D:\Cygwin\Bin\cyggdbm-4.dll - os=4.0 img=1.0 sys=4.0
"cyggdbm-4.dll" v0.0 ts=2009/2/26 0:58
8k 2009/02/26 D:\Cygwin\Bin\cyggdbm_compat-4.dll - os=4.0 img=1.0 sys=4.0
"cyggdbm_compat-4.dll" v0.0 ts=2009/2/26 0:58
29k 2009/03/23 D:\Cygwin\Bin\cyggif-4.dll - os=4.0 img=1.0 sys=4.0
"cyggif-4.dll" v0.0 ts=2009/3/23 12:55
2311k 2009/10/16 D:\Cygwin\Bin\cygGL-1.dll - os=4.0 img=1.0 sys=4.0
"cygGL-1.dll" v0.0 ts=2009/10/16 3:17
315k 2009/06/06 D:\Cygwin\Bin\cyggmp-3.dll - os=4.0 img=1.0 sys=4.0
"cyggmp-3.dll" v0.0 ts=2009/6/6 5:23
27k 2009/12/11 D:\Cygwin\Bin\cyggomp-1.dll - os=4.0 img=1.0 sys=4.0
"cyggomp-1.dll" v0.0 ts=2009/12/7 17:42
25k 2009/07/06 D:\Cygwin\Bin\cyghistory7.dll - os=4.0 img=1.0 sys=4.0
"cyghistory7.dll" v0.0 ts=2009/7/5 8:45
73k 2009/09/02 D:\Cygwin\Bin\cygICE-6.dll - os=4.0 img=1.0 sys=4.0
"cygICE-6.dll" v0.0 ts=2009/9/2 15:39
360k 2009/12/29 D:\Cygwin\Bin\cygicons-0.dll - os=4.0 img=1.4 sys=4.0
"cygicons-0.dll" v0.0 ts=2009/12/28 22:30
982k 2009/12/23 D:\Cygwin\Bin\cygiconv-2.dll - os=4.0 img=1.0 sys=4.0
"cygiconv-2.dll" v0.0 ts=2009/12/23 6:25
37k 2003/08/10 D:\Cygwin\Bin\cygintl-2.dll - os=4.0 img=1.0 sys=4.0
"cygintl-2.dll" v0.0 ts=2003/8/10 15:50
31k 2005/11/20 D:\Cygwin\Bin\cygintl-3.dll - os=4.0 img=1.0 sys=4.0
"cygintl-3.dll" v0.0 ts=2005/11/19 19:04
31k 2009/04/03 D:\Cygwin\Bin\cygintl-8.dll - os=4.0 img=1.0 sys=4.0
"cygintl-8.dll" v0.0 ts=2009/4/2 19:15
47k 2009/12/23 D:\Cygwin\Bin\cygjbig-2.dll - os=4.0 img=1.0 sys=4.0
"cygjbig-2.dll" v0.0 ts=2009/12/23 9:59
125k 2009/08/08 D:\Cygwin\Bin\cygjpeg-62.dll - os=4.0 img=1.0 sys=4.0
"cygjpeg-62.dll" v0.0 ts=2009/8/8 14:48
193k 2009/08/08 D:\Cygwin\Bin\cygjpeg-7.dll - os=4.0 img=1.0 sys=4.0
"cygjpeg-7.dll" v0.0 ts=2009/8/8 13:39
5k 2009/12/07 D:\Cygwin\Bin\cyglsa.dll - os=4.0 img=1.0 sys=4.0
"cyglsa.dll" v0.0 ts=2009/12/7 3:49
9k 2009/12/07 D:\Cygwin\Bin\cyglsa64.dll - os=4.0 img=0.0 sys=5.2
21k 2009/03/01 D:\Cygwin\Bin\cygmenu-8.dll - os=4.0 img=1.0 sys=4.0
"cygmenu-8.dll" v0.0 ts=2009/2/28 23:31
25k 2009/11/20 D:\Cygwin\Bin\cygmenu-9.dll - os=4.0 img=1.0 sys=4.0
"cygmenu-9.dll" v0.0 ts=2009/11/20 12:13
211k 2009/06/06 D:\Cygwin\Bin\cygmp-3.dll - os=4.0 img=1.0 sys=4.0
"cygmp-3.dll" v0.0 ts=2009/6/6 5:23
269k 2009/06/07 D:\Cygwin\Bin\cygmpfr-1.dll - os=4.0 img=1.0 sys=4.0
"cygmpfr-1.dll" v0.0 ts=2009/6/7 15:10
66k 2009/03/01 D:\Cygwin\Bin\cygncurses++-8.dll - os=4.0 img=1.0 sys=4.0
"cygncurses++-8.dll" v0.0 ts=2009/2/28 23:39
63k 2009/11/20 D:\Cygwin\Bin\cygncurses++-9.dll - os=4.0 img=1.0 sys=4.0
"cygncurses++-9.dll" v0.0 ts=2009/11/20 12:25
237k 2009/03/01 D:\Cygwin\Bin\cygncurses-8.dll - os=4.0 img=1.0 sys=4.0
"cygncurses-8.dll" v0.0 ts=2009/2/28 23:28
198k 2009/11/20 D:\Cygwin\Bin\cygncurses-9.dll - os=4.0 img=1.0 sys=4.0
"cygncurses-9.dll" v0.0 ts=2009/11/20 12:10
11k 2009/03/01 D:\Cygwin\Bin\cygpanel-8.dll - os=4.0 img=1.0 sys=4.0
"cygpanel-8.dll" v0.0 ts=2009/2/28 23:30
13k 2009/11/20 D:\Cygwin\Bin\cygpanel-9.dll - os=4.0 img=1.0 sys=4.0
"cygpanel-9.dll" v0.0 ts=2009/11/20 12:12
217k 2009/11/10 D:\Cygwin\Bin\cygpcre-0.dll - os=4.0 img=1.0 sys=4.0
"cygpcre-0.dll" v0.0 ts=2009/10/25 3:42
8k 2009/11/10 D:\Cygwin\Bin\cygpcreposix-0.dll - os=4.0 img=1.0 sys=4.0
"cygpcreposix-0.dll" v0.0 ts=2009/10/25 3:42
1553k 2009/12/19 D:\Cygwin\Bin\cygperl5_10.dll - os=4.0 img=1.0 sys=4.0
"cygperl5_10.dll" v0.0 ts=2009/12/18 7:54
352k 2009/12/22 D:\Cygwin\Bin\cygpixman-1-0.dll - os=4.0 img=1.0 sys=4.0
"cygpixman-1-0.dll" v0.0 ts=2009/12/22 0:42
242k 2009/03/07 D:\Cygwin\Bin\cygpng12.dll - os=4.0 img=1.0 sys=4.0
"cygpng12.dll" v0.0 ts=2009/3/7 15:38
22k 2002/06/09 D:\Cygwin\Bin\cygpopt-0.dll - os=4.0 img=1.0 sys=4.0
"cygpopt-0.dll" v0.0 ts=2002/6/8 23:45
162k 2009/07/06 D:\Cygwin\Bin\cygreadline7.dll - os=4.0 img=1.0 sys=4.0
"cygreadline7.dll" v0.0 ts=2009/7/5 8:45
27k 2009/09/03 D:\Cygwin\Bin\cygSM-6.dll - os=4.0 img=1.0 sys=4.0
"cygSM-6.dll" v0.0 ts=2009/9/3 2:56
252k 2009/11/05 D:\Cygwin\Bin\cygssl-0.9.8.dll - os=4.0 img=1.0 sys=4.0
"cygssl-0.9.8.dll" v0.0 ts=2009/11/5 10:36
10k 2009/12/11 D:\Cygwin\Bin\cygssp-0.dll - os=4.0 img=1.0 sys=4.0
"cygssp-0.dll" v0.0 ts=2009/12/7 17:38
773k 2009/12/11 D:\Cygwin\Bin\cygstdc++-6.dll - os=4.0 img=1.0 sys=4.0
"cygstdc++-6.dll" v0.0 ts=2009/12/7 18:07
48k 2009/11/20 D:\Cygwin\Bin\cygtic-9.dll - os=4.0 img=1.0 sys=4.0
"cygtic-9.dll" v0.0 ts=2009/11/20 12:10
347k 2009/12/23 D:\Cygwin\Bin\cygtiff-5.dll - os=4.0 img=1.0 sys=4.0
"cygtiff-5.dll" v0.0 ts=2009/12/23 10:11
11k 2009/12/23 D:\Cygwin\Bin\cygtiffxx-5.dll - os=4.0 img=1.0 sys=4.0
"cygtiffxx-5.dll" v0.0 ts=2009/12/23 10:11
137k 2009/11/16 D:\Cygwin\Bin\cygustr-1.dll - os=4.0 img=1.0 sys=4.0
"cygustr-1.dll" v0.0 ts=2009/11/16 0:46
24k 2009/03/29 D:\Cygwin\Bin\cygwrap-0.dll - os=4.0 img=1.0 sys=4.0
"cygwrap-0.dll" v0.0 ts=2009/3/29 0:28
1038k 2009/11/11 D:\Cygwin\Bin\cygX11-6.dll - os=4.0 img=1.0 sys=4.0
"cygX11-6.dll" v0.0 ts=2009/11/10 21:15
9k 2009/09/03 D:\Cygwin\Bin\cygXau-6.dll - os=4.0 img=1.0 sys=4.0
"cygXau-6.dll" v0.0 ts=2009/9/2 15:47
352k 2009/10/19 D:\Cygwin\Bin\cygXaw-7.dll - os=4.0 img=1.0 sys=4.0
"cygXaw-7.dll" v0.0 ts=2009/10/18 15:55
268k 2008/11/15 D:\Cygwin\Bin\cygXaw3d-7.dll - os=4.0 img=1.0 sys=4.0
"cygXaw3d-7.dll" v0.0 ts=2008/11/13 1:37
76k 2009/12/14 D:\Cygwin\Bin\cygxcb-1.dll - os=4.0 img=1.0 sys=4.0
"cygxcb-1.dll" v0.0 ts=2009/12/14 12:17
17k 2009/10/14 D:\Cygwin\Bin\cygXdmcp-6.dll - os=4.0 img=1.0 sys=4.0
"cygXdmcp-6.dll" v0.0 ts=2009/10/13 16:31
51k 2009/10/22 D:\Cygwin\Bin\cygXext-6.dll - os=4.0 img=1.0 sys=4.0
"cygXext-6.dll" v0.0 ts=2009/10/21 21:45
66k 2009/10/15 D:\Cygwin\Bin\cygXft-2.dll - os=4.0 img=1.0 sys=4.0
"cygXft-2.dll" v0.0 ts=2009/10/14 14:33
122k 2009/10/15 D:\Cygwin\Bin\cygxkbfile-1.dll - os=4.0 img=1.0 sys=4.0
"cygxkbfile-1.dll" v0.0 ts=2009/10/13 23:57
1123k 2009/10/08 D:\Cygwin\Bin\cygxml2-2.dll - os=4.0 img=1.0 sys=4.0
"cygxml2-2.dll" v0.0 ts=2009/10/6 20:49
75k 2009/10/14 D:\Cygwin\Bin\cygXmu-6.dll - os=4.0 img=1.0 sys=4.0
"cygXmu-6.dll" v0.0 ts=2009/10/14 1:29
11k 2009/10/14 D:\Cygwin\Bin\cygXmuu-1.dll - os=4.0 img=1.0 sys=4.0
"cygXmuu-1.dll" v0.0 ts=2009/10/14 1:29
53k 2009/10/14 D:\Cygwin\Bin\cygXpm-4.dll - os=4.0 img=1.0 sys=4.0
"cygXpm-4.dll" v0.0 ts=2009/10/14 11:01
30k 2009/10/14 D:\Cygwin\Bin\cygXrender-1.dll - os=4.0 img=1.0 sys=4.0
"cygXrender-1.dll" v0.0 ts=2009/10/14 1:40
277k 2009/10/14 D:\Cygwin\Bin\cygXt-6.dll - os=4.0 img=1.0 sys=4.0
"cygXt-6.dll" v0.0 ts=2009/10/13 21:02
64k 2009/03/02 D:\Cygwin\Bin\cygz.dll - os=4.0 img=1.0 sys=4.0
"cygz.dll" v0.0 ts=2009/3/1 18:33
2419k 2009/12/07 D:\Cygwin\Bin\cygwin1.dll - os=4.0 img=1.0 sys=4.0
"cygwin1.dll" v0.0 ts=2009/12/7 3:48
Cygwin DLL version info:
DLL version: 1.7.1
DLL epoch: 19
DLL old termios: 5
DLL malloc env: 28
Cygwin conv: 181
API major: 0
API minor: 218
Shared data: 5
DLL identifier: cygwin1
Mount registry: 3
Cygwin registry name: Cygwin
Program options name: Program Options
Installations name: Installations
Cygdrive default prefix:
Build date: Mon Dec 7 11:48:55 CET 2009
Shared id: cygwin1S5
No Cygwin services found.
Cygwin Package Information
Last downloaded files to: ”(
Last downloaded files from: ”(
Package Version
_update-info-dir 00839-1
alternatives 1.3.30c-10
base-cygwin 2.1-1
base-files 3.9-3
base-passwd 3.1-1
bash 3.2.49-23
binutils 2.19.51-1
bzip2 1.0.5-10
coreutils 7.0-2
crypt 1.1-1
csih 0.9.1-1
cvs 1.12.13-10
cygrunsrv 1.34-1
cygutils 1.4.2-1
cygwin 1.7.1-1
cygwin-doc 1.5-1
dash 0.5.5.1-2
diffutils 2.8.7-2
e2fsprogs 1.35-3
editrights 1.01-2
emacs 23.1-10
emacs-X11 23.1-10
expat 2.0.1-1
findutils 4.5.4-1
font-adobe-dpi75 1.0.1-1
font-alias 1.0.2-1
font-daewoo-misc 1.0.1-1
font-encodings 1.0.3-1
font-isas-misc 1.0.1-1
font-jis-misc 1.0.1-1
font-misc-misc 1.1.0-1
font-xfree86-type1 1.0.2-1
fontconfig 2.7.3-1
fortune 1.99.1-2
gawk 3.1.7-1
gcc-core 3.4.4-999
gcc-g++ 3.4.4-999
gcc-mingw-core 20050522-1
gcc-mingw-g++ 20050522-1
gcc4 4.3.4-3
gcc4-core 4.3.4-3
gcc4-g++ 4.3.4-3
gdb 6.8-2
gettext 0.17-11
grep 2.5.4-2
groff 1.19.2-2
gzip 1.3.12-2
inetutils 1.5-6
ipc-utils 1.0-1
less 429-1
libbz2_1 1.0.5-10
libdb4.5 4.5.20.2-2
libexpat1 2.0.1-1
libexpat1-devel 2.0.1-1
libffi4 4.3.4-3
libfontconfig1 2.7.3-1
libfontenc1 1.0.5-1
libfreetype6 2.3.11-1
libgcc1 4.3.4-3
libgdbm4 1.8.3-20
libgif4 4.1.6-10
libGL1 7.5.2-1
libgmp3 4.3.1-3
libgomp1 4.3.4-3
libICE6 1.0.6-1
libiconv2 1.13.1-1
libintl2 0.12.1-3
libintl3 0.14.5-1
libintl8 0.17-11
libjbig2 2.0-11
libjpeg62 6b-21
libjpeg7 7-10
libmpfr1 2.4.1-4
libncurses8 5.5-10
libncurses9 5.7-16
libpcre0 8.00-1
libpixman1_0 0.16.4-1
libpng12 1.2.35-10
libpopt0 1.6.4-4
libreadline7 6.0.3-2
libSM6 1.1.1-1
libssp0 4.3.4-3
libstdc++6 4.3.4-3
libstdc++6-devel 4.3.4-3
libtiff5 3.9.2-1
libustr1 1.0.4-11
libwrap0 7.6-20
libX11_6 1.3.2-2
libXau6 1.0.5-1
libXaw3d7 1.5D-8
libXaw7 1.0.7-1
libxcb1 1.5-1
libXdmcp6 1.0.3-1
libXext6 1.1.1-1
libXft2 2.1.14-1
libxkbfile1 1.0.6-1
libxml2 2.7.4-1
libXmu6 1.0.5-1
libXmuu1 1.0.5-1
libXpm4 3.5.8-1
libXrender1 0.9.5-1
libXt6 1.0.7-1
login 1.10-10
luit 1.0.4-2
lynx 2.8.5-4
make 3.81-2
man 1.6e-1
mingw-runtime 3.17-1
mintty 0.5.6-1
mkfontdir 1.0.5-1
mkfontscale 1.0.7-1
ncftp 3.2.1-1
openssh 5.3p1-1
openssl 0.9.8l-2
patch 2.5.8-9
perl 5.10.1-2
rebase 3.0.1-1
run 1.1.12-11
run2 0.4.0-1
sed 4.1.5-2
tar 1.22-1
tcltk 20080420-1
tcsh 6.16.00-1
termcap 5.7_20091114-13
terminfo 5.7_20091114-13
terminfo0 5.5_20061104-11
texinfo 4.13-3
twm 1.0.4-1
tzcode 2009k-1
unzip 6.0-10
util-linux 2.14.1-1
w32api 3.14-1
wget 1.11.4-4
which 2.20-2
xauth 1.0.4-1
xcursor-themes 1.0.2-1
xemacs-emacs-common 21.4.22-1
xhost 1.0.3-1
xinit 1.2.0-2
xkbcomp 1.1.1-1
xkeyboard-config 1.7-1
xmodmap 1.0.4-1
xorg-server 1.7.3-1
xrdb 1.0.6-1
xterm 251-1
zip 3.0-11
zlib 1.2.3-10
zlib-devel 1.2.3-10
zlib0 1.2.3-10
Use -h to see help about each section
[-- Attachment #3: XWin.0.log --]
[-- Type: text/plain, Size: 4764 bytes --]
Welcome to the XWin X Server
Vendor: The Cygwin/X Project
Release: 1.7.3.0 (10703000)
Build Date: 2009-12-22
Contact: cygwin-xfree@cygwin.com
XWin was started with the following command line:
X :0 -multiwindow
ddxProcessArgument - Initializing default screens
winInitializeDefaultScreens - w 1680 h 1050
winInitializeDefaultScreens - Returning
2010-01-02 23:51:19 winValidateArgs - g_iNumScreens: 1 iMaxConsecutiveScreen: 1
2010-01-02 23:51:19 (II) xorg.conf is not supported
2010-01-02 23:51:19 (II) See http://x.cygwin.com/docs/faq/cygwin-x-faq.html for more information
2010-01-02 23:51:19 winPrefsLoadPreferences: /etc/X11/system.XWinrc
2010-01-02 23:51:19 LoadPreferences: Done parsing the configuration file...
2010-01-02 23:51:19 winGetDisplay: DISPLAY=:0.0
2010-01-02 23:51:19 winDetectSupportedEngines - Windows NT/2000/XP
2010-01-02 23:51:19 winDetectSupportedEngines - DirectDraw installed
2010-01-02 23:51:19 winDetectSupportedEngines - DirectDraw4 installed
2010-01-02 23:51:19 winDetectSupportedEngines - Returning, supported engines 00000007
2010-01-02 23:51:19 winSetEngine - Multi Window or Rootless => ShadowGDI
2010-01-02 23:51:19 winAdjustVideoModeShadowGDI - Using Windows display depth of 32 bits per pixel
2010-01-02 23:51:19 winAllocateFBShadowGDI - Creating DIB with width: 1680 height: 1050 depth: 32
2010-01-02 23:51:19 winFinishScreenInitFB - Masks: 00ff0000 0000ff00 000000ff
2010-01-02 23:51:19 winInitVisualsShadowGDI - Masks 00ff0000 0000ff00 000000ff BPRGB 8 d 24 bpp 32
2010-01-02 23:51:19 null screen fn ReparentWindow
2010-01-02 23:51:19 null screen fn RestackWindow
2010-01-02 23:51:19 InitQueue - Calling pthread_mutex_init
2010-01-02 23:51:19 InitQueue - pthread_mutex_init returned
2010-01-02 23:51:19 InitQueue - Calling pthread_cond_init
2010-01-02 23:51:19 InitQueue - pthread_cond_init returned
2010-01-02 23:51:19 winInitMultiWindowWM - Hello
2010-01-02 23:51:19 winMultiWindowXMsgProc - Hello
2010-01-02 23:51:19 Screen 0 added at XINERAMA coordinate (0,0).
2010-01-02 23:51:19 winInitMultiWindowWM - Calling pthread_mutex_lock ()
2010-01-02 23:51:19 winMultiWindowXMsgProc - Calling pthread_mutex_lock ()
2010-01-02 23:51:19 MIT-SHM extension disabled due to lack of kernel support
2010-01-02 23:51:19 XFree86-Bigfont extension local-client optimization disabled due to lack of shared memory support in the kernel
2010-01-02 23:51:19 (II) AIGLX: Loaded and initialized /usr/lib/dri/swrast_dri.so
2010-01-02 23:51:19 (II) GLX: Initialized DRISWRAST GL provider for screen 0
2010-01-02 23:51:19 [dix] Could not init font path element /usr/share/fonts/TTF/, removing from list!
2010-01-02 23:51:19 [dix] Could not init font path element /usr/share/fonts/OTF/, removing from list!
2010-01-02 23:51:20 winPointerWarpCursor - Discarding first warp: 840 525
2010-01-02 23:51:20 (--) 16 mouse buttons found
2010-01-02 23:51:20 (--) Setting autorepeat to delay=500, rate=31
2010-01-02 23:51:20 (--) winConfigKeyboard - Layout: "00000409" (00000409)
2010-01-02 23:51:20 (--) Using preset keyboard for "English (USA)" (409), type "4"
2010-01-02 23:51:20 Rules = "base" Model = "pc105" Layout = "us" Variant = "none" Options = "none"
2010-01-02 23:51:20 winInitMultiWindowWM - pthread_mutex_lock () returned.
2010-01-02 23:51:20 winProcEstablishConnection - Hello
2010-01-02 23:51:20 winInitMultiWindowWM - pthread_mutex_unlock () returned.
2010-01-02 23:51:20 winMultiWindowXMsgProc - pthread_mutex_lock () returned.
2010-01-02 23:51:20 winInitClipboard ()
2010-01-02 23:51:20 winGetDisplay: DISPLAY=:0.0
2010-01-02 23:51:20 winMultiWindowXMsgProc - pthread_mutex_unlock () returned.
2010-01-02 23:51:20 winProcEstablishConnection - winInitClipboard returned.
2010-01-02 23:51:20 winClipboardProc - Hello
2010-01-02 23:51:20 winInitMultiWindowWM - DISPLAY=:0.0
2010-01-02 23:51:20 winGetDisplay: DISPLAY=:0.0
2010-01-02 23:51:20 DetectUnicodeSupport - Windows NT/2000/XP
2010-01-02 23:51:20 winInitMultiWindowWM - XOpenDisplay () returned and successfully opened the display.
2010-01-02 23:51:20 winMultiWindowXMsgProc - DISPLAY=:0.0
2010-01-02 23:51:20 winGetDisplay: DISPLAY=:0.0
2010-01-02 23:51:20 winClipboardProc - DISPLAY=:0.0
2010-01-02 23:51:20 winMultiWindowXMsgProc - XOpenDisplay () returned and successfully opened the display.
2010-01-02 23:51:20 winClipboardProc - XOpenDisplay () returned and successfully opened the display.
2010-01-02 23:54:50 winDeinitMultiWindowWM - Noting shutdown in progress
2010-01-02 23:54:50 winClipboardProc - winClipboardFlushWindowsMessageQueue trapped WM_QUIT message, exiting main loop.
2010-01-02 23:54:50 winClipboardProc - XDestroyWindow succeeded.
2010-01-02 23:54:50 winClipboardIOErrorHandler!
2010-01-02 23:54:50 winDeinitMultiWindowWM - Noting shutdown in progress
[-- Attachment #4: Type: text/plain, Size: 223 bytes --]
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Problem reports: http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ: http://x.cygwin.com/docs/faq/
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: Can't start xterm from Cygwin/X icon in system tray
2009-12-30 17:07 Can't start xterm from Cygwin/X icon in system tray Jim Reisert AD1C
2009-12-31 13:33 ` dahaiou
2009-12-31 20:43 ` Yaakov (Cygwin/X)
@ 2010-01-13 5:28 ` Jim Reisert AD1C
2 siblings, 0 replies; 12+ messages in thread
From: Jim Reisert AD1C @ 2010-01-13 5:28 UTC (permalink / raw)
To: cygwin-xfree
After re-installing Cygwin from scratch, I have determined that this
environment variable is/was causing the problem:
CYGWIN=tty
Once I removed it, I was able to create an X term from the icon in the
system tray.
- Jim
On Wed, Dec 30, 2009 at 10:07 AM, I wrote:
> I have a very strange situation.
>
> At work, I am running Win XP SP3. I installed all the latest Cygwin
> (1.7.1) + Xorg updates, including startxwin.exe. Everything works
> perfectly.
>
> At home, I am running Windows 7 Professional, 64-bit. I am unable to
> start an xterm from the Cygwin/X icon in the system tray (right-click,
> select xterm). Both setups have the same line in .XWinrc:
>
> "xterm" EXEC "xterm"
>
> I am starting the X server the same way:
>
> D:\Cygwin\bin\run.exe /usr/bin/bash.exe -l -c /usr/bin/startxwin.exe
>
> I do not have a ~/.startxwinrc file. The xterm that is supposed to be
> created when the server starts doesn't start either.
>
> The symptom is that xterm.exe is shown running in the task manager,
> but there is no Xterm window on the desktop.
>
> As a work-around, I created a shortcut on my desktop to start an xterm:
>
> D:\Cygwin\bin\run.exe /usr/bin/xterm -display localhost:0
>
> That works perfectly, but is not an optimum solution (I try to have as
> few desktop icons as possible).
>
> There is nothing in the /var/log/Xwin log that indicates why an xterm
> would start but not open a window.
>
> Any ideas?
--
Jim Reisert AD1C, <jjreisert@alum.mit.edu>, http://www.ad1c.us
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Problem reports: http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ: http://x.cygwin.com/docs/faq/
^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2010-01-13 5:28 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-12-30 17:07 Can't start xterm from Cygwin/X icon in system tray Jim Reisert AD1C
2009-12-31 13:33 ` dahaiou
2009-12-31 15:35 ` Jim Reisert AD1C
2009-12-31 15:53 ` john
2009-12-31 16:28 ` Ken Brown
2009-12-31 20:43 ` Yaakov (Cygwin/X)
2010-01-01 15:53 ` Jim Reisert AD1C
2010-01-01 19:41 ` john
2010-01-01 22:05 ` Jim Reisert AD1C
2010-01-03 5:01 ` Yaakov (Cygwin/X)
2010-01-03 6:56 ` Jim Reisert AD1C
2010-01-13 5:28 ` Jim Reisert AD1C
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).