public inbox for cygwin@cygwin.com
 help / color / mirror / Atom feed
* RE: A problem with OpenSSH 3.8.p1-1 - ssh-agent
@ 2004-03-03 15:13 Karl M
  2004-03-03 20:57 ` Brian Ford
  0 siblings, 1 reply; 7+ messages in thread
From: Karl M @ 2004-03-03 15:13 UTC (permalink / raw)
  To: cygwin

[-- Attachment #1: Type: text/plain, Size: 4628 bytes --]

Hi Andrew...

Please keep this on the list so that it gets archived for others to search.

I'm not seeing this problem. I use win-2k and xp machines.

You mentioned that you use a script to launch ssh-agent. I use keychain 
(also a script to launch ssh-agent) for that. I launch it from a service, so 
the agent stays aroung from reboot to reboot. If I launch it from within my 
~.profile it only stays around for one login session. You also mention that 
you launch it from profile.d...Is that part of the sysvinit stuff?

I'm attaching the script I use to launch keychain and the script that 
installs the service with cygrunsrv in case you want to try that. The rm -rf 
in the launch script keeps the ssh-???? folders from accumulating.

HTH,

...Karl


>From: "Andrew J Halls" To: "'Karl M'" Subject: RE: A problem with OpenSSH 
>3.8.p1-1 - ssh-agent
>Date: Wed, 3 Mar 2004 23:44:16 +1030
>
>Hi Karl
>	Turning off McAfee has made no difference.
>
>	A couple of additional observations
>
>	First the ssh-agent is taking up approx 50% of the cpu while it is
>running. This is probably all the time it could get from the scheduler and
>the time the system needs to write to the event log.
>
>	Second is that I first noticed this problem after upgrading
>Cygwin-1.5 dll at around 1.5.3 or 1.5.4 back in September last year.
>
>As I only run one ssh-agent for all by rxvt/bash sessions that I run I use
>to run a script, out of /etc/profile.d, that would check to see if there 
>was
>a ssh-agent all ready running for the user , if not run one, is so export
>the correct SSH_XXXX into the environment if the script could communicate
>with that instance else give and error message.
>I do this so that I can close all of my rxvt/bash sessions if I needed to
>and reattach to the agent later when I started them up again.
>
>What I was noticing was that the first rxvt/bash session started would not
>complete it's shutdown until I killed the ssh-agent, this was not the
>pervious way the ssh-agent did things before in Cygwin-1.5.1 or 1.5.2 .
>This means to me that the ssh-agent was not closing all its file 
>descriptors
>properly when going into daemon mode or that the semantics of the fork or
>exec call had changed to be more like SVR4.
>
>I have another couple of machines running with Cygwin (the version of the
>dll has also been upgraded along the way) and OpenSSH-3.7.1p2 on them with
>the same results at above.
>
>Andy Halls
>
>-----Original Message-----
>From: Karl M
>Sent: Wednesday, March 03, 2004 1:21 AM
>To: cygwin@cygwin.com
>Subject: Re: A problem with OpenSSH 3.8.p1-1 - ssh-agent
>
>Hi...
>
>If you are running McAfee, try turning it off as an experiment. I had ssh
>socket problems with McAfee in the past.
>
>HTH,
>
>...Karl
>
>
> >From: Corinna Vinschen >Reply-To: cygwin@cygwin.com
> >To: cygwin@cygwin.com
> >Subject: Re: A problem with OpenSSH 3.8.p1-1 - ssh-agent
> >Date: Tue, 2 Mar 2004 11:30:27 +0100
> >
> >On Feb 29 11:19, Andrew J Halls wrote:
> > > Hi
> > > 	I am having a problem with the ssh-agent and excess logging to the
> > > NT system event logger. After start the ssh-agent over 14,000 log
> >messages
> > > are entered into the Application log in less than 60 seconds. Each
> >message
> > > content seem to be the same and is as follows:
> > >
> > > [...]
> > > ssh-agent : PID 4672 : error: accept from AUTH_SOCKET: Resource
> >temporarily
> > > unavailable.
> >
> >This isn't related to the OpenSSH version.  I can't tell from the
> >error message what exactly happened.  It doesn't happen on my box.
> >
> >Does this happen all the time, reproducibly?  If yes, did you try
> >a recent Cygwin snapshot from http://cygwin.com/snapshots/ if that
> >cures the problem?
> >
> >If not, it would be interesting to see an strace of ssh-agent, perhaps.
> >
> >
> >Corinna
> >
> >--
> >Corinna Vinschen                  Please, send mails regarding Cygwin to
> >Cygwin Developer                                mailto:cygwin@cygwin.com
> >Red Hat, Inc.
> >
> >--
> >Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
> >Problem reports:       http://cygwin.com/problems.html
> >Documentation:         http://cygwin.com/docs.html
> >FAQ:                   http://cygwin.com/faq/
> >
>
>_________________________________________________________________
>Get a FREE online computer virus scan from McAfee when you click here.
>http://clinic.mcafee.com/clinic/ibuy/campaign.asp?cid=3963
>
>

_________________________________________________________________
Get business advice and resources to improve your work life, from bCentral. 
http://special.msn.com/bcentral/loudclear.armx

[-- Attachment #2: keychain-service --]
[-- Type: text/plain, Size: 213 bytes --]

#!/bin/bash
# keychain service
#   launch keychain from a service so that the ssh-agent survives logoff

# clean up old socket files
rm -fr /tmp/ssh-* > /dev/null 2>&1

# launch keychain
keychain --noask --quiet


[-- Attachment #3: keychain-service-install --]
[-- Type: text/plain, Size: 566 bytes --]

#!/bin/bash
# keychain-service-install service-name user-name

if [ "~$1" = "~" ]; then
  echo No service name
  exit 1
fi

if [ "~$2" = "~" ]; then
  echo No user name
  exit 1
fi

echo Stoping and removing old keychain service
cygrunsrv --stop $1
cygrunsrv --remove $1

echo Installing new keychain service
cygrunsrv --install $1 \
  --args '/bin/keychain-service' \
  --dep 'OpenSSH' \
  --disp "KeyChain $2" \
  --desc "Creates a keychain (ssh-agent) process for $2." \
  --path '/bin/bash' \
  --user "$2"

echo User $2 requires the Log on as a Service right



[-- Attachment #4: Type: text/plain, Size: 218 bytes --]

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 7+ messages in thread

* RE: A problem with OpenSSH 3.8.p1-1 - ssh-agent
  2004-03-03 15:13 A problem with OpenSSH 3.8.p1-1 - ssh-agent Karl M
@ 2004-03-03 20:57 ` Brian Ford
  2004-03-04 15:12   ` Andrew J Halls
  2004-03-04 18:30   ` Andrew J Halls
  0 siblings, 2 replies; 7+ messages in thread
From: Brian Ford @ 2004-03-03 20:57 UTC (permalink / raw)
  To: Karl M; +Cc: cygwin

On Wed, 3 Mar 2004 Andrew J Halls wrote:

>	Second is that I first noticed this problem after upgrading
>Cygwin-1.5 dll at around 1.5.3 or 1.5.4 back in September last year.
>
>As I only run one ssh-agent for all by rxvt/bash sessions that I run I use
>to run a script, out of /etc/profile.d, that would check to see if there was
>a ssh-agent all ready running for the user , if not run one, is so export
>the correct SSH_XXXX into the environment if the script could communicate
>with that instance else give and error message.  I do this so that I can
>close all of my rxvt/bash sessions if I needed to and reattach to the
>agent later when I started them up again.
>
>What I was noticing was that the first rxvt/bash session started would not
>complete it's shutdown until I killed the ssh-agent, this was not the
>pervious way the ssh-agent did things before in Cygwin-1.5.1 or 1.5.2.
>This means to me that the ssh-agent was not closing all its file descriptors
>properly when going into daemon mode or that the semantics of the fork or
>exec call had changed to be more like SVR4.
>
I don't remember the details, but there were bugs like this somewhere in
the 1.5 series.  Search the archives if you are still interested.

>I have another couple of machines running with Cygwin (the version of the
>dll has also been upgraded along the way) and OpenSSH-3.7.1p2 on them with
>the same results at above.
>
You mean they are running Cygwin 1.5.7, and they have the bash/rxvt hang
for the bash/rxvt that started ssh-agent?

The best advice for you is still:

On Tue, 2 Mar 2004 Corinna Vinschen wrote:

>Does this happen all the time, reproducibly?  If yes, did you try
>a recent Cygwin snapshot from http://cygwin.com/snapshots/ to see if that
>cures the problem?
>
>If not, it would be interesting to see an strace of ssh-agent, perhaps.
>
So, please try it.

-- 
Brian Ford
Senior Realtime Software Engineer
VITAL - Visual Simulation Systems
FlightSafety International
Phone: 314-551-8460
Fax:   314-551-8444

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 7+ messages in thread

* RE: A problem with OpenSSH 3.8.p1-1 - ssh-agent
  2004-03-03 20:57 ` Brian Ford
@ 2004-03-04 15:12   ` Andrew J Halls
  2004-03-04 18:30   ` Andrew J Halls
  1 sibling, 0 replies; 7+ messages in thread
From: Andrew J Halls @ 2004-03-04 15:12 UTC (permalink / raw)
  To: cygwin

Have to tried it yet Brain but will do. Will keep informed.

Tks
Andy H

-----Original Message-----
From: Brian Ford [mailto:ford@vss.fsi.com] 
Sent: Thursday, March 04, 2004 6:52 AM
To: Karl M
Cc: cygwin@cygwin.com
Subject: RE: A problem with OpenSSH 3.8.p1-1 - ssh-agent

On Wed, 3 Mar 2004 Andrew J Halls wrote:

>	Second is that I first noticed this problem after upgrading
>Cygwin-1.5 dll at around 1.5.3 or 1.5.4 back in September last year.
>
>As I only run one ssh-agent for all by rxvt/bash sessions that I run I use
>to run a script, out of /etc/profile.d, that would check to see if there
was
>a ssh-agent all ready running for the user , if not run one, is so export
>the correct SSH_XXXX into the environment if the script could communicate
>with that instance else give and error message.  I do this so that I can
>close all of my rxvt/bash sessions if I needed to and reattach to the
>agent later when I started them up again.
>
>What I was noticing was that the first rxvt/bash session started would not
>complete it's shutdown until I killed the ssh-agent, this was not the
>pervious way the ssh-agent did things before in Cygwin-1.5.1 or 1.5.2.
>This means to me that the ssh-agent was not closing all its file
descriptors
>properly when going into daemon mode or that the semantics of the fork or
>exec call had changed to be more like SVR4.
>
I don't remember the details, but there were bugs like this somewhere in
the 1.5 series.  Search the archives if you are still interested.

>I have another couple of machines running with Cygwin (the version of the
>dll has also been upgraded along the way) and OpenSSH-3.7.1p2 on them with
>the same results at above.
>
You mean they are running Cygwin 1.5.7, and they have the bash/rxvt hang
for the bash/rxvt that started ssh-agent?

The best advice for you is still:

On Tue, 2 Mar 2004 Corinna Vinschen wrote:

>Does this happen all the time, reproducibly?  If yes, did you try
>a recent Cygwin snapshot from http://cygwin.com/snapshots/ to see if that
>cures the problem?
>
>If not, it would be interesting to see an strace of ssh-agent, perhaps.
>
So, please try it.

-- 
Brian Ford
Senior Realtime Software Engineer
VITAL - Visual Simulation Systems
FlightSafety International
Phone: 314-551-8460
Fax:   314-551-8444


--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 7+ messages in thread

* RE: A problem with OpenSSH 3.8.p1-1 - ssh-agent
  2004-03-03 20:57 ` Brian Ford
  2004-03-04 15:12   ` Andrew J Halls
@ 2004-03-04 18:30   ` Andrew J Halls
  1 sibling, 0 replies; 7+ messages in thread
From: Andrew J Halls @ 2004-03-04 18:30 UTC (permalink / raw)
  To: cygwin

Hi All
	Using cygwin1-20040225.dll has not changed either of the two
problems.

	Running ssh-agent as a service does not make it log all the time to
the NT event logging. Service install line is:
	Cygrunsrv -I ssh-agent-Andrew -p /usr/bin/ssh-agent -e
HOME=/home/Andrew -t manual -u Andrew -w ********* -a "-d
/home/Andrew/.ssh/agent-socket/agent" 

	Running ssh-agent from a shell prompt does, and will not allow you
to terminate the rxvt/bash session until it has been terminated.


Andy H




--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: A problem with OpenSSH 3.8.p1-1 - ssh-agent
@ 2004-03-02 15:38 Karl M
  0 siblings, 0 replies; 7+ messages in thread
From: Karl M @ 2004-03-02 15:38 UTC (permalink / raw)
  To: cygwin

Hi...

If you are running McAfee, try turning it off as an experiment. I had ssh 
socket problems with McAfee in the past.

HTH,

...Karl


>From: Corinna Vinschen <corinna-cygwin@cygwin.com>
>Reply-To: cygwin@cygwin.com
>To: cygwin@cygwin.com
>Subject: Re: A problem with OpenSSH 3.8.p1-1 - ssh-agent
>Date: Tue, 2 Mar 2004 11:30:27 +0100
>
>On Feb 29 11:19, Andrew J Halls wrote:
> > Hi
> > 	I am having a problem with the ssh-agent and excess logging to the
> > NT system event logger. After start the ssh-agent over 14,000 log 
>messages
> > are entered into the Application log in less than 60 seconds. Each 
>message
> > content seem to be the same and is as follows:
> >
> > [...]
> > ssh-agent : PID 4672 : error: accept from AUTH_SOCKET: Resource 
>temporarily
> > unavailable.
>
>This isn't related to the OpenSSH version.  I can't tell from the
>error message what exactly happened.  It doesn't happen on my box.
>
>Does this happen all the time, reproducibly?  If yes, did you try
>a recent Cygwin snapshot from http://cygwin.com/snapshots/ if that
>cures the problem?
>
>If not, it would be interesting to see an strace of ssh-agent, perhaps.
>
>
>Corinna
>
>--
>Corinna Vinschen                  Please, send mails regarding Cygwin to
>Cygwin Developer                                mailto:cygwin@cygwin.com
>Red Hat, Inc.
>
>--
>Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
>Problem reports:       http://cygwin.com/problems.html
>Documentation:         http://cygwin.com/docs.html
>FAQ:                   http://cygwin.com/faq/
>

_________________________________________________________________
Get a FREE online computer virus scan from McAfee when you click here. 
http://clinic.mcafee.com/clinic/ibuy/campaign.asp?cid=3963


--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: A problem with OpenSSH 3.8.p1-1 - ssh-agent
  2004-02-29  1:49 Andrew J Halls
@ 2004-03-02 10:30 ` Corinna Vinschen
  0 siblings, 0 replies; 7+ messages in thread
From: Corinna Vinschen @ 2004-03-02 10:30 UTC (permalink / raw)
  To: cygwin

On Feb 29 11:19, Andrew J Halls wrote:
> Hi
> 	I am having a problem with the ssh-agent and excess logging to the
> NT system event logger. After start the ssh-agent over 14,000 log messages
> are entered into the Application log in less than 60 seconds. Each message
> content seem to be the same and is as follows:
> 
> [...]
> ssh-agent : PID 4672 : error: accept from AUTH_SOCKET: Resource temporarily
> unavailable.

This isn't related to the OpenSSH version.  I can't tell from the
error message what exactly happened.  It doesn't happen on my box.

Does this happen all the time, reproducibly?  If yes, did you try
a recent Cygwin snapshot from http://cygwin.com/snapshots/ if that
cures the problem?

If not, it would be interesting to see an strace of ssh-agent, perhaps.


Corinna

-- 
Corinna Vinschen                  Please, send mails regarding Cygwin to
Cygwin Developer                                mailto:cygwin@cygwin.com
Red Hat, Inc.

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: A problem with OpenSSH 3.8.p1-1 - ssh-agent
@ 2004-02-29  1:49 Andrew J Halls
  2004-03-02 10:30 ` Corinna Vinschen
  0 siblings, 1 reply; 7+ messages in thread
From: Andrew J Halls @ 2004-02-29  1:49 UTC (permalink / raw)
  To: cygwin

[-- Attachment #1: Type: text/plain, Size: 1021 bytes --]

Hi
	I am having a problem with the ssh-agent and excess logging to the
NT system event logger. After start the ssh-agent over 14,000 log messages
are entered into the Application log in less than 60 seconds. Each message
content seem to be the same and is as follows:

The description for Event ID ( 0 ) in Source ( ssh-agent ) cannot be found.
The local computer may not have the necessary registry information or
message DLL files to display messages from a remote computer. You may be
able to use the /AUXSOURCE= flag to retrieve this description; see Help and
Support for details. The following information is part of the event:
ssh-agent : PID 4672 : error: accept from AUTH_SOCKET: Resource temporarily
unavailable.

I have check back one version of OpenSSH (3.7.1p2-2) with the same result.

Operation of the agent is NOT affected by this problem so I am not sure when
it first started. I know it was OK in the early versions of cygwin-1.5.

Attached is the cygcheck output.

Tks
Andy Halls

[-- Attachment #2: cygcheck.openssh-3.8 --]
[-- Type: application/octet-stream, Size: 61353 bytes --]


Cygwin Win95/NT Configuration Diagnostics
Current System Time: Sun Feb 29 10:47:13 2004

Windows XP Professional Ver 5.1 Build 2600 Service Pack 1

Path:	~\bin
	C:\winunix\cygwin\usr\local\bin
	C:\winunix\cygwin\bin
	C:\winunix\cygwin\bin
	C:\winunix\cygwin\opt\gnome\bin
	C:\winunix\cygwin\usr\X11R6\bin
	c:\WINDOWS\system32
	c:\WINDOWS

Output from C:\winunix\cygwin\bin\id.exe (nontsec)
UID: 1003(Andrew) GID: 544(Administrators)
544(Administrators)

Output from C:\winunix\cygwin\bin\id.exe (ntsec)
UID: 1003(Andrew) GID: 544(Administrators)
0(root)                               
513(None)                             544(Administrators)
556(Network Configuration Operators)  
545(Users)

SysDir: C:\WINDOWS\System32
WinDir: C:\WINDOWS

CYGWIN = `"error_start:C:\winunix\cygwin\bin\dumper.exe check_case:relaxed glob:ignorecase ntea ntsec notitle tty"'
HOME = `C:\winunix\cygwin\home\Andrew'
LD_LIBRARY_PATH = `C:\winunix\cygwin\usr\lib:\usr\X11R6\lib:\opt\gnome\lib'
MAKE_MODE = `unix'
PWD = `/home/Andrew'
USER = `Andrew'

ALLUSERSPROFILE = `C:\Documents and Settings\All Users'
APPDATA = `C:\Documents and Settings\Andrew\Application Data'
COLORFGBG = `0;default;7'
COLORTERM = `rxvt-xpm'
COMMONPROGRAMFILES = `C:\Program Files\Common Files'
COMPUTERNAME = `RA'
COMSPEC = `C:\WINDOWS\system32\cmd.exe'
CVS_RSH = `/bin/ssh'
CYGWIN_ROOT = `\winunix\cygwin'
DISPLAY = `127.0.0.1:0.0'
EDITOR = `vi'
HOMEDRIVE = `F:'
HOMEPATH = `\Andrew'
HOSTNAME = `ra'
INFOPATH = `~/info:/usr/local/info:/usr/info:/usr/share/info:/usr/autotool/devel/info:/usr/autotool/stable/info:;/opt/gnome/info'
LESS = `-X -m'
LOCALDOMAIN = `halls.pri.au'
LOGONSERVER = `\\RA'
MANPATH = `~/man:/usr/X11R6/man:/usr/local/man:/usr/man:/usr/share/man:/usr/autotool/devel/man::/opt/gnome/man:/opt/gnome/man:/usr/ssl/man'
NUMBER_OF_PROCESSORS = `1'
OLDPWD = `/home/Andrew'
OS = `Windows_NT'
PATHEXT = `.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.tcl;.py;.pyc;.pyo;.pyw;.pys'
PKG_CONFIG_PATH = `:/usr/X11R6/lib/pkgconfig'
PROCESSOR_ARCHITECTURE = `x86'
PROCESSOR_IDENTIFIER = `x86 Family 15 Model 2 Stepping 4, GenuineIntel'
PROCESSOR_LEVEL = `15'
PROCESSOR_REVISION = `0204'
PROGRAMFILES = `C:\Program Files'
PROMPT = `$P$G'
PROMPT_COMMAND = `echo -ne "\033]0;${USER}@${HOSTNAME%%.*}:${PWD/#$HOME/~}\007"'
PS1 = `[\u@\h \W]\$ '
SESSIONNAME = `Console'
SHLVL = `1'
SYSTEMDRIVE = `C:'
SYSTEMROOT = `C:\WINDOWS'
TEMP = `c:\DOCUME~1\Andrew\LOCALS~1\Temp'
TERM = `xterm'
TEXMF = `{/usr/share/lilypond/2.0.1,/usr/share/texmf}'
TMP = `c:\DOCUME~1\Andrew\LOCALS~1\Temp'
USERDOMAIN = `RA'
USERNAME = `Andrew'
USERPROFILE = `C:\Documents and Settings\Andrew'
WINDIR = `C:\WINDOWS'
WINDOWID = `10485762'
XAPPLRESDIR = `/usr/X11R6/lib/X11/app-defaults'
XCMSDB = `/usr/X11R6/lib/X11/Xcms.txt'
XKEYSYMDB = `/usr/X11R6/lib/X11/XKeysymDB'
XNLSPATH = `/usr/X11R6/lib/X11/locale'
_ = `/usr/bin/cygcheck'

HKEY_CURRENT_USER\Software\Cygnus Solutions
HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin
HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin\mounts v2
HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin\Program Options
HKEY_CURRENT_USER\Software\FileZilla\Site Manager\Win Sites\Cygnus Extras
  (default) = `0'
  Host = `sourceware.redhat.com'
  Port = `21'
  User = `'
  Remote Dir = `/pub/'
  Local Dir = `F:\Andrew Halls\Linux\WinUNIX\'
  Pass = `'
  Logontype = `1'
  FW Bypass = `0'
  Dont Save Pass = `0'
  Server Type = `0'
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2
  (default) = `/cygdrive'
  cygdrive flags = 0x00000022
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/
  (default) = `C:\winunix\cygwin'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/usr/bin
  (default) = `C:\winunix\cygwin/bin'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/usr/lib
  (default) = `C:\winunix\cygwin/lib'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/usr/local/vim
  (default) = `C:\Program Files\vim\vim62'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/usr/X11R6/lib/X11/fonts
  (default) = `C:\winunix\cygwin\usr\X11R6\lib\X11\fonts'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\Program Options

a:  fd           N/A    N/A                    
c:  hd  NTFS   29996Mb  47% CP CS UN PA FC     RaDrvC
d:  cd           N/A    N/A                    
e:  cd           N/A    N/A                    
f:  hd  NTFS   47238Mb  77% CP CS UN PA FC     Data
g:  fd           N/A    N/A                    
h:  hd  NTFS   14998Mb  75% CP CS UN PA FC     Updates
i:  hd  NTFS   12244Mb  70% CP CS UN PA FC     Install
j:  net NTFS   28615Mb  57% CP CS UN PA FC     Nefatiti
k:  net NTFS   28615Mb  57% CP CS UN PA FC     Nefatiti

C:\winunix\cygwin                          /                         system  binmode
C:\winunix\cygwin/bin                      /usr/bin                  system  binmode
C:\winunix\cygwin/lib                      /usr/lib                  system  binmode
C:\Program Files\vim\vim62                 /usr/local/vim            system  binmode
C:\winunix\cygwin\usr\X11R6\lib\X11\fonts  /usr/X11R6/lib/X11/fonts  system  binmode
.                                          /cygdrive                 system  binmode,cygdrive

Found: C:\winunix\cygwin\bin\awk.exe
Found: C:\winunix\cygwin\bin\bash.exe
Found: C:\winunix\cygwin\bin\cat.exe
Found: C:\winunix\cygwin\bin\cp.exe
Found: C:\winunix\cygwin\bin\cpp.exe
Found: C:\winunix\cygwin\bin\find.exe
Found: C:\winunix\cygwin\bin\gcc.exe
Found: C:\winunix\cygwin\bin\gdb.exe
Found: C:\winunix\cygwin\bin\grep.exe
Found: C:\winunix\cygwin\bin\ld.exe
Found: C:\winunix\cygwin\bin\ls.exe
Found: C:\winunix\cygwin\bin\make.exe
Found: C:\winunix\cygwin\bin\mv.exe
Found: C:\winunix\cygwin\bin\rm.exe
Found: C:\winunix\cygwin\bin\sed.exe
Found: C:\winunix\cygwin\bin\sh.exe
Found: C:\winunix\cygwin\bin\tar.exe

  802k 2003/09/15 C:\winunix\cygwin\bin\cygaspell-15.dll - os=4.0 img=1.0 sys=4.0
                  "cygaspell-15.dll" v0.0 ts=2003/9/15 22:02
   61k 2003/08/09 C:\winunix\cygwin\bin\cygbz2-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygbz2-1.dll" v0.0 ts=2003/8/9 16:05
   54k 2002/01/27 C:\winunix\cygwin\bin\cygbz21.0.dll - os=4.0 img=1.0 sys=4.0
                  "cygbz21.0.dll" v0.0 ts=2002/1/27 11:37
   14k 2003/08/10 C:\winunix\cygwin\bin\cygcharset-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygcharset-1.dll" v0.0 ts=2003/8/11 6:27
    7k 2003/10/19 C:\winunix\cygwin\bin\cygcrypt-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygcrypt-0.dll" v0.0 ts=2003/10/19 17:27
  842k 2003/09/30 C:\winunix\cygwin\bin\cygcrypto-0.9.7.dll - os=4.0 img=1.0 sys=4.0
                  "cygcrypto-0.9.7.dll" v0.0 ts=2003/10/1 2:19
  645k 2003/04/11 C:\winunix\cygwin\bin\cygcrypto.dll - os=4.0 img=1.0 sys=4.0
                  "cygcrypto.dll" v0.0 ts=2003/4/11 20:07
  598k 2003/11/03 C:\winunix\cygwin\bin\cygcurl-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygcurl-2.dll" v0.0 ts=2003/11/4 2:52
   22k 2004/02/10 C:\winunix\cygwin\bin\cygcygipc-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygcygipc-2.dll" v0.0 ts=2004/2/10 13:18
  380k 2002/07/24 C:\winunix\cygwin\bin\cygdb-3.1.dll - os=4.0 img=1.0 sys=4.0
                  "cygdb-3.1.dll" v0.0 ts=2002/7/25 1:54
  831k 2003/09/20 C:\winunix\cygwin\bin\cygdb-4.1.dll - os=4.0 img=1.0 sys=4.0
                  "cygdb-4.1.dll" v0.0 ts=2003/9/21 7:21
  326k 2002/06/26 C:\winunix\cygwin\bin\cygdb2.dll - os=4.0 img=1.0 sys=4.0
                  "cygdb2.dll" v0.0 ts=2002/6/27 3:18
  487k 2002/07/24 C:\winunix\cygwin\bin\cygdb_cxx-3.1.dll - os=4.0 img=1.0 sys=4.0
                  "cygdb_cxx-3.1.dll" v0.0 ts=2002/7/25 1:55
 1080k 2003/09/20 C:\winunix\cygwin\bin\cygdb_cxx-4.1.dll - os=4.0 img=1.0 sys=4.0
                  "cygdb_cxx-4.1.dll" v0.0 ts=2003/9/21 7:23
  155k 2004/01/07 C:\winunix\cygwin\bin\cygexpat-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygexpat-0.dll" v0.0 ts=2004/1/8 2:44
   71k 2004/01/13 C:\winunix\cygwin\bin\cygexslt-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygexslt-0.dll" v0.0 ts=2004/1/13 20:44
  654k 2003/11/04 C:\winunix\cygwin\bin\cygfltknox-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygfltknox-0.dll" v0.0 ts=2003/11/5 8:27
   65k 2003/11/04 C:\winunix\cygwin\bin\cygfltknox_forms-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygfltknox_forms-0.dll" v0.0 ts=2003/11/5 8:27
   81k 2003/11/04 C:\winunix\cygwin\bin\cygfltknox_gl-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygfltknox_gl-0.dll" v0.0 ts=2003/11/5 8:28
  108k 2003/11/04 C:\winunix\cygwin\bin\cygfltknox_images-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygfltknox_images-0.dll" v0.0 ts=2003/11/5 8:28
  129k 2004/02/25 C:\winunix\cygwin\bin\cygfontconfig-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygfontconfig-1.dll" v0.0 ts=2004/2/25 10:59
   45k 2001/04/25 C:\winunix\cygwin\bin\cygform5.dll - os=4.0 img=1.0 sys=4.0
                  "cygform5.dll" v0.0 ts=2001/4/25 14:58
   35k 2002/01/09 C:\winunix\cygwin\bin\cygform6.dll - os=4.0 img=1.0 sys=4.0
                  "cygform6.dll" v0.0 ts=2002/1/9 16:33
   48k 2003/08/09 C:\winunix\cygwin\bin\cygform7.dll - os=4.0 img=1.0 sys=4.0
                  "cygform7.dll" v0.0 ts=2003/8/9 18:55
  361k 2003/10/25 C:\winunix\cygwin\bin\cygfreetype-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygfreetype-6.dll" v0.0 ts=2003/10/22 13:48
  213k 2004/02/05 C:\winunix\cygwin\bin\cyggd-2.dll - os=4.0 img=1.0 sys=4.0
                  "cyggd-2.dll" v0.0 ts=2004/2/6 0:02
   28k 2003/07/20 C:\winunix\cygwin\bin\cyggdbm-3.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdbm-3.dll" v0.0 ts=2003/7/20 17:28
   30k 2003/08/11 C:\winunix\cygwin\bin\cyggdbm-4.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdbm-4.dll" v0.0 ts=2003/8/11 11:42
   19k 2003/03/22 C:\winunix\cygwin\bin\cyggdbm.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdbm.dll" v0.0 ts=2002/2/20 13:35
   15k 2003/07/20 C:\winunix\cygwin\bin\cyggdbm_compat-3.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdbm_compat-3.dll" v0.0 ts=2003/7/20 17:30
   15k 2003/08/11 C:\winunix\cygwin\bin\cyggdbm_compat-4.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdbm_compat-4.dll" v0.0 ts=2003/8/11 11:43
   69k 2003/08/10 C:\winunix\cygwin\bin\cyggettextlib-0-12-1.dll - os=4.0 img=1.0 sys=4.0
                  "cyggettextlib-0-12-1.dll" v0.0 ts=2003/8/11 7:40
   12k 2003/08/10 C:\winunix\cygwin\bin\cyggettextpo-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggettextpo-0.dll" v0.0 ts=2003/8/11 7:41
  134k 2003/08/10 C:\winunix\cygwin\bin\cyggettextsrc-0-12-1.dll - os=4.0 img=1.0 sys=4.0
                  "cyggettextsrc-0-12-1.dll" v0.0 ts=2003/8/11 7:40
  167k 2003/09/09 C:\winunix\cygwin\bin\cyggmp-3.dll - os=4.0 img=1.0 sys=4.0
                  "cyggmp-3.dll" v0.0 ts=2003/9/10 7:33
  349k 2003/12/08 C:\winunix\cygwin\bin\cygGraphicsMagick++-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygGraphicsMagick++-0.dll" v0.0 ts=2003/12/9 6:49
 2169k 2003/12/08 C:\winunix\cygwin\bin\cygGraphicsMagick-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygGraphicsMagick-0.dll" v0.0 ts=2003/12/9 6:47
 1506k 2003/11/05 C:\winunix\cygwin\bin\cyggsl-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggsl-0.dll" v0.0 ts=2003/11/6 7:49
  190k 2003/11/05 C:\winunix\cygwin\bin\cyggslcblas-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggslcblas-0.dll" v0.0 ts=2003/11/6 7:05
  489k 2003/08/09 C:\winunix\cygwin\bin\cygguile-12.dll - os=4.0 img=1.0 sys=4.0
                  "cygguile-12.dll" v0.0 ts=2003/8/9 23:47
  489k 2003/07/28 C:\winunix\cygwin\bin\cygguile-12abi13.dll - os=4.0 img=1.0 sys=4.0
                  "cygguile-12abi13.dll" v0.0 ts=2003/7/29 3:48
   24k 2003/08/09 C:\winunix\cygwin\bin\cygguile-ltdl-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygguile-ltdl-1.dll" v0.0 ts=2003/8/9 23:46
   24k 2003/07/28 C:\winunix\cygwin\bin\cygguile-ltdl-1abi13.dll - os=4.0 img=1.0 sys=4.0
                  "cygguile-ltdl-1abi13.dll" v0.0 ts=2003/7/29 3:18
   62k 2003/08/09 C:\winunix\cygwin\bin\cygguile-srfi-srfi-13-14-v-1-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygguile-srfi-srfi-13-14-v-1-1.dll" v0.0 ts=2003/8/9 23:47
   62k 2003/07/28 C:\winunix\cygwin\bin\cygguile-srfi-srfi-13-14-v-1-1abi13.dll - os=4.0 img=1.0 sys=4.0
                  "cygguile-srfi-srfi-13-14-v-1-1abi13.dll" v0.0 ts=2003/7/29 3:48
   23k 2003/08/09 C:\winunix\cygwin\bin\cygguile-srfi-srfi-4-v-1-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygguile-srfi-srfi-4-v-1-1.dll" v0.0 ts=2003/8/9 23:47
   23k 2003/07/28 C:\winunix\cygwin\bin\cygguile-srfi-srfi-4-v-1-1abi13.dll - os=4.0 img=1.0 sys=4.0
                  "cygguile-srfi-srfi-4-v-1-1abi13.dll" v0.0 ts=2003/7/29 3:48
   11k 2003/08/09 C:\winunix\cygwin\bin\cygguilereadline-v-12-12.dll - os=4.0 img=1.0 sys=4.0
                  "cygguilereadline-v-12-12.dll" v0.0 ts=2003/8/9 23:47
   11k 2003/07/28 C:\winunix\cygwin\bin\cygguilereadline-v-12-12abi13.dll - os=4.0 img=1.0 sys=4.0
                  "cygguilereadline-v-12-12abi13.dll" v0.0 ts=2003/7/29 3:48
   17k 2001/06/28 C:\winunix\cygwin\bin\cyghistory4.dll - os=4.0 img=1.0 sys=4.0
                  "cyghistory4.dll" v0.0 ts=2001/1/7 15:04
   29k 2003/08/10 C:\winunix\cygwin\bin\cyghistory5.dll - os=4.0 img=1.0 sys=4.0
                  "cyghistory5.dll" v0.0 ts=2003/8/11 8:46
  330k 2004/02/09 C:\winunix\cygwin\bin\cyghttpd.dll - os=4.0 img=1.0 sys=4.0
                  "cyghttpd.dll" v0.0 ts=2004/2/10 4:44
  958k 2003/08/10 C:\winunix\cygwin\bin\cygiconv-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygiconv-2.dll" v0.0 ts=2003/8/11 6:27
   22k 2001/12/13 C:\winunix\cygwin\bin\cygintl-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygintl-1.dll" v0.0 ts=2001/12/13 19:58
   37k 2003/08/10 C:\winunix\cygwin\bin\cygintl-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygintl-2.dll" v0.0 ts=2003/8/11 7:20
   21k 2001/06/20 C:\winunix\cygwin\bin\cygintl.dll - os=4.0 img=1.0 sys=4.0
                  "cygintl.dll" v0.0 ts=2001/6/21 2:39
   12k 2003/02/17 C:\winunix\cygwin\bin\cygioperm-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygioperm-0.dll" v0.0 ts=2003/2/18 6:28
   48k 2003/08/10 C:\winunix\cygwin\bin\cygjbig1.dll - os=4.0 img=1.0 sys=4.0
                  "cygjbig1.dll" v0.0 ts=2003/8/11 9:28
  132k 2003/08/11 C:\winunix\cygwin\bin\cygjpeg-62.dll - os=4.0 img=1.0 sys=4.0
                  "cygjpeg-62.dll" v0.0 ts=2003/8/11 10:07
  119k 2002/02/09 C:\winunix\cygwin\bin\cygjpeg6b.dll - os=4.0 img=1.0 sys=4.0
                  "cygjpeg6b.dll" v0.0 ts=2002/2/9 15:49
   60k 2003/09/17 C:\winunix\cygwin\bin\cygkpathsea-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygkpathsea-3.dll" v0.0 ts=2003/9/18 2:07
   60k 2003/07/27 C:\winunix\cygwin\bin\cygkpathsea-3abi13.dll - os=4.0 img=1.0 sys=4.0
                  "cygkpathsea-3abi13.dll" v0.0 ts=2003/7/28 5:53
   40k 2004/01/02 C:\winunix\cygwin\bin\cyglber-2.dll - os=4.0 img=1.0 sys=4.0
                  "cyglber-2.dll" v0.0 ts=2004/1/2 21:41
  194k 2004/01/02 C:\winunix\cygwin\bin\cygldap-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygldap-2.dll" v0.0 ts=2004/1/2 21:57
  202k 2004/01/02 C:\winunix\cygwin\bin\cygldap_r-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygldap_r-2.dll" v0.0 ts=2004/1/2 21:57
   32k 2003/08/18 C:\winunix\cygwin\bin\cygltdl-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygltdl-3.dll" v0.0 ts=2003/8/18 15:05
  349k 2003/12/26 C:\winunix\cygwin\bin\cygMagick++-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygMagick++-6.dll" v0.0 ts=2003/12/27 5:18
 2354k 2003/12/26 C:\winunix\cygwin\bin\cygMagick-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygMagick-6.dll" v0.0 ts=2003/12/4 12:23
  181k 2003/10/06 C:\winunix\cygwin\bin\cygmcrypt-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygmcrypt-4.dll" v0.0 ts=2003/10/7 0:24
   26k 2001/04/25 C:\winunix\cygwin\bin\cygmenu5.dll - os=4.0 img=1.0 sys=4.0
                  "cygmenu5.dll" v0.0 ts=2001/4/25 14:57
   20k 2002/01/09 C:\winunix\cygwin\bin\cygmenu6.dll - os=4.0 img=1.0 sys=4.0
                  "cygmenu6.dll" v0.0 ts=2002/1/9 16:33
   29k 2003/08/09 C:\winunix\cygwin\bin\cygmenu7.dll - os=4.0 img=1.0 sys=4.0
                  "cygmenu7.dll" v0.0 ts=2003/8/9 18:55
  271k 2003/10/06 C:\winunix\cygwin\bin\cygmhash-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygmhash-2.dll" v0.0 ts=2003/10/7 0:53
   15k 2003/11/20 C:\winunix\cygwin\bin\cygminires.dll - os=4.0 img=0.97 sys=4.0
                  "cygminires.dll" v0.0 ts=2003/11/20 12:25
  469k 2004/02/11 C:\winunix\cygwin\bin\cygnaim_core-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygnaim_core-0.dll" v0.0 ts=2004/2/12 4:36
  156k 2001/04/25 C:\winunix\cygwin\bin\cygncurses++5.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses++5.dll" v0.0 ts=2001/4/25 14:59
  175k 2002/01/09 C:\winunix\cygwin\bin\cygncurses++6.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses++6.dll" v0.0 ts=2002/1/9 16:33
  226k 2001/04/25 C:\winunix\cygwin\bin\cygncurses5.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses5.dll" v0.0 ts=2001/4/25 14:47
  202k 2002/01/09 C:\winunix\cygwin\bin\cygncurses6.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses6.dll" v0.0 ts=2002/1/9 16:33
  224k 2003/08/09 C:\winunix\cygwin\bin\cygncurses7.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses7.dll" v0.0 ts=2003/8/9 18:54
   15k 2001/04/25 C:\winunix\cygwin\bin\cygpanel5.dll - os=4.0 img=1.0 sys=4.0
                  "cygpanel5.dll" v0.0 ts=2001/4/25 14:57
   12k 2002/01/09 C:\winunix\cygwin\bin\cygpanel6.dll - os=4.0 img=1.0 sys=4.0
                  "cygpanel6.dll" v0.0 ts=2002/1/9 16:33
   19k 2003/08/09 C:\winunix\cygwin\bin\cygpanel7.dll - os=4.0 img=1.0 sys=4.0
                  "cygpanel7.dll" v0.0 ts=2003/8/9 18:54
   62k 2003/12/11 C:\winunix\cygwin\bin\cygpcre-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpcre-0.dll" v0.0 ts=2003/12/12 3:31
   63k 2003/04/11 C:\winunix\cygwin\bin\cygpcre.dll - os=4.0 img=1.0 sys=4.0
                  "cygpcre.dll" v0.0 ts=2003/4/11 18:01
    9k 2003/12/11 C:\winunix\cygwin\bin\cygpcreposix-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpcreposix-0.dll" v0.0 ts=2003/12/12 3:31
   61k 2003/04/11 C:\winunix\cygwin\bin\cygpcreposix.dll - os=4.0 img=1.0 sys=4.0
                  "cygpcreposix.dll" v0.0 ts=2003/4/11 18:01
 1049k 2003/11/07 C:\winunix\cygwin\bin\cygperl5_8_2.dll - os=4.0 img=1.0 sys=4.0
                  "cygperl5_8_2.dll" v0.0 ts=2003/11/7 21:38
  168k 2003/08/10 C:\winunix\cygwin\bin\cygpng10.dll - os=4.0 img=1.0 sys=4.0
                  "cygpng10.dll" v0.0 ts=2003/8/11 8:01
  173k 2003/08/10 C:\winunix\cygwin\bin\cygpng12.dll - os=4.0 img=1.0 sys=4.0
                  "cygpng12.dll" v0.0 ts=2003/8/11 8:05
  170k 2002/01/21 C:\winunix\cygwin\bin\cygpng2.dll - os=4.0 img=1.0 sys=4.0
                  "cygpng2.dll" v0.0 ts=2002/1/21 11:35
   22k 2002/06/09 C:\winunix\cygwin\bin\cygpopt-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpopt-0.dll" v0.0 ts=2002/6/9 15:15
  108k 2001/06/28 C:\winunix\cygwin\bin\cygreadline4.dll - os=4.0 img=1.0 sys=4.0
                  "cygreadline4.dll" v0.0 ts=2001/1/7 15:04
  148k 2003/08/10 C:\winunix\cygwin\bin\cygreadline5.dll - os=4.0 img=1.0 sys=4.0
                  "cygreadline5.dll" v0.0 ts=2003/8/11 8:46
   66k 2001/11/20 C:\winunix\cygwin\bin\cygregex.dll - os=4.0 img=1.0 sys=4.0
                  "cygregex.dll" v0.0 ts=2001/11/21 1:14
  672k 2003/12/25 C:\winunix\cygwin\bin\cygruby18.dll - os=4.0 img=1.0 sys=4.0
                  "cygruby18.dll" v0.0 ts=2003/12/25 23:03
  380k 2003/12/13 C:\winunix\cygwin\bin\cygsmi-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygsmi-2.dll" v0.0 ts=2003/12/13 11:27
  171k 2003/09/30 C:\winunix\cygwin\bin\cygssl-0.9.7.dll - os=4.0 img=1.0 sys=4.0
                  "cygssl-0.9.7.dll" v0.0 ts=2003/10/1 2:19
  165k 2003/04/11 C:\winunix\cygwin\bin\cygssl.dll - os=4.0 img=1.0 sys=4.0
                  "cygssl.dll" v0.0 ts=2003/4/11 20:07
  254k 2003/09/18 C:\winunix\cygwin\bin\cygtidy-0-99-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygtidy-0-99-0.dll" v0.0 ts=2003/9/19 1:22
  281k 2003/02/24 C:\winunix\cygwin\bin\cygtiff3.dll - os=4.0 img=1.0 sys=4.0
                  "cygtiff3.dll" v0.0 ts=2003/2/24 15:28
  282k 2003/08/11 C:\winunix\cygwin\bin\cygtiff4.dll - os=4.0 img=1.0 sys=4.0
                  "cygtiff4.dll" v0.0 ts=2003/8/11 12:02
   25k 2002/07/14 C:\winunix\cygwin\bin\cygungif-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygungif-4.dll" v0.0 ts=2002/7/15 0:28
 2689k 2002/11/16 C:\winunix\cygwin\bin\cygxerces-c21.dll - os=4.0 img=1.0 sys=4.0
                  "cygxerces-c21.dll" v0.0 ts=2002/11/16 14:37
 2984k 2003/02/07 C:\winunix\cygwin\bin\cygxerces-c22.dll - os=4.0 img=1.0 sys=4.0
                  "cygxerces-c22.dll" v0.0 ts=2003/2/8 5:20
 3006k 2003/10/12 C:\winunix\cygwin\bin\cygxerces-c23.dll - os=4.0 img=1.0 sys=4.0
                  "cygxerces-c23.dll" v0.0 ts=2003/10/12 12:06
 3520k 2003/12/16 C:\winunix\cygwin\bin\cygxerces-c24.dll - os=4.0 img=1.0 sys=4.0
                  "cygxerces-c24.dll" v0.0 ts=2003/12/17 6:15
 3416k 2004/02/21 C:\winunix\cygwin\bin\cygxerces-c25.dll - os=4.0 img=1.0 sys=4.0
                  "cygxerces-c25.dll" v0.0 ts=2004/2/21 17:19
 1172k 2004/01/10 C:\winunix\cygwin\bin\cygxml2-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygxml2-2.dll" v0.0 ts=2004/1/9 3:11
   50k 2003/08/09 C:\winunix\cygwin\bin\cygXpm-noX4.dll - os=4.0 img=1.0 sys=4.0
                  "cygXpm-noX4.dll" v0.0 ts=2003/8/9 16:51
   54k 2003/08/09 C:\winunix\cygwin\bin\cygXpm-X4.dll - os=4.0 img=1.0 sys=4.0
                  "cygXpm-X4.dll" v0.0 ts=2003/8/9 16:52
  191k 2004/01/13 C:\winunix\cygwin\bin\cygxslt-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygxslt-1.dll" v0.0 ts=2004/1/13 4:34
   61k 2003/12/04 C:\winunix\cygwin\bin\cygz.dll - os=4.0 img=1.0 sys=4.0
                  "cygz.dll" v0.0 ts=2003/12/4 13:33
 1083k 2004/01/31 C:\winunix\cygwin\bin\cygwin1.dll - os=4.0 img=1.0 sys=4.0
                  "cygwin1.dll" v0.0 ts=2004/1/31 11:02
    Cygwin DLL version info:
        DLL version: 1.5.7
        DLL epoch: 19
        DLL bad signal mask: 19005
        DLL old termios: 5
        DLL malloc env: 28
        API major: 0
        API minor: 109
        Shared data: 3
        DLL identifier: cygwin1
        Mount registry: 2
        Cygnus registry name: Cygnus Solutions
        Cygwin registry name: Cygwin
        Program options name: Program Options
        Cygwin mount registry name: mounts v2
        Cygdrive flags: cygdrive flags
        Cygdrive prefix: cygdrive prefix
        Cygdrive default prefix: 
        Build date: Fri Jan 30 19:32:04 EST 2004
        CVS tag: cr-0x9e
        Shared id: cygwin1S3

   61k 2003/03/13 C:\winunix\cygwin\opt\gnome\bin\cygart_lgpl.dll - os=4.0 img=1.0 sys=4.0
                  "cygart_lgpl.dll" v0.0 ts=2003/3/13 14:34
  131k 2003/03/13 C:\winunix\cygwin\opt\gnome\bin\cygaudiofile.dll - os=4.0 img=1.0 sys=4.0
                  "cygaudiofile.dll" v0.0 ts=2003/3/12 17:59
   38k 2003/03/18 C:\winunix\cygwin\opt\gnome\bin\cygbonobo-print.dll - os=4.0 img=1.0 sys=4.0
                  "cygbonobo-print.dll" v0.0 ts=2003/3/18 19:36
  570k 2003/03/18 C:\winunix\cygwin\opt\gnome\bin\cygbonobo.dll - os=4.0 img=1.0 sys=4.0
                  "cygbonobo.dll" v0.0 ts=2003/3/18 19:26
  550k 2003/03/18 C:\winunix\cygwin\opt\gnome\bin\cygbonobox.dll - os=4.0 img=1.0 sys=4.0
                  "cygbonobox.dll" v0.0 ts=2003/3/18 19:36
   34k 2003/03/14 C:\winunix\cygwin\opt\gnome\bin\cygcapplet.dll - os=4.0 img=1.0 sys=4.0
                  "cygcapplet.dll" v0.0 ts=2003/3/14 17:07
  212k 2003/04/11 C:\winunix\cygwin\opt\gnome\bin\cygdevhelp.dll - os=4.0 img=1.0 sys=4.0
                  "cygdevhelp.dll" v0.0 ts=2003/4/11 15:01
   86k 2003/03/18 C:\winunix\cygwin\opt\gnome\bin\cygefs.dll - os=4.0 img=1.0 sys=4.0
                  "cygefs.dll" v0.0 ts=2003/3/18 19:19
   32k 2003/03/13 C:\winunix\cygwin\opt\gnome\bin\cygesd.dll - os=4.0 img=1.0 sys=4.0
                  "cygesd.dll" v0.0 ts=2003/3/12 18:20
   32k 2003/03/14 C:\winunix\cygwin\opt\gnome\bin\cygfish_applet.dll - os=4.0 img=1.0 sys=4.0
                  "cygfish_applet.dll" v0.0 ts=2003/3/14 19:25
 1335k 2003/03/14 C:\winunix\cygwin\opt\gnome\bin\cyggal.dll - os=4.0 img=1.0 sys=4.0
                  "cyggal.dll" v0.0 ts=2003/3/14 14:31
  224k 2003/03/13 C:\winunix\cygwin\opt\gnome\bin\cyggconf-1.dll - os=4.0 img=1.0 sys=4.0
                  "cyggconf-1.dll" v0.0 ts=2003/3/13 13:38
   28k 2003/03/13 C:\winunix\cygwin\opt\gnome\bin\cyggconf-gtk-1.dll - os=4.0 img=1.0 sys=4.0
                  "cyggconf-gtk-1.dll" v0.0 ts=2003/3/13 13:41
  204k 2003/03/13 C:\winunix\cygwin\opt\gnome\bin\cyggdk.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdk.dll" v0.0 ts=2003/3/12 19:32
  130k 2003/03/13 C:\winunix\cygwin\opt\gnome\bin\cyggdk_imlib.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdk_imlib.dll" v0.0 ts=2003/3/13 12:30
   83k 2003/03/13 C:\winunix\cygwin\opt\gnome\bin\cyggdk_pixbuf.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdk_pixbuf.dll" v0.0 ts=2003/3/13 18:15
  117k 2003/03/13 C:\winunix\cygwin\opt\gnome\bin\cyggdk_pixbuf_xlib.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdk_pixbuf_xlib.dll" v0.0 ts=2003/3/13 18:16
  256k 2002/11/13 C:\winunix\cygwin\opt\gnome\bin\cyggedit.dll - os=4.0 img=1.0 sys=4.0
                  "cyggedit.dll" v0.0 ts=2002/11/13 12:59
   68k 2003/03/14 C:\winunix\cygwin\opt\gnome\bin\cyggen_util_applet.dll - os=4.0 img=1.0 sys=4.0
                  "cyggen_util_applet.dll" v0.0 ts=2003/3/14 19:27
   33k 2003/03/13 C:\winunix\cygwin\opt\gnome\bin\cygghttp.dll - os=4.0 img=1.0 sys=4.0
                  "cygghttp.dll" v0.0 ts=2003/3/13 18:16
   57k 2003/03/13 C:\winunix\cygwin\opt\gnome\bin\cygglade-gnome.dll - os=4.0 img=1.0 sys=4.0
                  "cygglade-gnome.dll" v0.0 ts=2003/3/13 18:57
   93k 2003/03/13 C:\winunix\cygwin\opt\gnome\bin\cygglade.dll - os=4.0 img=1.0 sys=4.0
                  "cygglade.dll" v0.0 ts=2003/3/13 18:56
  147k 2003/03/13 C:\winunix\cygwin\opt\gnome\bin\cygglib.dll - os=4.0 img=1.0 sys=4.0
                  "cygglib.dll" v0.0 ts=2003/3/12 18:34
   17k 2003/03/13 C:\winunix\cygwin\opt\gnome\bin\cyggmodule.dll - os=4.0 img=1.0 sys=4.0
                  "cyggmodule.dll" v0.0 ts=2003/3/12 18:35
  152k 2003/03/18 C:\winunix\cygwin\opt\gnome\bin\cyggnobog.dll - os=4.0 img=1.0 sys=4.0
                  "cyggnobog.dll" v0.0 ts=2003/3/18 15:38
  111k 2003/03/24 C:\winunix\cygwin\opt\gnome\bin\cyggnome.dll - os=4.0 img=1.0 sys=4.0
                  "cyggnome.dll" v0.0 ts=2003/3/24 14:35
   20k 2003/03/13 C:\winunix\cygwin\opt\gnome\bin\cyggnomecanvaspixbuf.dll - os=4.0 img=1.0 sys=4.0
                  "cyggnomecanvaspixbuf.dll" v0.0 ts=2003/3/13 18:16
  716k 2003/03/14 C:\winunix\cygwin\opt\gnome\bin\cyggnomeprint.dll - os=4.0 img=1.0 sys=4.0
                  "cyggnomeprint.dll" v0.0 ts=2003/3/14 13:25
   13k 2003/03/13 C:\winunix\cygwin\opt\gnome\bin\cyggnomesupport.dll - os=4.0 img=1.0 sys=4.0
                  "cyggnomesupport.dll" v0.0 ts=2003/3/13 13:57
  878k 2003/03/13 C:\winunix\cygwin\opt\gnome\bin\cyggnomeui.dll - os=4.0 img=1.0 sys=4.0
                  "cyggnomeui.dll" v0.0 ts=2003/3/13 14:48
   43k 2003/03/13 C:\winunix\cygwin\opt\gnome\bin\cyggnomevfs-pthread.dll - os=4.0 img=1.0 sys=4.0
                  "cyggnomevfs-pthread.dll" v0.0 ts=2003/3/13 19:18
  188k 2003/03/13 C:\winunix\cygwin\opt\gnome\bin\cyggnomevfs.dll - os=4.0 img=1.0 sys=4.0
                  "cyggnomevfs.dll" v0.0 ts=2003/3/13 19:17
   49k 2003/03/13 C:\winunix\cygwin\opt\gnome\bin\cyggnorba.dll - os=4.0 img=1.0 sys=4.0
                  "cyggnorba.dll" v0.0 ts=2003/3/13 15:00
   30k 2003/03/13 C:\winunix\cygwin\opt\gnome\bin\cyggnorbagtk.dll - os=4.0 img=1.0 sys=4.0
                  "cyggnorbagtk.dll" v0.0 ts=2003/3/13 15:00
   15k 2003/03/13 C:\winunix\cygwin\opt\gnome\bin\cyggthread.dll - os=4.0 img=1.0 sys=4.0
                  "cyggthread.dll" v0.0 ts=2003/3/12 18:35
 1324k 2003/03/13 C:\winunix\cygwin\opt\gnome\bin\cyggtk.dll - os=4.0 img=1.0 sys=4.0
                  "cyggtk.dll" v0.0 ts=2003/3/12 19:25
  734k 2003/03/24 C:\winunix\cygwin\opt\gnome\bin\cyggtkhtml-1.1.dll - os=4.0 img=1.0 sys=4.0
                  "cyggtkhtml-1.1.dll" v0.0 ts=2003/3/24 18:58
  664k 2003/03/25 C:\winunix\cygwin\opt\gnome\bin\cyggtkhtml.dll - os=4.0 img=1.0 sys=4.0
                  "cyggtkhtml.dll" v0.0 ts=2003/3/25 12:50
  354k 2003/03/13 C:\winunix\cygwin\opt\gnome\bin\cyggtkxmhtml.dll - os=4.0 img=1.0 sys=4.0
                  "cyggtkxmhtml.dll" v0.0 ts=2003/3/13 14:56
   62k 2003/03/13 C:\winunix\cygwin\opt\gnome\bin\cyggtop.dll - os=4.0 img=1.0 sys=4.0
                  "cyggtop.dll" v0.0 ts=2003/3/13 19:19
   27k 2003/03/13 C:\winunix\cygwin\opt\gnome\bin\cyggtop_names.dll - os=4.0 img=1.0 sys=4.0
                  "cyggtop_names.dll" v0.0 ts=2003/3/13 19:24
  144k 2003/03/13 C:\winunix\cygwin\opt\gnome\bin\cygIDL.dll - os=4.0 img=1.0 sys=4.0
                  "cygIDL.dll" v0.0 ts=2003/3/12 19:45
   32k 2003/03/13 C:\winunix\cygwin\opt\gnome\bin\cygIIOP.dll - os=4.0 img=1.0 sys=4.0
                  "cygIIOP.dll" v0.0 ts=2003/3/12 19:49
   15k 2003/03/13 C:\winunix\cygwin\opt\gnome\bin\cygimlib-bmp.dll - os=4.0 img=1.0 sys=4.0
                  "cygimlib-bmp.dll" v0.0 ts=2003/3/13 12:31
   13k 2003/03/13 C:\winunix\cygwin\opt\gnome\bin\cygimlib-gif.dll - os=4.0 img=1.0 sys=4.0
                  "cygimlib-gif.dll" v0.0 ts=2003/3/13 12:31
   14k 2003/03/13 C:\winunix\cygwin\opt\gnome\bin\cygimlib-jpeg.dll - os=4.0 img=1.0 sys=4.0
                  "cygimlib-jpeg.dll" v0.0 ts=2003/3/13 12:32
   18k 2003/03/13 C:\winunix\cygwin\opt\gnome\bin\cygimlib-png.dll - os=4.0 img=1.0 sys=4.0
                  "cygimlib-png.dll" v0.0 ts=2003/3/13 12:32
   15k 2003/03/13 C:\winunix\cygwin\opt\gnome\bin\cygimlib-ppm.dll - os=4.0 img=1.0 sys=4.0
                  "cygimlib-ppm.dll" v0.0 ts=2003/3/13 12:31
   15k 2003/03/13 C:\winunix\cygwin\opt\gnome\bin\cygimlib-ps.dll - os=4.0 img=1.0 sys=4.0
                  "cygimlib-ps.dll" v0.0 ts=2003/3/13 12:31
   13k 2003/03/13 C:\winunix\cygwin\opt\gnome\bin\cygimlib-tiff.dll - os=4.0 img=1.0 sys=4.0
                  "cygimlib-tiff.dll" v0.0 ts=2003/3/13 12:32
   17k 2003/03/13 C:\winunix\cygwin\opt\gnome\bin\cygimlib-xpm.dll - os=4.0 img=1.0 sys=4.0
                  "cygimlib-xpm.dll" v0.0 ts=2003/3/13 12:31
  157k 2003/03/13 C:\winunix\cygwin\opt\gnome\bin\cygImlib.dll - os=4.0 img=1.0 sys=4.0
                  "cygImlib.dll" v0.0 ts=2003/3/13 12:34
   97k 2003/03/13 C:\winunix\cygwin\opt\gnome\bin\cygoaf.dll - os=4.0 img=1.0 sys=4.0
                  "cygoaf.dll" v0.0 ts=2003/3/12 21:03
  228k 2003/03/13 C:\winunix\cygwin\opt\gnome\bin\cygORBit.dll - os=4.0 img=1.0 sys=4.0
                  "cygORBit.dll" v0.0 ts=2003/3/12 19:52
   35k 2003/03/13 C:\winunix\cygwin\opt\gnome\bin\cygORBitCosNaming.dll - os=4.0 img=1.0 sys=4.0
                  "cygORBitCosNaming.dll" v0.0 ts=2003/3/12 19:52
   12k 2003/03/13 C:\winunix\cygwin\opt\gnome\bin\cygORBitutil.dll - os=4.0 img=1.0 sys=4.0
                  "cygORBitutil.dll" v0.0 ts=2003/3/12 19:46
   84k 2003/03/14 C:\winunix\cygwin\opt\gnome\bin\cygpanel_applet.dll - os=4.0 img=1.0 sys=4.0
                  "cygpanel_applet.dll" v0.0 ts=2003/3/14 19:15
   63k 2003/03/14 C:\winunix\cygwin\opt\gnome\bin\cygpanel_status.dll - os=4.0 img=1.0 sys=4.0
                  "cygpanel_status.dll" v0.0 ts=2003/3/14 19:16
  465k 2003/02/26 C:\winunix\cygwin\opt\gnome\bin\cygrep.dll - os=4.0 img=1.0 sys=4.0
                  "cygrep.dll" v0.0 ts=2003/2/26 13:29
   22k 2002/09/21 C:\winunix\cygwin\opt\gnome\bin\cygscrollkeeper.dll - os=4.0 img=1.0 sys=4.0
                  "cygscrollkeeper.dll" v0.0 ts=2002/6/20 13:25
  452k 2003/03/13 C:\winunix\cygwin\opt\gnome\bin\cygxml.dll - os=4.0 img=1.0 sys=4.0
                  "cygxml.dll" v0.0 ts=2003/3/12 20:18
   89k 2003/03/13 C:\winunix\cygwin\opt\gnome\bin\cygzvt.dll - os=4.0 img=1.0 sys=4.0
                  "cygzvt.dll" v0.0 ts=2003/3/13 14:57
  237k 2003/11/18 C:\winunix\cygwin\usr\X11R6\bin\cygdps-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygdps-1.dll" v0.0 ts=2003/11/18 12:11
  121k 2003/11/18 C:\winunix\cygwin\usr\X11R6\bin\cygdpstk-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygdpstk-1.dll" v0.0 ts=2003/11/18 12:11
   28k 2004/01/16 C:\winunix\cygwin\usr\X11R6\bin\cygDtPrint-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygDtPrint-1.dll" v0.0 ts=2004/1/16 14:37
  282k 2003/10/28 C:\winunix\cygwin\usr\X11R6\bin\cygfreetype-9.dll - os=4.0 img=1.0 sys=4.0
                  "cygfreetype-9.dll" v0.0 ts=2003/10/18 16:14
  373k 2003/11/18 C:\winunix\cygwin\usr\X11R6\bin\cygGL-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygGL-1.dll" v0.0 ts=2003/11/18 12:09
  439k 2003/11/18 C:\winunix\cygwin\usr\X11R6\bin\cygGLU-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygGLU-1.dll" v0.0 ts=2003/11/18 12:10
   74k 2003/11/18 C:\winunix\cygwin\usr\X11R6\bin\cygICE-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygICE-6.dll" v0.0 ts=2003/11/18 12:00
   76k 2004/01/16 C:\winunix\cygwin\usr\X11R6\bin\cygMrm-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygMrm-2.dll" v0.0 ts=2004/1/16 14:37
    9k 2003/11/18 C:\winunix\cygwin\usr\X11R6\bin\cygoldX-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygoldX-6.dll" v0.0 ts=2003/11/18 12:00
 1271k 2003/11/18 C:\winunix\cygwin\usr\X11R6\bin\cygOSMesa-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygOSMesa-4.dll" v0.0 ts=2003/11/18 12:09
   20k 2003/11/18 C:\winunix\cygwin\usr\X11R6\bin\cygpsres-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygpsres-1.dll" v0.0 ts=2003/11/18 12:12
   30k 2003/11/18 C:\winunix\cygwin\usr\X11R6\bin\cygSM-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygSM-6.dll" v0.0 ts=2003/11/18 12:00
   66k 2004/01/16 C:\winunix\cygwin\usr\X11R6\bin\cygUil-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygUil-2.dll" v0.0 ts=2004/1/16 14:37
  864k 2003/11/18 C:\winunix\cygwin\usr\X11R6\bin\cygX11-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygX11-6.dll" v0.0 ts=2003/11/18 12:00
  253k 2003/11/18 C:\winunix\cygwin\usr\X11R6\bin\cygXaw-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXaw-6.dll" v0.0 ts=2003/11/18 12:03
  355k 2003/11/18 C:\winunix\cygwin\usr\X11R6\bin\cygXaw-7.dll - os=4.0 img=1.0 sys=4.0
                  "cygXaw-7.dll" v0.0 ts=2003/11/18 12:04
  275k 2004/01/13 C:\winunix\cygwin\usr\X11R6\bin\cygXaw3d-7.dll - os=4.0 img=1.0 sys=4.0
                  "cygXaw3d-7.dll" v0.0 ts=2004/1/14 8:47
   36k 2003/11/18 C:\winunix\cygwin\usr\X11R6\bin\cygXcursor-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXcursor-1.dll" v0.0 ts=2003/11/18 12:13
   49k 2003/11/18 C:\winunix\cygwin\usr\X11R6\bin\cygXext-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXext-6.dll" v0.0 ts=2003/11/18 12:00
   56k 2003/11/18 C:\winunix\cygwin\usr\X11R6\bin\cygXft-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXft-1.dll" v0.0 ts=2003/11/18 12:12
   74k 2003/11/18 C:\winunix\cygwin\usr\X11R6\bin\cygXft-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygXft-2.dll" v0.0 ts=2003/11/18 12:12
   27k 2003/11/18 C:\winunix\cygwin\usr\X11R6\bin\cygXi-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXi-6.dll" v0.0 ts=2003/11/18 12:04
 1293k 2004/01/16 C:\winunix\cygwin\usr\X11R6\bin\cygXm-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygXm-2.dll" v0.0 ts=2004/1/16 14:33
   76k 2003/11/18 C:\winunix\cygwin\usr\X11R6\bin\cygXmu-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXmu-6.dll" v0.0 ts=2003/11/18 12:02
   11k 2003/11/18 C:\winunix\cygwin\usr\X11R6\bin\cygXmuu-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXmuu-1.dll" v0.0 ts=2003/11/18 12:02
   26k 2003/11/18 C:\winunix\cygwin\usr\X11R6\bin\cygXp-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXp-6.dll" v0.0 ts=2003/11/18 12:05
   51k 2003/11/18 C:\winunix\cygwin\usr\X11R6\bin\cygXpm-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygXpm-4.dll" v0.0 ts=2003/11/18 12:02
   14k 2003/11/18 C:\winunix\cygwin\usr\X11R6\bin\cygXrandr-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygXrandr-2.dll" v0.0 ts=2003/11/18 12:13
   26k 2003/11/18 C:\winunix\cygwin\usr\X11R6\bin\cygXrender-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXrender-1.dll" v0.0 ts=2003/11/18 12:12
  282k 2003/11/18 C:\winunix\cygwin\usr\X11R6\bin\cygXt-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXt-6.dll" v0.0 ts=2003/11/18 12:01
   27k 2003/11/18 C:\winunix\cygwin\usr\X11R6\bin\cygXTrap-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXTrap-6.dll" v0.0 ts=2003/11/18 12:13
   17k 2003/11/18 C:\winunix\cygwin\usr\X11R6\bin\cygXtst-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXtst-6.dll" v0.0 ts=2003/11/18 12:04
   15k 2003/11/18 C:\winunix\cygwin\usr\X11R6\bin\cygXv-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXv-1.dll" v0.0 ts=2003/11/18 12:05

Cygwin Package Information
Last downloaded files to: F:\Andrew Halls\Linux\WinUNIX\cygwin\Releases
Last downloaded files from: http://cygnome.sourceforge.net/install

Package                 Version             
_update-info-dir        00227-1             
a2ps                    4.13-1              
agetty                  2.1-1               
amcl                    0.7.5-2             
antiword                0.34-2              
apache                  1.3.29-2            
ash                     20040127-1          
aspell                  0.50.3-1            
aspell-de               0.50.2-1            
aspell-dev              0.50.3-1            
aspell-doc              0.50.3-1            
aspell-en               0.51.0-1            
aspell-pl               0.50.2-1            
astyle                  1.15.3-3            
audiofile               0.2.3-9             
audiofile-devel         0.2.3-9             
autoconf                2.59-1              
autoconf-devel          2.59-1              
autoconf-stable         2.13-5              
automake                1.7.9-1             
automake-devel          1.7.9-1             
automake-stable         1.4p6-2             
base-files              2.6-1               
base-passwd             1.1-1               
bash                    2.05b-16            
bc                      1.06-1              
binutils                20030901-1          
bison                   20030307-1          
bluefish                0.7-3               
bonobo                  1.0.22-9            
bonobo-devel            1.0.22-9            
byacc                   1.9-1               
bzip2                   1.0.2-5             
c-client                2002e-3             
c3270                   3.2.20-1            
cabextract              0.6-2               
ccache                  2.2-1               
ccdoc                   0.8.39-1            
cgoban                  1.9.14-1            
check                   0.8.4-1             
chkconfig               1.2.24h-1           
clear                   1.0-1               
clisp                   2.32-1              
cmake                   1.8.3-1             
cocom                   0.995-1             
compface                1.4-5               
control-center          1.4.0.5-1           
control-center-locale   1.4.0.5-1           
control-center-single   0.3-9               
cpio                    2.5-3               
cron                    3.0.1-11            
crypt                   1.1-1               
ctags                   5.5-4               
curl                    7.10.8-1            
curl-devel              7.10.8-1            
cvs                     1.11.6-3            
cygextras               0.3.4               
cygipc                  2.03-2              
cygrunsrv               0.98-1              
cygutils                1.2.4-1             
cygwin                  1.5.7-1             
cygwin-doc              1.3-7               
d                       1.2.0-1             
db2                     2.7.7-4             
db3.1                   3.1.17-2            
db4.1                   4.1.25-1            
ddd                     3.3.8-1             
dejagnu                 20021217-2          
devhelp                 0.4-1               
devhelp-book-gnome      1.x                 
devhelp-book-gtk        1.2                 
diffutils               2.8.4-1             
dillo                   0.7.3-1             
distcc                  2.12-1              
docbook-xml42           4.2-2               
docbook-xsl             1.64.1-1            
doxygen                 1.2.18-1            
dpkg                    1.10.4-2            
ed                      0.2-1               
editrights              1.01-1              
ee                      0.3.12-6            
ELFIO                   1.0.0-1             
emacs                   21.2-12             
emacs-el                21.2-12             
emacs-X11               21.2-12             
enscript                1.6.3-3             
eog                     0.6-1               
esound                  0.2.29-9            
esound-devel            0.2.29-9            
exim                    4.30-2              
expat                   1.95.7-1            
expect                  20030128-1          
fetchmail               6.2.5-2             
figlet                  2.2-1               
file                    4.06-1              
fileutils               4.1-2               
findutils               4.1.7-4             
flex                    2.5.4a-3            
fltk                    1.1.4-2             
fontconfig              2.2.0-2             
fortune                 1.8-2               
freetype2               2.1.5-1             
fvwm                    2.4.7-3             
gaim                    0.59.8-shared       
gal                     0.23-1              
gal-devel               0.23-1              
gawk                    3.1.3-4             
gcc                     3.3.1-3             
gcc-ada                 3.3.1-3             
gcc-g++                 3.3.1-3             
gcc-g77                 3.3.1-3             
gcc-gpc                 3.3.1-3             
gcc-java                3.3.1-3             
gcc-mingw               20030911-4          
gcc-mingw-ada           20031020-1          
gcc-mingw-core          20031020-1          
gcc-mingw-g++           20031020-1          
gcc-mingw-g77           20031020-1          
gcc-mingw-gpc           20031020-1          
gcc-mingw-java          20031020-1          
gcc-mingw-objc          20031020-1          
gcc-objc                3.3.1-3             
GConf                   1.0.9-9             
GConf-devel             1.0.9-10            
gcvs                    1.0a7-1             
gd                      2.0.21-1            
gdb                     20030919-1          
gdbm                    1.8.3-7             
gdk-pixbuf              0.22.0-9            
gdk-pixbuf-devel        0.22.0-9            
gedit                   0.9.7-1             
gettext                 0.12.1-3            
gettext-devel           0.12.1-3            
gftp                    2.0.14-1            
ggv                     1.0.2-9             
ghex                    1.2.1-1             
ghostscript             7.05-2              
ghostscript-base        7.05-2              
ghostscript-x11         7.05-2              
glib                    1.2.10-9            
glib-devel              1.2.10-9            
glimmer                 1.2.1-1             
gmc                     4.5.55-9            
gmc-gnome               4.5.55-9            
gmc-locale              4.5.55-9            
gmp                     4.1.2-1             
gnobog                  0.4.3-4             
gnome-aisleriot         1.4.0.4-2           
gnome-applets           1.4.1-1             
gnome-applets-docs-intl 1.4.1-1             
gnome-applets-locale    1.4.1-1             
gnome-commander         1.0.1-1             
gnome-core              1.4.2-9             
gnome-core-locale       1.4.2-9             
gnome-freecell          1.4.0.4-2           
gnome-games             1.4.0.4-1           
gnome-games-locale      1.4.0.4-1           
gnome-gataxx            1.4.0.4-2           
gnome-glines            1.4.0.4-2           
gnome-gnect             1.4.0.4-2           
gnome-gnibbles          1.4.0.4-2           
gnome-gnobots2          1.4.0.4-2           
gnome-gnometris         1.4.0.4-2           
gnome-gnomine           1.4.0.4-2           
gnome-gnotravex         1.4.0.4-2           
gnome-gnotski           1.4.0.4-2           
gnome-gtali             1.4.0.4-2           
gnome-help-browser      1.4.2-9             
gnome-libs              1.4.2-10            
gnome-libs-devel        1.4.2-9             
gnome-libs-docs         1.4.2-1             
gnome-mahjongg          1.4.0.4-2           
gnome-mime-data         1.0.4-1             
gnome-panel             1.4.2-9             
gnome-panel-devel       1.4.2-9             
gnome-panel-docs        1.4.2-9             
gnome-pim               1.4.6-1             
gnome-print             0.37-9              
gnome-print-devel       0.37-1              
gnome-same-gnome        1.4.0.4-2           
gnome-session           1.4.2-9             
gnome-stones            1.4.0.4-2           
gnome-terminal          1.4.2-9             
gnome-utils             1.4.1.3-1           
gnome-vfs               1.0.5-9             
gnome-vfs-devel         1.0.5-9             
gnome-xbill             1.4.0.4-2           
gnomeicu                0.96-3              
gnotepad+               1.3.3-4             
gnugo                   3.4-1               
gnupg                   1.2.4-1             
gnuplot                 3.8j.0-1            
gpaint                  0.2.2-1             
gperf                   2.7.2-1             
GQview                  1.2.2-1             
grace                   5.1.12-1            
GraphicsMagick          1.0.4-1             
grep                    2.5-1               
groff                   1.18.1-2            
gsl                     1.4-2               
gtans                   1.1-2               
gtk+                    1.2.10-19           
gtk+-devel              1.2.10-19           
gtk-engines             0.12-1              
gtk-theme-switch        3                   
gtk-themes              0.11-10             
gtkdiff                 1.8.0               
gtkglarea               1.2.2-10-static     
gtkhtml                 1.1.8-9             
gtkhtml-bonobo          1.1.8-9             
gtkhtml-devel           1.1.8-9             
gtkhtml10               1.0.4-1             
gtksee                  0.5.0-7             
gtktalog                1.0.3-1             
gtop                    1.0.13-9            
gtypist                 2.7-2               
guile                   1.6.4-12            
guile-devel             1.6.4-12            
guile-doc               1.6.4-12            
gv                      3.5.8-1             
gvim                    6.1-21              
gxtar                   0.1.0-7             
gzip                    1.3.5-1             
help2man                1.33.1-1            
hypersrc                5.3.9-1             
ImageMagick             5.5.7-2             
imlib                   1.9.14-1            
imlib-devel             1.9.14-1            
indent                  2.2.9-1             
inetutils               1.3.2-26            
initscripts             0.9-1               
ioperm                  0.4-1               
irc                     20010101-3          
jbigkit                 1.5-3               
jgraph                  8.3-1               
jpeg                    6b-11               
keychain                2.0.3-2             
less                    381-1               
lesstif                 0.93.91-6           
lftp                    2.6.10-2            
libaspell15             0.50.3-1            
libbz2_0                1.0.2-1             
libbz2_1                1.0.2-5             
libcapplet-devel        1.4.0.5-1           
libcharset1             1.9.1-3             
libdb2                  2.7.7-4             
libdb2-devel            2.7.7-4             
libdb3.1                3.1.17-2            
libdb3.1-devel          3.1.17-2            
libdb4.1                4.1.25-1            
libdb4.1-devel          4.1.25-1            
libfontconfig-devel     2.2.0-2             
libfontconfig1          2.2.0-2             
libfreetype2-devel      2.1.5-1             
libfreetype26           2.1.5-1             
libgd-devel             2.0.21-1            
libgd2                  2.0.21-1            
libgdbm                 1.8.0-5             
libgdbm-devel           1.8.3-7             
libgdbm3                1.8.3-3             
libgdbm4                1.8.3-7             
libgettextpo0           0.12.1-3            
libghttp                1.0.9-9             
libghttp-devel          1.0.9-9             
libglade                0.17-9              
libglade-devel          0.17-9              
libGraphicsMagick-devel 1.0.4-1             
libGraphicsMagick0      1.0.4-1             
libgtop                 1.0.13-1            
libgtop-devel           1.0.13-1            
libguile12              1.6.4-12            
libguile12abi13         1.6.4-2             
libiconv                1.9.1-3             
libiconv2               1.9.1-3             
libintl                 0.10.38-3           
libintl1                0.10.40-1           
libintl2                0.12.1-3            
libjpeg62               6b-11               
libjpeg6b               6b-8                
libkpathsea3            2.0.2-13            
libkpathsea3abi13       2.0.2-2             
libltdl3                1.5-3               
libMagick-devel         5.5.7-2             
libMagick6              5.5.7-2             
libmcrypt               2.5.7-2             
libmcrypt-devel         2.5.7-2             
libncurses-devel        5.3-4               
libncurses5             5.2-1               
libncurses6             5.2-8               
libncurses7             5.3-4               
libopenldap2            2.1.25-1            
libpcre                 4.1-1               
libpcre0                4.5-1               
libpng                  1.2.5-4             
libpng10                1.0.15-4            
libpng10-devel          1.0.15-4            
libpng12                1.2.5-4             
libpng12-devel          1.2.5-4             
libpng2                 1.0.12-1            
libpopt0                1.6.4-4             
libreadline4            4.1-2               
libreadline5            4.3-5               
librep                  0.16.1-1            
librep-devel            0.16.1-1            
libsmi                  0.4.2-1             
libtiff-devel           3.6.0-5             
libtiff3                3.6.0-2             
libtiff4                3.6.0-5             
libtool                 1.5b-1              
libtool-devel           1.5-3               
libtool-stable          1.4.3-2             
libungif                4.1.0-2             
libunicode              0.4-6-static        
libxerces-c21           2.1.0-1             
libxerces-c22           2.2.0-1             
libxerces-c23           2.3.0-4             
libxerces-c24           2.4.0-4             
libxerces-c25           2.5.0-1             
libxml                  1.8.17-9            
libxml-devel            1.8.17-9            
libxml2                 2.6.4-1             
libxslt                 1.1.2-1             
lilypond                2.0.1-1             
lilypond-doc            2.0.1-1             
links                   0.99pre14-1         
login                   1.9-7               
lynx                    2.8.4-7             
m4                      1.4-1               
make                    3.80-1              
man                     1.5k-2              
mc                      4.6.0-4             
mhash                   0.8.18-1            
mhash-devel             0.8.18-1            
mingw-runtime           3.2-1               
mingw-zlib              1.2.1-1             
minires                 0.97-1              
minires-devel           0.97-1              
mktemp                  1.5-3               
more                    2.11o-1             
mt                      2.0.1-2             
mutt                    1.4.1-2             
naim                    0.11.6.6-1          
nano                    1.2.2-1             
nasm                    0.98.38-1           
ncftp                   3.1.4-1             
ncurses                 5.3-4               
ncurses-demo            5.3-4               
nedit                   5.4-1               
netcat                  1.10-2              
nfs-server              2.2.47-2            
oaf                     0.6.10-9            
oaf-devel               0.6.10-2            
openbox                 0.99.1-4            
opengl                  1.1.0-7             
openldap                2.1.25-1            
openldap-devel          2.1.25-1            
openssh                 3.8p1-1             
openssl                 0.9.7c-1            
openssl-devel           0.9.7c-1            
openssl096              0.9.6j-1            
ORBit                   0.5.17-9            
ORBit-devel             0.5.17-9            
par                     1.52-1              
patch                   2.5.8-8             
patchutils              0.2.22-2            
pcre                    4.5-1               
pcre-devel              4.5-1               
pcre-doc                4.5-1               
pdksh                   5.2.14-3            
perl                    5.8.2-1             
perl-libwin32           0.191-1             
perl_manpages           5.8.2-1             
pine                    4.58-1              
pinfo                   0.6.8-1             
pkgconfig               0.15.0-4            
popt                    1.6.4-4             
postgresql              7.4.1-3             
pr3270                  3.2.20-1            
procmail                3.22-8              
procps                  010801-2            
proftpd                 1.2.9-1             
psutils                 1.17-1              
python                  2.3.3-1             
rcs                     5.7-3               
readline                4.3-5               
rebase                  2.2-3               
regex                   4.4-3               
rep-gtk                 0.15-7              
rep-gtk-devel           0.15-7              
robots                  2.0-3               
rpm                     4.1-1               
rpm-build               4.1-1               
rpm-doc                 4.1-1               
rsync                   2.6.0-1             
ruby                    1.8.1-1             
rxvt                    2.7.10-3            
s3270                   3.2.20-1            
sawfish                 1.2-1               
scrollkeeper            0.2-7               
sed                     4.0.8-1             
setsid                  0.0-3               
sh-utils                2.0.15-4            
sharutils               4.2.1-3             
shutdown                1.4-1               
splint                  3.1.1-1             
squid                   2.4.STABLE7-1       
ssmtp                   2.60.4-3            
startgnome              0.5.1-2             
stunnel                 4.04-3              
suite3270               3.2.20-1            
sunrpc                  4.0-2               
SWI-Prolog              5.2.6-1             
swig                    1.3.19-1            
sylpheed-claws          0.9.3-2             
sylpheed-claws-i18n     0.9.3               
sylpheed-iconset        20030712            
sysvinit                2.84-4              
tar                     1.13.25-5           
tcl3270                 3.2.20-1            
tcltk                   20030901-1          
tcm                     2.20-1              
tcp_wrappers            7.6-1               
tcsh                    6.12.00-7           
termcap                 20021106-2          
terminfo                5.3_20030726-1      
tetex                   2.0.2-13            
tetex-base              2.0.2-13            
tetex-bin               2.0.2-13            
tetex-devel             2.0.2-13            
tetex-doc               2.0.2-13            
tetex-extra             2.0.2-13            
tetex-tiny              2.0.2-13            
tetex-x11               2.0.2-13            
texinfo                 4.2-4               
textutils               2.0.21-1            
tidy                    030901-1            
tiff                    3.6.0-5             
time                    1.7-1               
tin                     1.6.2-1             
transfig                3.2.4-2             
ttcp                    19980512-1          
tzcode                  2003e-1             
ucl                     1.01-1              
units                   1.77-1              
unzip                   5.50-5              
upx                     1.24-1              
uw-imap                 2002e-3             
uw-imap-imapd           2002e-3             
uw-imap-util            2002e-3             
vim                     6.2.098-1           
w32api                  2.5-1               
wget                    1.9.1-1             
which                   1.5-2               
whois                   4.6.7-1             
WindowMaker             0.80.2-1            
WordNet                 2.0-1               
wtf                     0.0.4-6             
x2x                     1.30-1              
x3270                   3.2.20-1            
Xaw3d                   1.5D-5              
xemacs                  21.4.15-1           
xemacs-emacs-common     21.4.15-1           
xemacs-mule-sumo        2003-11-13-1        
xemacs-sumo             2003-11-13-1        
xemacs-tags             21.4.15-1           
xerces-c                2.5.0-1             
xerces-c-devel          2.5.0-1             
xerces-c-doc            2.5.0-1             
xfig                    3.2.4-6             
xfig-bin                3.2.4-3             
xfig-doc                3.2.4-2             
xfig-etc                3.2.4-4             
xfig-lib                3.2.4-6             
xfig-man                3.2.4-2             
XFree86-base            4.3.0-1             
XFree86-bin             4.3.0-9             
XFree86-bin-icons       4.3.0-6             
XFree86-doc             4.3.0-1             
XFree86-etc             4.3.0-6             
XFree86-f100            4.2.0-3             
XFree86-fcyr            4.2.0-3             
XFree86-fenc            4.2.0-3             
XFree86-fnts            4.2.0-3             
XFree86-fscl            4.2.0-3             
XFree86-fsrv            4.3.0-7             
XFree86-html            4.3.0-1             
XFree86-jdoc            4.3.0-1             
XFree86-lib             4.3.0-1             
XFree86-lib-compat      4.3.0-2             
XFree86-man             4.3.0-3             
XFree86-nest            4.3.0-5             
XFree86-prog            4.3.0-13            
XFree86-prt             4.3.0-5             
XFree86-ps              4.3.0-1             
XFree86-startup-scripts 4.2.0-5             
XFree86-vfb             4.3.0-5             
XFree86-xserv           4.3.0-47            
XFree86-xwinclip        4.3.0-2             
xgraph                  12.1-1              
xinetd                  2.3.9-1             
xml-i18n-tools          0.9-2               
xmlto                   0.0.18-1            
xpm-nox                 4.2.0-4             
xwinclip                1.2.0-1             
zip                     2.3-5               
zlib                    1.2.1-1             
zsh                     4.1.1-2             
Use -h to see help about each section


[-- Attachment #3: Type: text/plain, Size: 218 bytes --]

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2004-03-04 16:26 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-03-03 15:13 A problem with OpenSSH 3.8.p1-1 - ssh-agent Karl M
2004-03-03 20:57 ` Brian Ford
2004-03-04 15:12   ` Andrew J Halls
2004-03-04 18:30   ` Andrew J Halls
  -- strict thread matches above, loose matches on Subject: below --
2004-03-02 15:38 Karl M
2004-02-29  1:49 Andrew J Halls
2004-03-02 10:30 ` Corinna Vinschen

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).