public inbox for cygwin@cygwin.com
 help / color / mirror / Atom feed
* 1.7.7:  after upgrade lost ability to login via ssh
@ 2011-02-09  2:14 Gerry Reno
  2011-02-09  4:08 ` Larry Hall (Cygwin)
  2011-02-09 10:54 ` Corinna Vinschen
  0 siblings, 2 replies; 15+ messages in thread
From: Gerry Reno @ 2011-02-09  2:14 UTC (permalink / raw)
  To: cygwin

Something else I just discovered after upgrading to 1.7.7 is that I now
have lost the ability to login via ssh.

I have OpenSSH installed and running sshd as a service.  Both password
and keys accepted.  But now neither means will work.

    # ssh -i keypair1.pem   Administrator@MACHINE_IP
    Last login: Fri Feb  4 17:19:26 2011 from LOCAL_CLIENT_MACHINE
    Connection to MACHINE_IP closed.


So I increased verbosity but did not see anything obvious.


    # ssh -v -i keypair1.pem   Administrator@MACHINE_IP
    OpenSSH_5.2p1, OpenSSL 0.9.8k-fips 25 Mar 2009
    debug1: Reading configuration data /etc/ssh/ssh_config
    debug1: Applying options for *
    debug1: Connecting to MACHINE_IP [MACHINE_IP] port 22.
    debug1: Connection established.
    debug1: permanently_set_uid: 0/0
    debug1: identity file keypair1.pem type -1
    debug1: Remote protocol version 2.0, remote software version OpenSSH_5.8
    debug1: match: OpenSSH_5.8 pat OpenSSH*
    debug1: Enabling compatibility mode for protocol 2.0
    debug1: Local version string SSH-2.0-OpenSSH_5.2
    debug1: SSH2_MSG_KEXINIT sent
    debug1: SSH2_MSG_KEXINIT received
    debug1: kex: server->client aes128-ctr hmac-md5 none
    debug1: kex: client->server aes128-ctr hmac-md5 none
    debug1: SSH2_MSG_KEX_DH_GEX_REQUEST(1024<1024<8192) sent
    debug1: expecting SSH2_MSG_KEX_DH_GEX_GROUP
    debug1: SSH2_MSG_KEX_DH_GEX_INIT sent
    debug1: expecting SSH2_MSG_KEX_DH_GEX_REPLY
    debug1: Host 'MACHINE_IP' is known and matches the RSA host key.
    debug1: Found key in /root/.ssh/known_hosts:49
    debug1: ssh_rsa_verify: signature correct
    debug1: SSH2_MSG_NEWKEYS sent
    debug1: expecting SSH2_MSG_NEWKEYS
    debug1: SSH2_MSG_NEWKEYS received
    debug1: SSH2_MSG_SERVICE_REQUEST sent
    debug1: SSH2_MSG_SERVICE_ACCEPT received
    debug1: Authentications that can continue:
    publickey,password,keyboard-interactive
    debug1: Next authentication method: publickey
    debug1: Trying private key: keypair1.pem
    debug1: read PEM private key done: type RSA
    debug1: Authentication succeeded (publickey).
    debug1: channel 0: new [client-session]
    debug1: Requesting no-more-sessions@openssh.com
    debug1: Entering interactive session.
    debug1: Sending environment.
    debug1: Sending env LANG = en_US.UTF-8
    Last login: Tue Feb  8 11:18:47 2011 from LOCAL_CLIENT_MACHINE
    debug1: client_input_channel_req: channel 0 rtype exit-status reply 0
    debug1: client_input_channel_req: channel 0 rtype eow@openssh.com
    reply 0
    debug1: channel 0: free: client-session, nchannels 1
    Connection to MACHINE_IP closed.
    Transferred: sent 2224, received 2144 bytes, in 2.9 seconds
    Bytes per second: sent 764.9, received 737.4
    debug1: Exit status 0


The session looks like its connected ok but then it immediately
disconnects. 

Anyone else seen this on upgrade or have an idea how to fix this?



Regards,
Gerry




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

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

* Re: 1.7.7:  after upgrade lost ability to login via ssh
  2011-02-09  2:14 1.7.7: after upgrade lost ability to login via ssh Gerry Reno
@ 2011-02-09  4:08 ` Larry Hall (Cygwin)
  2011-02-09 21:56   ` Gerry Reno
  2011-02-09 10:54 ` Corinna Vinschen
  1 sibling, 1 reply; 15+ messages in thread
From: Larry Hall (Cygwin) @ 2011-02-09  4:08 UTC (permalink / raw)
  To: cygwin

On 2/8/2011 9:14 PM, Gerry Reno wrote:
> Something else I just discovered after upgrading to 1.7.7 is that I now
> have lost the ability to login via ssh.
>
> I have OpenSSH installed and running sshd as a service.  Both password
> and keys accepted.  But now neither means will work.
>
>      # ssh -i keypair1.pem   Administrator@MACHINE_IP
>      Last login: Fri Feb  4 17:19:26 2011 from LOCAL_CLIENT_MACHINE
>      Connection to MACHINE_IP closed.
>
>
> So I increased verbosity but did not see anything obvious.
>
>
>      # ssh -v -i keypair1.pem   Administrator@MACHINE_IP
>      OpenSSH_5.2p1, OpenSSL 0.9.8k-fips 25 Mar 2009
>      debug1: Reading configuration data /etc/ssh/ssh_config
>      debug1: Applying options for *
>      debug1: Connecting to MACHINE_IP [MACHINE_IP] port 22.
>      debug1: Connection established.
>      debug1: permanently_set_uid: 0/0
>      debug1: identity file keypair1.pem type -1
>      debug1: Remote protocol version 2.0, remote software version OpenSSH_5.8

Does reverting OpenSSH to 5.7 make a difference?

-- 
Larry

_____________________________________________________________________

A: Yes.
> Q: Are you sure?
>> A: Because it reverses the logical flow of conversation.
>>> Q: Why is top posting annoying in email?

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

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

* Re: 1.7.7:  after upgrade lost ability to login via ssh
  2011-02-09  2:14 1.7.7: after upgrade lost ability to login via ssh Gerry Reno
  2011-02-09  4:08 ` Larry Hall (Cygwin)
@ 2011-02-09 10:54 ` Corinna Vinschen
  2011-02-09 16:34   ` Gerry Reno
  1 sibling, 1 reply; 15+ messages in thread
From: Corinna Vinschen @ 2011-02-09 10:54 UTC (permalink / raw)
  To: cygwin

On Feb  8 21:14, Gerry Reno wrote:
> Something else I just discovered after upgrading to 1.7.7 is that I now
> have lost the ability to login via ssh.
> 
> I have OpenSSH installed and running sshd as a service.  Both password
> and keys accepted.  But now neither means will work.
> 
>     # ssh -i keypair1.pem   Administrator@MACHINE_IP
>     Last login: Fri Feb  4 17:19:26 2011 from LOCAL_CLIENT_MACHINE
>     Connection to MACHINE_IP closed.
> 
> 
> So I increased verbosity but did not see anything obvious.

http://cygwin.com/ml/cygwin/2011-02/msg00236.html


Corinna

-- 
Corinna Vinschen                  Please, send mails regarding Cygwin to
Cygwin Project Co-Leader          cygwin AT cygwin DOT com
Red Hat

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

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

* Re: 1.7.7:  after upgrade lost ability to login via ssh
  2011-02-09 10:54 ` Corinna Vinschen
@ 2011-02-09 16:34   ` Gerry Reno
  2011-02-09 16:54     ` Corinna Vinschen
  0 siblings, 1 reply; 15+ messages in thread
From: Gerry Reno @ 2011-02-09 16:34 UTC (permalink / raw)
  To: cygwin

On 02/09/2011 05:54 AM, Corinna Vinschen wrote:
> On Feb  8 21:14, Gerry Reno wrote:
>   
>> Something else I just discovered after upgrading to 1.7.7 is that I now
>> have lost the ability to login via ssh.
>>
>> I have OpenSSH installed and running sshd as a service.  Both password
>> and keys accepted.  But now neither means will work.
>>
>>     # ssh -i keypair1.pem   Administrator@MACHINE_IP
>>     Last login: Fri Feb  4 17:19:26 2011 from LOCAL_CLIENT_MACHINE
>>     Connection to MACHINE_IP closed.
>>
>>
>> So I increased verbosity but did not see anything obvious.
>>     
> http://cygwin.com/ml/cygwin/2011-02/msg00236.html
>
>
> Corinna
>
>   

Looking around the only thing I can find is in the /var/log/sshd.log:

    Could not load host key: /etc/ssh_host_ecdsa_key
    Could not load host key: /etc/ssh_host_ecdsa_key
    Could not load host key: /etc/ssh_host_ecdsa_key


Not sure this is related to the login problem.

What is a ecdsa key?  How do you generate it?


Regards,
Gerry


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

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

* Re: 1.7.7:  after upgrade lost ability to login via ssh
  2011-02-09 16:34   ` Gerry Reno
@ 2011-02-09 16:54     ` Corinna Vinschen
  0 siblings, 0 replies; 15+ messages in thread
From: Corinna Vinschen @ 2011-02-09 16:54 UTC (permalink / raw)
  To: cygwin

On Feb  9 11:34, Gerry Reno wrote:
> On 02/09/2011 05:54 AM, Corinna Vinschen wrote:
> > On Feb  8 21:14, Gerry Reno wrote:
> >   
> >> Something else I just discovered after upgrading to 1.7.7 is that I now
> >> have lost the ability to login via ssh.
> >>
> >> I have OpenSSH installed and running sshd as a service.  Both password
> >> and keys accepted.  But now neither means will work.
> >>
> >>     # ssh -i keypair1.pem   Administrator@MACHINE_IP
> >>     Last login: Fri Feb  4 17:19:26 2011 from LOCAL_CLIENT_MACHINE
> >>     Connection to MACHINE_IP closed.
> >>
> >>
> >> So I increased verbosity but did not see anything obvious.
> >>     
> > http://cygwin.com/ml/cygwin/2011-02/msg00236.html
> >
> >
> > Corinna
> >
> >   
> 
> Looking around the only thing I can find is in the /var/log/sshd.log:
> 
>     Could not load host key: /etc/ssh_host_ecdsa_key
>     Could not load host key: /etc/ssh_host_ecdsa_key
>     Could not load host key: /etc/ssh_host_ecdsa_key
> 
> 
> Not sure this is related to the login problem.

No.  It's just a message.

> What is a ecdsa key?

http://cygwin.com/ml/cygwin-announce/2011-01/msg00016.html

>   How do you generate it?

$ man ssh-keygen


Corinna

-- 
Corinna Vinschen                  Please, send mails regarding Cygwin to
Cygwin Project Co-Leader          cygwin AT cygwin DOT com
Red Hat

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

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

* Re: 1.7.7:  after upgrade lost ability to login via ssh
  2011-02-09  4:08 ` Larry Hall (Cygwin)
@ 2011-02-09 21:56   ` Gerry Reno
  2011-02-09 22:07     ` Gerry Reno
  0 siblings, 1 reply; 15+ messages in thread
From: Gerry Reno @ 2011-02-09 21:56 UTC (permalink / raw)
  To: cygwin

On 02/08/2011 11:07 PM, Larry Hall (Cygwin) wrote:
> On 2/8/2011 9:14 PM, Gerry Reno wrote:
>> Something else I just discovered after upgrading to 1.7.7 is that I now
>> have lost the ability to login via ssh.
>>
>> I have OpenSSH installed and running sshd as a service.  Both password
>> and keys accepted.  But now neither means will work.
>>
>>      # ssh -i keypair1.pem   Administrator@MACHINE_IP
>>      Last login: Fri Feb  4 17:19:26 2011 from LOCAL_CLIENT_MACHINE
>>      Connection to MACHINE_IP closed.
>>
>>
>> So I increased verbosity but did not see anything obvious.
>>
>>
>>      # ssh -v -i keypair1.pem   Administrator@MACHINE_IP
>>      OpenSSH_5.2p1, OpenSSL 0.9.8k-fips 25 Mar 2009
>>      debug1: Reading configuration data /etc/ssh/ssh_config
>>      debug1: Applying options for *
>>      debug1: Connecting to MACHINE_IP [MACHINE_IP] port 22.
>>      debug1: Connection established.
>>      debug1: permanently_set_uid: 0/0
>>      debug1: identity file keypair1.pem type -1
>>      debug1: Remote protocol version 2.0, remote software version
>> OpenSSH_5.8
>
> Does reverting OpenSSH to 5.7 make a difference?
>

Downgraded to 5.7:

    bash-4.1$ sshd --version
    sshd: unknown option -- -
    OpenSSH_5.7p1, OpenSSL 0.9.8r 8 Feb 2011


From client:

    ssh -i keypair1.pem   Administrator@MACHINE_IP
    Last login: Wed Feb  9 12:54:08 2011 from LOCAL_CLIENT_IP
    Connection to MACHINE_IP closed.


Nope.  Still have the same problem.  Connection is made but immediately
closes.


Regards,
Gerry





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

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

* Re: 1.7.7:  after upgrade lost ability to login via ssh
  2011-02-09 21:56   ` Gerry Reno
@ 2011-02-09 22:07     ` Gerry Reno
  2011-02-09 22:27       ` Gerry Reno
  2011-02-09 22:35       ` Larry Hall (Cygwin)
  0 siblings, 2 replies; 15+ messages in thread
From: Gerry Reno @ 2011-02-09 22:07 UTC (permalink / raw)
  To: cygwin

On 02/09/2011 04:56 PM, Gerry Reno wrote:
> On 02/08/2011 11:07 PM, Larry Hall (Cygwin) wrote:
>   
>> On 2/8/2011 9:14 PM, Gerry Reno wrote:
>>     
>>> Something else I just discovered after upgrading to 1.7.7 is that I now
>>> have lost the ability to login via ssh.
>>>
>>> I have OpenSSH installed and running sshd as a service.  Both password
>>> and keys accepted.  But now neither means will work.
>>>
>>>      # ssh -i keypair1.pem   Administrator@MACHINE_IP
>>>      Last login: Fri Feb  4 17:19:26 2011 from LOCAL_CLIENT_MACHINE
>>>      Connection to MACHINE_IP closed.
>>>
>>>
>>> So I increased verbosity but did not see anything obvious.
>>>
>>>
>>>      # ssh -v -i keypair1.pem   Administrator@MACHINE_IP
>>>      OpenSSH_5.2p1, OpenSSL 0.9.8k-fips 25 Mar 2009
>>>      debug1: Reading configuration data /etc/ssh/ssh_config
>>>      debug1: Applying options for *
>>>      debug1: Connecting to MACHINE_IP [MACHINE_IP] port 22.
>>>      debug1: Connection established.
>>>      debug1: permanently_set_uid: 0/0
>>>      debug1: identity file keypair1.pem type -1
>>>      debug1: Remote protocol version 2.0, remote software version
>>> OpenSSH_5.8
>>>       
>> Does reverting OpenSSH to 5.7 make a difference?
>>
>>     
> Downgraded to 5.7:
>
>     bash-4.1$ sshd --version
>     sshd: unknown option -- -
>     OpenSSH_5.7p1, OpenSSL 0.9.8r 8 Feb 2011
>
>
> >From client:
>
>     ssh -i keypair1.pem   Administrator@MACHINE_IP
>     Last login: Wed Feb  9 12:54:08 2011 from LOCAL_CLIENT_IP
>     Connection to MACHINE_IP closed.
>
>
> Nope.  Still have the same problem.  Connection is made but immediately
> closes.
>
>
>   

I'm suspecting this is related to running Cygwin 1.7.

In looking back though some notes I started having bash shell problems
after upgrading from 1.5 to 1.7. 

Now on 1.7 if I try to run bash as a login shell it just gets "Bad
address" or segfault errors and immediately exits the shell which also
probably affects 'ssh'.

I don't remember having any bash problems when I was running Cygwin 1.5
on this machine.  My notes reflect screen copies showing bash able to
run as a login shell without any problem.


Regards,
Gerry



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

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

* Re: 1.7.7:  after upgrade lost ability to login via ssh
  2011-02-09 22:07     ` Gerry Reno
@ 2011-02-09 22:27       ` Gerry Reno
  2011-02-09 22:35       ` Larry Hall (Cygwin)
  1 sibling, 0 replies; 15+ messages in thread
From: Gerry Reno @ 2011-02-09 22:27 UTC (permalink / raw)
  To: cygwin

On 02/09/2011 05:07 PM, Gerry Reno wrote:
> On 02/09/2011 04:56 PM, Gerry Reno wrote:
>   
>> On 02/08/2011 11:07 PM, Larry Hall (Cygwin) wrote:
>>   
>>     
>>> On 2/8/2011 9:14 PM, Gerry Reno wrote:
>>>     
>>>       
>>>> Something else I just discovered after upgrading to 1.7.7 is that I now
>>>> have lost the ability to login via ssh.
>>>>
>>>> I have OpenSSH installed and running sshd as a service.  Both password
>>>> and keys accepted.  But now neither means will work.
>>>>
>>>>      # ssh -i keypair1.pem   Administrator@MACHINE_IP
>>>>      Last login: Fri Feb  4 17:19:26 2011 from LOCAL_CLIENT_MACHINE
>>>>      Connection to MACHINE_IP closed.
>>>>
>>>>
>>>> So I increased verbosity but did not see anything obvious.
>>>>
>>>>
>>>>      # ssh -v -i keypair1.pem   Administrator@MACHINE_IP
>>>>      OpenSSH_5.2p1, OpenSSL 0.9.8k-fips 25 Mar 2009
>>>>      debug1: Reading configuration data /etc/ssh/ssh_config
>>>>      debug1: Applying options for *
>>>>      debug1: Connecting to MACHINE_IP [MACHINE_IP] port 22.
>>>>      debug1: Connection established.
>>>>      debug1: permanently_set_uid: 0/0
>>>>      debug1: identity file keypair1.pem type -1
>>>>      debug1: Remote protocol version 2.0, remote software version
>>>> OpenSSH_5.8
>>>>       
>>>>         
>>> Does reverting OpenSSH to 5.7 make a difference?
>>>
>>>     
>>>       
>> Downgraded to 5.7:
>>
>>     bash-4.1$ sshd --version
>>     sshd: unknown option -- -
>>     OpenSSH_5.7p1, OpenSSL 0.9.8r 8 Feb 2011
>>
>>
>> >From client:
>>
>>     ssh -i keypair1.pem   Administrator@MACHINE_IP
>>     Last login: Wed Feb  9 12:54:08 2011 from LOCAL_CLIENT_IP
>>     Connection to MACHINE_IP closed.
>>
>>
>> Nope.  Still have the same problem.  Connection is made but immediately
>> closes.
>>
>>
>>   
>>     
> I'm suspecting this is related to running Cygwin 1.7.
>
> In looking back though some notes I started having bash shell problems
> after upgrading from 1.5 to 1.7. 
>
> Now on 1.7 if I try to run bash as a login shell it just gets "Bad
> address" or segfault errors and immediately exits the shell which also
> probably affects 'ssh'.
>
> I don't remember having any bash problems when I was running Cygwin 1.5
> on this machine.  My notes reflect screen copies showing bash able to
> run as a login shell without any problem.
>
>
>   
And I did test with today's release of Bash 4.1.9-3 and nothing
improved, same "Bad address" and segfault errors:

    bash-4.1$ bash --version
    GNU bash, version 4.1.9(3)-release (i686-pc-cygwin)



Regards,
Gerry



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

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

* Re: 1.7.7:  after upgrade lost ability to login via ssh
  2011-02-09 22:07     ` Gerry Reno
  2011-02-09 22:27       ` Gerry Reno
@ 2011-02-09 22:35       ` Larry Hall (Cygwin)
  2011-02-09 22:56         ` Gerry Reno
  1 sibling, 1 reply; 15+ messages in thread
From: Larry Hall (Cygwin) @ 2011-02-09 22:35 UTC (permalink / raw)
  To: cygwin

On 2/9/2011 5:07 PM, Gerry Reno wrote:
> On 02/09/2011 04:56 PM, Gerry Reno wrote:
>> On 02/08/2011 11:07 PM, Larry Hall (Cygwin) wrote:
>>
>>> On 2/8/2011 9:14 PM, Gerry Reno wrote:
>>>
>>>> Something else I just discovered after upgrading to 1.7.7 is that I now
>>>> have lost the ability to login via ssh.
>>>>
>>>> I have OpenSSH installed and running sshd as a service.  Both password
>>>> and keys accepted.  But now neither means will work.
>>>>
>>>>       # ssh -i keypair1.pem   Administrator@MACHINE_IP
>>>>       Last login: Fri Feb  4 17:19:26 2011 from LOCAL_CLIENT_MACHINE
>>>>       Connection to MACHINE_IP closed.
>>>>
>>>>
>>>> So I increased verbosity but did not see anything obvious.
>>>>
>>>>
>>>>       # ssh -v -i keypair1.pem   Administrator@MACHINE_IP
>>>>       OpenSSH_5.2p1, OpenSSL 0.9.8k-fips 25 Mar 2009
>>>>       debug1: Reading configuration data /etc/ssh/ssh_config
>>>>       debug1: Applying options for *
>>>>       debug1: Connecting to MACHINE_IP [MACHINE_IP] port 22.
>>>>       debug1: Connection established.
>>>>       debug1: permanently_set_uid: 0/0
>>>>       debug1: identity file keypair1.pem type -1
>>>>       debug1: Remote protocol version 2.0, remote software version
>>>> OpenSSH_5.8
>>>>
>>> Does reverting OpenSSH to 5.7 make a difference?
>>>
>>>
>> Downgraded to 5.7:
>>
>>      bash-4.1$ sshd --version
>>      sshd: unknown option -- -
>>      OpenSSH_5.7p1, OpenSSL 0.9.8r 8 Feb 2011
>>
>>
>> > From client:
>>
>>      ssh -i keypair1.pem   Administrator@MACHINE_IP
>>      Last login: Wed Feb  9 12:54:08 2011 from LOCAL_CLIENT_IP
>>      Connection to MACHINE_IP closed.
>>
>>
>> Nope.  Still have the same problem.  Connection is made but immediately
>> closes.
>>
>>
>>
>
> I'm suspecting this is related to running Cygwin 1.7.
>
> In looking back though some notes I started having bash shell problems
> after upgrading from 1.5 to 1.7.
>
> Now on 1.7 if I try to run bash as a login shell it just gets "Bad
> address" or segfault errors and immediately exits the shell which also
> probably affects 'ssh'.
>
> I don't remember having any bash problems when I was running Cygwin 1.5
> on this machine.  My notes reflect screen copies showing bash able to
> run as a login shell without any problem.

Yep, that's the way we all run by default (see cygwin.bat).  I agree
that if you're having problems getting bash to behave, it's best to focus
on that issue first.  Your ssh problems may just be another symptom of
the same thing.  How about sending cygcheck output
(<http://cygwin.com/problems.html>)?  There may be something helpful in
that which someone on the list might pick up on.

-- 
Larry

_____________________________________________________________________

A: Yes.
> Q: Are you sure?
>> A: Because it reverses the logical flow of conversation.
>>> Q: Why is top posting annoying in email?

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

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

* Re: 1.7.7:  after upgrade lost ability to login via ssh
  2011-02-09 22:35       ` Larry Hall (Cygwin)
@ 2011-02-09 22:56         ` Gerry Reno
  2011-02-09 23:43           ` Larry Hall (Cygwin)
  0 siblings, 1 reply; 15+ messages in thread
From: Gerry Reno @ 2011-02-09 22:56 UTC (permalink / raw)
  To: cygwin

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

On 02/09/2011 05:35 PM, Larry Hall (Cygwin) wrote:
> On 2/9/2011 5:07 PM, Gerry Reno wrote:
>> On 02/09/2011 04:56 PM, Gerry Reno wrote:
>>> On 02/08/2011 11:07 PM, Larry Hall (Cygwin) wrote:
>>>
>>>> On 2/8/2011 9:14 PM, Gerry Reno wrote:
>>>>
>>>>> Something else I just discovered after upgrading to 1.7.7 is that
>>>>> I now
>>>>> have lost the ability to login via ssh.
>>>>>
>>>>> I have OpenSSH installed and running sshd as a service.  Both
>>>>> password
>>>>> and keys accepted.  But now neither means will work.
>>>>>
>>>>>       # ssh -i keypair1.pem   Administrator@MACHINE_IP
>>>>>       Last login: Fri Feb  4 17:19:26 2011 from LOCAL_CLIENT_MACHINE
>>>>>       Connection to MACHINE_IP closed.
>>>>>
>>>>>
>>>>> So I increased verbosity but did not see anything obvious.
>>>>>
>>>>>
>>>>>       # ssh -v -i keypair1.pem   Administrator@MACHINE_IP
>>>>>       OpenSSH_5.2p1, OpenSSL 0.9.8k-fips 25 Mar 2009
>>>>>       debug1: Reading configuration data /etc/ssh/ssh_config
>>>>>       debug1: Applying options for *
>>>>>       debug1: Connecting to MACHINE_IP [MACHINE_IP] port 22.
>>>>>       debug1: Connection established.
>>>>>       debug1: permanently_set_uid: 0/0
>>>>>       debug1: identity file keypair1.pem type -1
>>>>>       debug1: Remote protocol version 2.0, remote software version
>>>>> OpenSSH_5.8
>>>>>
>>>> Does reverting OpenSSH to 5.7 make a difference?
>>>>
>>>>
>>> Downgraded to 5.7:
>>>
>>>      bash-4.1$ sshd --version
>>>      sshd: unknown option -- -
>>>      OpenSSH_5.7p1, OpenSSL 0.9.8r 8 Feb 2011
>>>
>>>
>>> > From client:
>>>
>>>      ssh -i keypair1.pem   Administrator@MACHINE_IP
>>>      Last login: Wed Feb  9 12:54:08 2011 from LOCAL_CLIENT_IP
>>>      Connection to MACHINE_IP closed.
>>>
>>>
>>> Nope.  Still have the same problem.  Connection is made but immediately
>>> closes.
>>>
>>>
>>>
>>
>> I'm suspecting this is related to running Cygwin 1.7.
>>
>> In looking back though some notes I started having bash shell problems
>> after upgrading from 1.5 to 1.7.
>>
>> Now on 1.7 if I try to run bash as a login shell it just gets "Bad
>> address" or segfault errors and immediately exits the shell which also
>> probably affects 'ssh'.
>>
>> I don't remember having any bash problems when I was running Cygwin 1.5
>> on this machine.  My notes reflect screen copies showing bash able to
>> run as a login shell without any problem.
>
> Yep, that's the way we all run by default (see cygwin.bat).  I agree
> that if you're having problems getting bash to behave, it's best to focus
> on that issue first.  Your ssh problems may just be another symptom of
> the same thing.  How about sending cygcheck output
> (<http://cygwin.com/problems.html>)?  There may be something helpful in
> that which someone on the list might pick up on.
>

Ok, ran a new cygcheck and attached it.


Regards,
Gerry



[-- Attachment #2: cygcheck-20110209.out --]
[-- Type: text/plain, Size: 77728 bytes --]


Cygwin Configuration Diagnostics
Current System Time: Wed Feb 09 17:48:30 2011

Windows 2003 Server R2 Datacenter Edition Ver 5.2 Build 3790 Service Pack 2

Running under WOW64 on AMD64

Running in Terminal Service session

Path:   C:\cygwin\usr\local\sbin
        C:\cygwin\usr\local\bin
        C:\cygwin\usr\sbin
        C:\cygwin\bin
        C:\cygwin\sbin
        C:\cygwin\bin
        C:\WINDOWS\system32
        C:\WINDOWS
        C:\WINDOWS\System32\Wbem
        C:\Program Files (x86)\Microsoft SQL Server\90\Tools\binn\
        C:\cygwin\bin
        C:\strawberry\c\bin
        C:\strawberry\perl\site\bin
        C:\strawberry\perl\bin

Output from C:\cygwin\bin\id.exe
UID: 500(Administrator)   GID: 513(None)
513(None)                 0(root)                   544(Administrators)
555(Remote Desktop Users) 545(Users)

SysDir: C:\WINDOWS\system32
WinDir: C:\WINDOWS

PWD = '/home/Administrator'
CYGWIN = 'ntsec'
HOME = '/home/Administrator'

HOMEPATH = '\Documents and Settings\Administrator'
APPDATA = 'C:\Documents and Settings\Administrator\Application Data'
ProgramW6432 = 'C:\Program Files'
TERM = 'dumb'
PROCESSOR_IDENTIFIER = 'EM64T Family 6 Model 23 Stepping 10, GenuineIntel'
WINDIR = 'C:\WINDOWS'
OLDPWD = '/usr/bin'
USERDOMAIN = 'IP-0A7A25A3'
CommonProgramFiles(x86) = 'C:\Program Files (x86)\Common Files'
OS = 'Windows_NT'
ALLUSERSPROFILE = 'C:\Documents and Settings\All Users'
COMMONPROGRAMFILES = 'C:\Program Files (x86)\Common Files'
USERNAME = 'Administrator'
ClusterLog = 'C:\WINDOWS\Cluster\cluster.log'
PROCESSOR_LEVEL = '6'
ProgramFiles(x86) = 'C:\Program Files (x86)'
FTP_PASSIVE = '1'
FP_NO_HOST_CHECK = 'NO'
SYSTEMDRIVE = 'C:'
PROCESSOR_ARCHITEW6432 = 'AMD64'
USERPROFILE = 'C:\Documents and Settings\Administrator'
CLIENTNAME = 'Console'
LOGONSERVER = '\\IP-0A7A25A3'
CommonProgramW6432 = 'C:\Program Files\Common Files'
PROCESSOR_ARCHITECTURE = 'x86'
!C: = 'C:\cygwin\bin'
SHLVL = '1'
PATHEXT = '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH'
HOMEDRIVE = 'C:'
PROMPT = '$P$G'
COMSPEC = 'C:\WINDOWS\system32\cmd.exe'
SYSTEMROOT = 'C:\WINDOWS'
PROCESSOR_REVISION = '170a'
PROGRAMFILES = 'C:\Program Files (x86)'
NUMBER_OF_PROCESSORS = '2'
SESSIONNAME = 'RDP-Tcp#1'
COMPUTERNAME = 'IP-0A7A25A3'
_ = '/usr/bin/cygcheck'

HKEY_CURRENT_USER\Console\Cygwin
  (default) = 0x00000007
  PopupColors = 0x000000f5
  ColorTable00 = 0x00000000
  ColorTable01 = 0x00800000
  ColorTable02 = 0x00008000
  ColorTable03 = 0x00808000
  ColorTable04 = 0x00000080
  ColorTable05 = 0x00800080
  ColorTable06 = 0x00008080
  ColorTable07 = 0x00c0c0c0
  ColorTable08 = 0x00808080
  ColorTable09 = 0x00ff0000
  ColorTable10 = 0x0000ff00
  ColorTable11 = 0x00ffff00
  ColorTable12 = 0x000000ff
  ColorTable13 = 0x00ff00ff
  ColorTable14 = 0x0000ffff
  ColorTable15 = 0x00ffffff
  InsertMode = 0x00000001
  QuickEdit = 0x00000000
  ScreenBufferSize = 0x012c0050
  WindowSize = 0x00190050
  FontSize = 0x00000000
  FontFamily = 0x00000000
  FontWeight = 0x00000000
  FaceName = ''
  CursorSize = 0x00000019
  HistoryBufferSize = 0x00000032
  NumberOfHistoryBuffers = 0x00000004
  HistoryNoDup = 0x00000000
HKEY_CURRENT_USER\Software\Cygwin
HKEY_CURRENT_USER\Software\Cygwin\Program Options
HKEY_CURRENT_USER\Software\Cygwin\setup
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\MenuOrder\Start Menu2\Programs\Cygwin
  (default) = (unsupported type)
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\MenuOrder\Start Menu2\Programs\Cygwin-X
  (default) = (unsupported type)
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\EscDomains\cygwin.com
  (default) = 0x00000002
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\EscDomains\cygwin.com\www
  (default) = 0x00000002
HKEY_LOCAL_MACHINE\SOFTWARE\Cygwin
HKEY_LOCAL_MACHINE\SOFTWARE\Cygwin\Installations
  (default) = '\??\C:\cygwin'
  ccdba32960f57d12 = '\??\C:\cygwin'
HKEY_LOCAL_MACHINE\SOFTWARE\Cygwin\Program Options
HKEY_LOCAL_MACHINE\SOFTWARE\Cygwin\setup
  (default) = 'C:\cygwin'

obcaseinsensitive set to 1

Cygwin installations found in the registry:
  System: Key: c5e39b7a9d22bafb Path: C:\cygwin
  System: Key: ccdba32960f57d12 Path: C:\cygwin

c:  hd  NTFS     30718Mb  32% CP CS UN PA FC

C:\cygwin        /          system  binary,auto
C:\cygwin\bin    /usr/bin   system  binary,auto
C:\cygwin\lib    /usr/lib   system  binary,auto
cygdrive prefix  /cygdrive  user    binary,auto

Found: C:\cygwin\bin\awk
Found: C:\cygwin\bin\awk
Found: C:\cygwin\bin\awk
 -> C:\cygwin\bin\gawk.exe
Found: C:\cygwin\bin\bash.exe
Found: C:\cygwin\bin\bash.exe
Found: C:\cygwin\bin\bash.exe
Found: C:\cygwin\bin\cat.exe
Found: C:\cygwin\bin\cat.exe
Found: C:\cygwin\bin\cat.exe
Found: C:\cygwin\bin\cp.exe
Found: C:\cygwin\bin\cp.exe
Found: C:\cygwin\bin\cp.exe
Found: C:\cygwin\bin\cpp.exe
Found: C:\cygwin\bin\cpp.exe
Found: C:\cygwin\bin\cpp.exe
Found: C:\strawberry\c\bin\cpp.exe
Warning: C:\cygwin\bin\cpp.exe hides C:\strawberry\c\bin\cpp.exe
 -> C:\cygwin\etc\alternatives\cpp
 -> C:\cygwin\bin\cpp-3.exe
Not Found: crontab
Found: C:\cygwin\bin\find.exe
Found: C:\cygwin\bin\find.exe
Found: C:\WINDOWS\system32\find.exe
Warning: C:\cygwin\bin\find.exe hides C:\WINDOWS\system32\find.exe
Found: C:\cygwin\bin\find.exe
Found: C:\cygwin\bin\gcc.exe
Found: C:\cygwin\bin\gcc.exe
Found: C:\cygwin\bin\gcc.exe
Found: C:\strawberry\c\bin\gcc.exe
Warning: C:\cygwin\bin\gcc.exe hides C:\strawberry\c\bin\gcc.exe
 -> C:\cygwin\etc\alternatives\gcc
 -> C:\cygwin\bin\gcc-3.exe
Not Found: gdb
Found: C:\cygwin\bin\grep.exe
Found: C:\cygwin\bin\grep.exe
Found: C:\cygwin\bin\grep.exe
Found: C:\cygwin\bin\kill.exe
Found: C:\cygwin\bin\kill.exe
Found: C:\cygwin\bin\kill.exe
Found: C:\cygwin\bin\ld.exe
Found: C:\cygwin\bin\ld.exe
Found: C:\cygwin\bin\ld.exe
Found: C:\strawberry\c\bin\ld.exe
Warning: C:\cygwin\bin\ld.exe hides C:\strawberry\c\bin\ld.exe
Found: C:\cygwin\bin\ls.exe
Found: C:\cygwin\bin\ls.exe
Found: C:\cygwin\bin\ls.exe
Found: C:\cygwin\bin\make.exe
Found: C:\cygwin\bin\make.exe
Found: C:\cygwin\bin\make.exe
Found: C:\cygwin\bin\mv.exe
Found: C:\cygwin\bin\mv.exe
Found: C:\cygwin\bin\mv.exe
Found: C:\strawberry\c\bin\patch.exe
Found: C:\cygwin\bin\perl.exe
Found: C:\cygwin\bin\perl.exe
Found: C:\cygwin\bin\perl.exe
Found: C:\strawberry\perl\bin\perl.exe
Warning: C:\cygwin\bin\perl.exe hides C:\strawberry\perl\bin\perl.exe
Found: C:\cygwin\bin\rm.exe
Found: C:\cygwin\bin\rm.exe
Found: C:\cygwin\bin\rm.exe
Found: C:\cygwin\bin\sed.exe
Found: C:\cygwin\bin\sed.exe
Found: C:\cygwin\bin\sed.exe
Found: C:\cygwin\bin\ssh.exe
Found: C:\cygwin\bin\ssh.exe
Found: C:\cygwin\bin\ssh.exe
Found: C:\cygwin\bin\sh.exe
Found: C:\cygwin\bin\sh.exe
Found: C:\cygwin\bin\sh.exe
Found: C:\cygwin\bin\tar.exe
Found: C:\cygwin\bin\tar.exe
Found: C:\cygwin\bin\tar.exe
Found: C:\cygwin\bin\test.exe
Found: C:\cygwin\bin\test.exe
Found: C:\cygwin\bin\test.exe
Found: C:\cygwin\bin\vi
Found: C:\cygwin\bin\vi
Found: C:\cygwin\bin\vi
 -> C:\cygwin\bin\vim-nox.exe
Found: C:\cygwin\bin\vim
Found: C:\cygwin\bin\vim
Found: C:\cygwin\bin\vim
 -> C:\cygwin\etc\alternatives\vim
 -> C:\cygwin\bin\vim-nox.exe

   93k 2010/06/15 C:\cygwin\bin\cygatk-1.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygatk-1.0-0.dll" v0.0 ts=2010/6/15 2:06
   15k 2009/12/27 C:\cygwin\bin\cygattr-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygattr-1.dll" v0.0 ts=2009/11/18 7:52
   95k 2010/06/24 C:\cygwin\bin\cygblkid-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygblkid-1.dll" v0.0 ts=2010/6/24 15:20
  269k 2010/05/17 C:\cygwin\bin\cygboost_python-mt-1_43.dll - os=4.0 img=1.0 sys=4.0
                  "cygboost_python-mt-1_43.dll" v0.0 ts=2010/5/16 21:58
   62k 2011/01/12 C:\cygwin\bin\cygbz2-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygbz2-1.dll" v0.0 ts=2011/1/11 22:12
  460k 2010/05/04 C:\cygwin\bin\cygcairo-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygcairo-2.dll" v0.0 ts=2010/5/4 12:21
   11k 2009/12/23 C:\cygwin\bin\cygcharset-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygcharset-1.dll" v0.0 ts=2009/12/23 8:25
    7k 2003/10/19 C:\cygwin\bin\cygcrypt-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygcrypt-0.dll" v0.0 ts=2003/10/19 3:57
 1147k 2011/02/08 C:\cygwin\bin\cygcrypto-0.9.8.dll - os=4.0 img=1.0 sys=4.0
                  "cygcrypto-0.9.8.dll" v0.0 ts=2011/2/8 13:32
  284k 2010/06/01 C:\cygwin\bin\cygcurl-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygcurl-4.dll" v0.0 ts=2010/6/1 15:07
  943k 2007/12/17 C:\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 8:12
 1296k 2007/12/17 C:\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 8:12
   46k 2009/01/07 C:\cygwin\bin\cygecpg.dll - os=4.0 img=1.0 sys=4.0
                  "cygecpg.dll" v0.0 ts=2009/1/7 11:46
  511k 2010/06/17 C:\cygwin\bin\cygedit-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygedit-0.dll" v0.0 ts=2010/6/17 7:42
  118k 2008/05/09 C:\cygwin\bin\cygexpat-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygexpat-1.dll" v0.0 ts=2008/5/9 0:03
   71k 2010/05/12 C:\cygwin\bin\cygexslt-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygexslt-0.dll" v0.0 ts=2010/5/12 5:59
   29k 2010/05/12 C:\cygwin\bin\cygfam-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygfam-0.dll" v0.0 ts=2010/5/12 6:26
   24k 2010/08/15 C:\cygwin\bin\cygffi-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygffi-4.dll" v0.0 ts=2010/8/14 19:06
  176k 2010/01/29 C:\cygwin\bin\cygfontconfig-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygfontconfig-1.dll" v0.0 ts=2010/1/28 17:12
   21k 2009/10/14 C:\cygwin\bin\cygfontenc-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygfontenc-1.dll" v0.0 ts=2009/10/13 21:04
   43k 2010/01/02 C:\cygwin\bin\cygform-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygform-10.dll" v0.0 ts=2010/1/2 9:49
   40k 2009/03/01 C:\cygwin\bin\cygform-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygform-8.dll" v0.0 ts=2009/3/1 1:32
   43k 2009/11/20 C:\cygwin\bin\cygform-9.dll - os=4.0 img=1.0 sys=4.0
                  "cygform-9.dll" v0.0 ts=2009/11/20 14:14
   47k 2010/01/02 C:\cygwin\bin\cygformw-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygformw-10.dll" v0.0 ts=2010/1/2 12:31
  860k 2008/03/23 C:\cygwin\bin\cygfpx-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygfpx-1.dll" v0.0 ts=2008/3/23 16:12
  492k 2010/03/03 C:\cygwin\bin\cygfreetype-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygfreetype-6.dll" v0.0 ts=2010/3/2 16:24
   29k 2010/05/12 C:\cygwin\bin\cyggamin-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggamin-1-0.dll" v0.0 ts=2010/5/12 6:26
   45k 2009/12/11 C:\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 19:30
  449k 2010/03/17 C:\cygwin\bin\cyggcrypt-11.dll - os=4.0 img=1.0 sys=4.0
                  "cyggcrypt-11.dll" v0.0 ts=2010/3/17 17:45
   19k 2009/02/26 C:\cygwin\bin\cyggdbm-4.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdbm-4.dll" v0.0 ts=2009/2/26 2:58
    8k 2009/02/26 C:\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 2:58
  546k 2010/06/15 C:\cygwin\bin\cyggdk-x11-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdk-x11-2.0-0.dll" v0.0 ts=2010/6/15 3:14
   94k 2010/06/15 C:\cygwin\bin\cyggdk_pixbuf-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdk_pixbuf-2.0-0.dll" v0.0 ts=2010/6/15 3:05
  645k 2010/08/15 C:\cygwin\bin\cyggfortran-3.dll - os=4.0 img=1.0 sys=4.0
                  "cyggfortran-3.dll" v0.0 ts=2010/8/14 19:43
   29k 2009/03/23 C:\cygwin\bin\cyggif-4.dll - os=4.0 img=1.0 sys=4.0
                  "cyggif-4.dll" v0.0 ts=2009/3/23 14:55
  552k 2010/06/15 C:\cygwin\bin\cyggio-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggio-2.0-0.dll" v0.0 ts=2010/6/14 23:25
   70k 2010/06/15 C:\cygwin\bin\cyggirepository-1.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggirepository-1.0-0.dll" v0.0 ts=2010/6/15 0:34
  357k 2010/10/08 C:\cygwin\bin\cygGL-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygGL-1.dll" v0.0 ts=2010/10/7 16:56
   76k 2009/03/26 C:\cygwin\bin\cygglade-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygglade-2.0-0.dll" v0.0 ts=2009/3/25 18:23
  764k 2010/06/15 C:\cygwin\bin\cygglib-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygglib-2.0-0.dll" v0.0 ts=2010/6/14 23:22
  141k 2009/03/30 C:\cygwin\bin\cygglitz-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygglitz-1.dll" v0.0 ts=2009/3/30 12:22
   21k 2009/03/30 C:\cygwin\bin\cygglitz-glx-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygglitz-glx-1.dll" v0.0 ts=2009/3/30 12:23
   14k 2010/06/15 C:\cygwin\bin\cyggmodule-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggmodule-2.0-0.dll" v0.0 ts=2010/6/14 23:23
  315k 2009/06/06 C:\cygwin\bin\cyggmp-3.dll - os=4.0 img=1.0 sys=4.0
                  "cyggmp-3.dll" v0.0 ts=2009/6/6 7:23
  233k 2010/06/15 C:\cygwin\bin\cyggobject-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggobject-2.0-0.dll" v0.0 ts=2010/6/14 23:23
   27k 2010/08/15 C:\cygwin\bin\cyggomp-1.dll - os=4.0 img=1.0 sys=4.0
                  "cyggomp-1.dll" v0.0 ts=2010/8/14 19:08
   16k 2010/03/17 C:\cygwin\bin\cyggpg-error-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggpg-error-0.dll" v0.0 ts=2010/3/17 17:21
  191k 2010/05/12 C:\cygwin\bin\cyggsf-1-114.dll - os=4.0 img=1.0 sys=4.0
                  "cyggsf-1-114.dll" v0.0 ts=2010/5/12 6:34
   17k 2010/06/15 C:\cygwin\bin\cyggthread-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggthread-2.0-0.dll" v0.0 ts=2010/6/14 23:23
 3659k 2010/06/15 C:\cygwin\bin\cyggtk-x11-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggtk-x11-2.0-0.dll" v0.0 ts=2010/6/15 3:18
   24k 2009/06/23 C:\cygwin\bin\cyghistory6.dll - os=4.0 img=1.0 sys=4.0
                  "cyghistory6.dll" v0.0 ts=2009/6/23 8:20
   25k 2011/01/26 C:\cygwin\bin\cyghistory7.dll - os=4.0 img=1.0 sys=4.0
                  "cyghistory7.dll" v0.0 ts=2011/1/25 22:25
   73k 2009/09/02 C:\cygwin\bin\cygICE-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygICE-6.dll" v0.0 ts=2009/9/2 17:39
  360k 2010/08/15 C:\cygwin\bin\cygicons-0.dll - os=4.0 img=1.4 sys=4.0
                  "cygicons-0.dll" v0.0 ts=2010/8/15 18:45
  982k 2009/12/23 C:\cygwin\bin\cygiconv-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygiconv-2.dll" v0.0 ts=2009/12/23 8:25
  193k 2010/05/16 C:\cygwin\bin\cygidn-11.dll - os=4.0 img=1.0 sys=4.0
                  "cygidn-11.dll" v0.0 ts=2010/5/16 9:37
   31k 2005/11/20 C:\cygwin\bin\cygintl-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygintl-3.dll" v0.0 ts=2005/11/19 21:04
   31k 2009/04/03 C:\cygwin\bin\cygintl-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygintl-8.dll" v0.0 ts=2009/4/2 21:15
  246k 2010/05/20 C:\cygwin\bin\cygjasper-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygjasper-1.dll" v0.0 ts=2010/5/20 1:04
   47k 2009/12/23 C:\cygwin\bin\cygjbig-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygjbig-2.dll" v0.0 ts=2009/12/23 11:59
  193k 2009/08/08 C:\cygwin\bin\cygjpeg-7.dll - os=4.0 img=1.0 sys=4.0
                  "cygjpeg-7.dll" v0.0 ts=2009/8/8 15:39
  173k 2010/06/25 C:\cygwin\bin\cyglcms-1.dll - os=4.0 img=1.0 sys=4.0
                  "cyglcms-1.dll" v0.0 ts=2010/6/25 5:50
    5k 2010/08/31 C:\cygwin\bin\cyglsa.dll - os=4.0 img=1.0 sys=4.0
                  "cyglsa.dll" v0.0 ts=2010/8/31 4:00
    9k 2010/08/31 C:\cygwin\bin\cyglsa64.dll - os=5.2 img=0.0 sys=5.2
   30k 2010/09/23 C:\cygwin\bin\cygltdl-7.dll - os=4.0 img=1.0 sys=4.0
                  "cygltdl-7.dll" v0.0 ts=2010/9/23 15:45
  125k 2010/04/09 C:\cygwin\bin\cyglzma-1.dll - os=4.0 img=1.0 sys=4.0
                  "cyglzma-1.dll" v0.0 ts=2010/4/9 11:54
  314k 2010/01/19 C:\cygwin\bin\cygMagick++-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygMagick++-1.dll" v0.0 ts=2010/1/19 7:53
 1801k 2010/01/19 C:\cygwin\bin\cygMagickCore-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygMagickCore-1.dll" v0.0 ts=2010/1/19 7:27
  789k 2010/01/19 C:\cygwin\bin\cygMagickWand-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygMagickWand-1.dll" v0.0 ts=2010/1/19 7:48
   25k 2010/01/02 C:\cygwin\bin\cygmenu-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygmenu-10.dll" v0.0 ts=2010/1/2 9:48
   21k 2009/03/01 C:\cygwin\bin\cygmenu-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygmenu-8.dll" v0.0 ts=2009/3/1 1:31
   25k 2009/11/20 C:\cygwin\bin\cygmenu-9.dll - os=4.0 img=1.0 sys=4.0
                  "cygmenu-9.dll" v0.0 ts=2009/11/20 14:13
   25k 2010/01/02 C:\cygwin\bin\cygmenuw-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygmenuw-10.dll" v0.0 ts=2010/1/2 12:30
  317k 2010/06/25 C:\cygwin\bin\cygming-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygming-1.dll" v0.0 ts=2010/6/25 6:25
   29k 2010/05/16 C:\cygwin\bin\cygmodman-0.dll - os=4.0 img=0.0 sys=4.0
                  "cygmodman-0.dll" v0.0 ts=2010/5/16 15:58
  211k 2009/06/06 C:\cygwin\bin\cygmp-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygmp-3.dll" v0.0 ts=2009/6/6 7:23
   63k 2010/01/02 C:\cygwin\bin\cygncurses++-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses++-10.dll" v0.0 ts=2010/1/2 10:00
   66k 2009/03/01 C:\cygwin\bin\cygncurses++-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses++-8.dll" v0.0 ts=2009/3/1 1:39
   63k 2009/11/20 C:\cygwin\bin\cygncurses++-9.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses++-9.dll" v0.0 ts=2009/11/20 14:25
   63k 2010/01/02 C:\cygwin\bin\cygncurses++w-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses++w-10.dll" v0.0 ts=2010/1/2 12:41
  195k 2010/01/02 C:\cygwin\bin\cygncurses-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses-10.dll" v0.0 ts=2010/1/2 9:45
  237k 2009/03/01 C:\cygwin\bin\cygncurses-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses-8.dll" v0.0 ts=2009/3/1 1:28
  198k 2009/11/20 C:\cygwin\bin\cygncurses-9.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses-9.dll" v0.0 ts=2009/11/20 14:10
  244k 2010/01/02 C:\cygwin\bin\cygncursesw-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygncursesw-10.dll" v0.0 ts=2010/1/2 12:28
   13k 2010/01/02 C:\cygwin\bin\cygpanel-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygpanel-10.dll" v0.0 ts=2010/1/2 9:47
   11k 2009/03/01 C:\cygwin\bin\cygpanel-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygpanel-8.dll" v0.0 ts=2009/3/1 1:30
   13k 2009/11/20 C:\cygwin\bin\cygpanel-9.dll - os=4.0 img=1.0 sys=4.0
                  "cygpanel-9.dll" v0.0 ts=2009/11/20 14:12
   13k 2010/01/02 C:\cygwin\bin\cygpanelw-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygpanelw-10.dll" v0.0 ts=2010/1/2 11:30
  235k 2010/06/28 C:\cygwin\bin\cygpango-1.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpango-1.0-0.dll" v0.0 ts=2010/6/28 1:37
   38k 2010/06/28 C:\cygwin\bin\cygpangocairo-1.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpangocairo-1.0-0.dll" v0.0 ts=2010/6/28 1:38
  131k 2010/06/28 C:\cygwin\bin\cygpangoft2-1.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpangoft2-1.0-0.dll" v0.0 ts=2010/6/28 1:38
   40k 2010/06/28 C:\cygwin\bin\cygpangox-1.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpangox-1.0-0.dll" v0.0 ts=2010/6/28 1:38
   26k 2010/06/28 C:\cygwin\bin\cygpangoxft-1.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpangoxft-1.0-0.dll" v0.0 ts=2010/6/28 1:38
  224k 2010/06/15 C:\cygwin\bin\cygpcre-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpcre-0.dll" v0.0 ts=2010/6/15 0:10
   10k 2010/06/15 C:\cygwin\bin\cygpcreposix-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpcreposix-0.dll" v0.0 ts=2010/6/15 0:11
 1627k 2010/08/29 C:\cygwin\bin\cygperl5_10.dll - os=4.0 img=1.0 sys=4.0
                  "cygperl5_10.dll" v0.0 ts=2010/8/28 14:17
   52k 2009/01/07 C:\cygwin\bin\cygpgtypes.dll - os=4.0 img=1.0 sys=4.0
                  "cygpgtypes.dll" v0.0 ts=2009/1/7 11:46
  377k 2010/08/02 C:\cygwin\bin\cygpixman-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpixman-1-0.dll" v0.0 ts=2010/8/2 19:47
  250k 2010/08/08 C:\cygwin\bin\cygpng12.dll - os=4.0 img=1.0 sys=4.0
                  "cygpng12.dll" v0.0 ts=2010/8/7 23:58
   22k 2002/06/09 C:\cygwin\bin\cygpopt-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpopt-0.dll" v0.0 ts=2002/6/9 1:45
  103k 2009/01/07 C:\cygwin\bin\cygpq.dll - os=4.0 img=1.0 sys=4.0
                  "cygpq.dll" v0.0 ts=2009/1/7 11:46
  106k 2010/05/16 C:\cygwin\bin\cygproxy-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygproxy-1.dll" v0.0 ts=2010/5/16 15:58
   15k 2010/05/12 C:\cygwin\bin\cygpyglib-2.0-python2.6-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpyglib-2.0-python2.6-0.dll" v0.0 ts=2010/5/12 5:14
  155k 2009/06/23 C:\cygwin\bin\cygreadline6.dll - os=4.0 img=1.0 sys=4.0
                  "cygreadline6.dll" v0.0 ts=2009/6/23 8:20
  164k 2011/01/26 C:\cygwin\bin\cygreadline7.dll - os=4.0 img=1.0 sys=4.0
                  "cygreadline7.dll" v0.0 ts=2011/1/25 22:25
   10k 2009/12/14 C:\cygwin\bin\cygsigsegv-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygsigsegv-2.dll" v0.0 ts=2009/12/14 7:56
   28k 2010/06/24 C:\cygwin\bin\cygSM-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygSM-6.dll" v0.0 ts=2010/6/24 16:39
 1613k 2010/12/01 C:\cygwin\bin\cygsqlite3-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygsqlite3-0.dll" v0.0 ts=2010/12/1 7:20
  121k 2010/06/01 C:\cygwin\bin\cygssh2-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygssh2-1.dll" v0.0 ts=2010/6/1 14:44
  263k 2011/02/08 C:\cygwin\bin\cygssl-0.9.8.dll - os=4.0 img=1.0 sys=4.0
                  "cygssl-0.9.8.dll" v0.0 ts=2011/2/8 13:32
   10k 2009/12/11 C:\cygwin\bin\cygssp-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygssp-0.dll" v0.0 ts=2009/12/7 19:38
  773k 2009/12/11 C:\cygwin\bin\cygstdc++-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygstdc++-6.dll" v0.0 ts=2009/12/7 20:07
   48k 2010/01/02 C:\cygwin\bin\cygtic-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygtic-10.dll" v0.0 ts=2010/1/2 9:45
   48k 2009/11/20 C:\cygwin\bin\cygtic-9.dll - os=4.0 img=1.0 sys=4.0
                  "cygtic-9.dll" v0.0 ts=2009/11/20 14:10
   48k 2010/01/02 C:\cygwin\bin\cygticw-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygticw-10.dll" v0.0 ts=2010/1/2 12:28
  347k 2009/12/23 C:\cygwin\bin\cygtiff-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygtiff-5.dll" v0.0 ts=2009/12/23 12:11
   11k 2009/12/23 C:\cygwin\bin\cygtiffxx-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygtiffxx-5.dll" v0.0 ts=2009/12/23 12:11
   16k 2010/06/24 C:\cygwin\bin\cyguuid-1.dll - os=4.0 img=1.0 sys=4.0
                  "cyguuid-1.dll" v0.0 ts=2010/6/24 15:19
   28k 2010/03/28 C:\cygwin\bin\cygwrap-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygwrap-0.dll" v0.0 ts=2010/3/28 5:02
 1040k 2010/02/10 C:\cygwin\bin\cygX11-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygX11-6.dll" v0.0 ts=2010/2/9 19:42
    8k 2010/02/10 C:\cygwin\bin\cygX11-xcb-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygX11-xcb-1.dll" v0.0 ts=2010/2/9 19:43
   11k 2010/08/03 C:\cygwin\bin\cygXau-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXau-6.dll" v0.0 ts=2010/8/2 20:32
  336k 2010/08/03 C:\cygwin\bin\cygXaw-7.dll - os=4.0 img=1.0 sys=4.0
                  "cygXaw-7.dll" v0.0 ts=2010/8/3 0:55
   77k 2010/04/28 C:\cygwin\bin\cygxcb-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygxcb-1.dll" v0.0 ts=2010/4/27 22:15
   53k 2010/04/28 C:\cygwin\bin\cygxcb-glx-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygxcb-glx-0.dll" v0.0 ts=2010/4/27 22:16
   25k 2010/04/28 C:\cygwin\bin\cygxcb-render-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygxcb-render-0.dll" v0.0 ts=2010/4/27 22:16
   11k 2009/09/03 C:\cygwin\bin\cygxcb-render-util-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygxcb-render-util-0.dll" v0.0 ts=2009/9/3 1:24
   12k 2010/08/03 C:\cygwin\bin\cygXcomposite-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXcomposite-1.dll" v0.0 ts=2010/8/3 0:27
   30k 2009/09/03 C:\cygwin\bin\cygXcursor-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXcursor-1.dll" v0.0 ts=2009/9/2 17:47
   11k 2010/08/03 C:\cygwin\bin\cygXdamage-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXdamage-1.dll" v0.0 ts=2010/8/3 0:25
   17k 2009/10/14 C:\cygwin\bin\cygXdmcp-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXdmcp-6.dll" v0.0 ts=2009/10/13 18:31
   52k 2010/08/03 C:\cygwin\bin\cygXext-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXext-6.dll" v0.0 ts=2010/8/3 0:18
   18k 2010/08/03 C:\cygwin\bin\cygXfixes-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygXfixes-3.dll" v0.0 ts=2010/8/3 0:19
   66k 2009/10/15 C:\cygwin\bin\cygXft-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygXft-2.dll" v0.0 ts=2009/10/14 16:33
   49k 2010/08/04 C:\cygwin\bin\cygXi-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXi-6.dll" v0.0 ts=2010/8/3 22:55
    8k 2009/10/14 C:\cygwin\bin\cygXinerama-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXinerama-1.dll" v0.0 ts=2009/10/14 3:39
  122k 2009/10/15 C:\cygwin\bin\cygxkbfile-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygxkbfile-1.dll" v0.0 ts=2009/10/14 1:57
 1128k 2010/05/12 C:\cygwin\bin\cygxml2-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygxml2-2.dll" v0.0 ts=2010/5/12 5:34
   75k 2009/10/14 C:\cygwin\bin\cygXmu-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXmu-6.dll" v0.0 ts=2009/10/14 3:29
   11k 2009/10/14 C:\cygwin\bin\cygXmuu-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXmuu-1.dll" v0.0 ts=2009/10/14 3:29
   53k 2009/10/14 C:\cygwin\bin\cygXpm-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygXpm-4.dll" v0.0 ts=2009/10/14 13:01
   25k 2009/03/20 C:\cygwin\bin\cygXrandr-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygXrandr-2.dll" v0.0 ts=2009/3/13 3:05
   32k 2010/08/03 C:\cygwin\bin\cygXrender-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXrender-1.dll" v0.0 ts=2010/8/3 0:48
  200k 2010/05/12 C:\cygwin\bin\cygxslt-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygxslt-1.dll" v0.0 ts=2010/5/12 5:59
  279k 2010/04/02 C:\cygwin\bin\cygXt-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXt-6.dll" v0.0 ts=2010/4/2 1:27
   64k 2009/03/02 C:\cygwin\bin\cygz.dll - os=4.0 img=1.0 sys=4.0
                  "cygz.dll" v0.0 ts=2009/3/1 20:33
 2586k 2010/08/31 C:\cygwin\bin\cygwin1.dll - os=4.0 img=1.0 sys=4.0
                  "cygwin1.dll" v0.0 ts=2010/8/31 3:58
    Cygwin DLL version info:
        DLL version: 1.7.7
        DLL epoch: 19
        DLL old termios: 5
        DLL malloc env: 28
        Cygwin conv: 181
        API major: 0
        API minor: 230
        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:
        Shared id: cygwin1S5

   93k 2010/06/15 C:\cygwin\bin\cygatk-1.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygatk-1.0-0.dll" v0.0 ts=2010/6/15 2:06
   15k 2009/12/27 C:\cygwin\bin\cygattr-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygattr-1.dll" v0.0 ts=2009/11/18 7:52
   95k 2010/06/24 C:\cygwin\bin\cygblkid-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygblkid-1.dll" v0.0 ts=2010/6/24 15:20
  269k 2010/05/17 C:\cygwin\bin\cygboost_python-mt-1_43.dll - os=4.0 img=1.0 sys=4.0
                  "cygboost_python-mt-1_43.dll" v0.0 ts=2010/5/16 21:58
   62k 2011/01/12 C:\cygwin\bin\cygbz2-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygbz2-1.dll" v0.0 ts=2011/1/11 22:12
  460k 2010/05/04 C:\cygwin\bin\cygcairo-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygcairo-2.dll" v0.0 ts=2010/5/4 12:21
   11k 2009/12/23 C:\cygwin\bin\cygcharset-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygcharset-1.dll" v0.0 ts=2009/12/23 8:25
    7k 2003/10/19 C:\cygwin\bin\cygcrypt-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygcrypt-0.dll" v0.0 ts=2003/10/19 3:57
 1147k 2011/02/08 C:\cygwin\bin\cygcrypto-0.9.8.dll - os=4.0 img=1.0 sys=4.0
                  "cygcrypto-0.9.8.dll" v0.0 ts=2011/2/8 13:32
  284k 2010/06/01 C:\cygwin\bin\cygcurl-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygcurl-4.dll" v0.0 ts=2010/6/1 15:07
  943k 2007/12/17 C:\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 8:12
 1296k 2007/12/17 C:\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 8:12
   46k 2009/01/07 C:\cygwin\bin\cygecpg.dll - os=4.0 img=1.0 sys=4.0
                  "cygecpg.dll" v0.0 ts=2009/1/7 11:46
  511k 2010/06/17 C:\cygwin\bin\cygedit-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygedit-0.dll" v0.0 ts=2010/6/17 7:42
  118k 2008/05/09 C:\cygwin\bin\cygexpat-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygexpat-1.dll" v0.0 ts=2008/5/9 0:03
   71k 2010/05/12 C:\cygwin\bin\cygexslt-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygexslt-0.dll" v0.0 ts=2010/5/12 5:59
   29k 2010/05/12 C:\cygwin\bin\cygfam-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygfam-0.dll" v0.0 ts=2010/5/12 6:26
   24k 2010/08/15 C:\cygwin\bin\cygffi-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygffi-4.dll" v0.0 ts=2010/8/14 19:06
  176k 2010/01/29 C:\cygwin\bin\cygfontconfig-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygfontconfig-1.dll" v0.0 ts=2010/1/28 17:12
   21k 2009/10/14 C:\cygwin\bin\cygfontenc-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygfontenc-1.dll" v0.0 ts=2009/10/13 21:04
   43k 2010/01/02 C:\cygwin\bin\cygform-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygform-10.dll" v0.0 ts=2010/1/2 9:49
   40k 2009/03/01 C:\cygwin\bin\cygform-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygform-8.dll" v0.0 ts=2009/3/1 1:32
   43k 2009/11/20 C:\cygwin\bin\cygform-9.dll - os=4.0 img=1.0 sys=4.0
                  "cygform-9.dll" v0.0 ts=2009/11/20 14:14
   47k 2010/01/02 C:\cygwin\bin\cygformw-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygformw-10.dll" v0.0 ts=2010/1/2 12:31
  860k 2008/03/23 C:\cygwin\bin\cygfpx-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygfpx-1.dll" v0.0 ts=2008/3/23 16:12
  492k 2010/03/03 C:\cygwin\bin\cygfreetype-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygfreetype-6.dll" v0.0 ts=2010/3/2 16:24
   29k 2010/05/12 C:\cygwin\bin\cyggamin-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggamin-1-0.dll" v0.0 ts=2010/5/12 6:26
   45k 2009/12/11 C:\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 19:30
  449k 2010/03/17 C:\cygwin\bin\cyggcrypt-11.dll - os=4.0 img=1.0 sys=4.0
                  "cyggcrypt-11.dll" v0.0 ts=2010/3/17 17:45
   19k 2009/02/26 C:\cygwin\bin\cyggdbm-4.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdbm-4.dll" v0.0 ts=2009/2/26 2:58
    8k 2009/02/26 C:\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 2:58
  546k 2010/06/15 C:\cygwin\bin\cyggdk-x11-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdk-x11-2.0-0.dll" v0.0 ts=2010/6/15 3:14
   94k 2010/06/15 C:\cygwin\bin\cyggdk_pixbuf-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdk_pixbuf-2.0-0.dll" v0.0 ts=2010/6/15 3:05
  645k 2010/08/15 C:\cygwin\bin\cyggfortran-3.dll - os=4.0 img=1.0 sys=4.0
                  "cyggfortran-3.dll" v0.0 ts=2010/8/14 19:43
   29k 2009/03/23 C:\cygwin\bin\cyggif-4.dll - os=4.0 img=1.0 sys=4.0
                  "cyggif-4.dll" v0.0 ts=2009/3/23 14:55
  552k 2010/06/15 C:\cygwin\bin\cyggio-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggio-2.0-0.dll" v0.0 ts=2010/6/14 23:25
   70k 2010/06/15 C:\cygwin\bin\cyggirepository-1.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggirepository-1.0-0.dll" v0.0 ts=2010/6/15 0:34
  357k 2010/10/08 C:\cygwin\bin\cygGL-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygGL-1.dll" v0.0 ts=2010/10/7 16:56
   76k 2009/03/26 C:\cygwin\bin\cygglade-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygglade-2.0-0.dll" v0.0 ts=2009/3/25 18:23
  764k 2010/06/15 C:\cygwin\bin\cygglib-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygglib-2.0-0.dll" v0.0 ts=2010/6/14 23:22
  141k 2009/03/30 C:\cygwin\bin\cygglitz-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygglitz-1.dll" v0.0 ts=2009/3/30 12:22
   21k 2009/03/30 C:\cygwin\bin\cygglitz-glx-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygglitz-glx-1.dll" v0.0 ts=2009/3/30 12:23
   14k 2010/06/15 C:\cygwin\bin\cyggmodule-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggmodule-2.0-0.dll" v0.0 ts=2010/6/14 23:23
  315k 2009/06/06 C:\cygwin\bin\cyggmp-3.dll - os=4.0 img=1.0 sys=4.0
                  "cyggmp-3.dll" v0.0 ts=2009/6/6 7:23
  233k 2010/06/15 C:\cygwin\bin\cyggobject-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggobject-2.0-0.dll" v0.0 ts=2010/6/14 23:23
   27k 2010/08/15 C:\cygwin\bin\cyggomp-1.dll - os=4.0 img=1.0 sys=4.0
                  "cyggomp-1.dll" v0.0 ts=2010/8/14 19:08
   16k 2010/03/17 C:\cygwin\bin\cyggpg-error-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggpg-error-0.dll" v0.0 ts=2010/3/17 17:21
  191k 2010/05/12 C:\cygwin\bin\cyggsf-1-114.dll - os=4.0 img=1.0 sys=4.0
                  "cyggsf-1-114.dll" v0.0 ts=2010/5/12 6:34
   17k 2010/06/15 C:\cygwin\bin\cyggthread-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggthread-2.0-0.dll" v0.0 ts=2010/6/14 23:23
 3659k 2010/06/15 C:\cygwin\bin\cyggtk-x11-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggtk-x11-2.0-0.dll" v0.0 ts=2010/6/15 3:18
   24k 2009/06/23 C:\cygwin\bin\cyghistory6.dll - os=4.0 img=1.0 sys=4.0
                  "cyghistory6.dll" v0.0 ts=2009/6/23 8:20
   25k 2011/01/26 C:\cygwin\bin\cyghistory7.dll - os=4.0 img=1.0 sys=4.0
                  "cyghistory7.dll" v0.0 ts=2011/1/25 22:25
   73k 2009/09/02 C:\cygwin\bin\cygICE-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygICE-6.dll" v0.0 ts=2009/9/2 17:39
  360k 2010/08/15 C:\cygwin\bin\cygicons-0.dll - os=4.0 img=1.4 sys=4.0
                  "cygicons-0.dll" v0.0 ts=2010/8/15 18:45
  982k 2009/12/23 C:\cygwin\bin\cygiconv-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygiconv-2.dll" v0.0 ts=2009/12/23 8:25
  193k 2010/05/16 C:\cygwin\bin\cygidn-11.dll - os=4.0 img=1.0 sys=4.0
                  "cygidn-11.dll" v0.0 ts=2010/5/16 9:37
   31k 2005/11/20 C:\cygwin\bin\cygintl-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygintl-3.dll" v0.0 ts=2005/11/19 21:04
   31k 2009/04/03 C:\cygwin\bin\cygintl-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygintl-8.dll" v0.0 ts=2009/4/2 21:15
  246k 2010/05/20 C:\cygwin\bin\cygjasper-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygjasper-1.dll" v0.0 ts=2010/5/20 1:04
   47k 2009/12/23 C:\cygwin\bin\cygjbig-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygjbig-2.dll" v0.0 ts=2009/12/23 11:59
  193k 2009/08/08 C:\cygwin\bin\cygjpeg-7.dll - os=4.0 img=1.0 sys=4.0
                  "cygjpeg-7.dll" v0.0 ts=2009/8/8 15:39
  173k 2010/06/25 C:\cygwin\bin\cyglcms-1.dll - os=4.0 img=1.0 sys=4.0
                  "cyglcms-1.dll" v0.0 ts=2010/6/25 5:50
    5k 2010/08/31 C:\cygwin\bin\cyglsa.dll - os=4.0 img=1.0 sys=4.0
                  "cyglsa.dll" v0.0 ts=2010/8/31 4:00
    9k 2010/08/31 C:\cygwin\bin\cyglsa64.dll - os=5.2 img=0.0 sys=5.2
   30k 2010/09/23 C:\cygwin\bin\cygltdl-7.dll - os=4.0 img=1.0 sys=4.0
                  "cygltdl-7.dll" v0.0 ts=2010/9/23 15:45
  125k 2010/04/09 C:\cygwin\bin\cyglzma-1.dll - os=4.0 img=1.0 sys=4.0
                  "cyglzma-1.dll" v0.0 ts=2010/4/9 11:54
  314k 2010/01/19 C:\cygwin\bin\cygMagick++-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygMagick++-1.dll" v0.0 ts=2010/1/19 7:53
 1801k 2010/01/19 C:\cygwin\bin\cygMagickCore-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygMagickCore-1.dll" v0.0 ts=2010/1/19 7:27
  789k 2010/01/19 C:\cygwin\bin\cygMagickWand-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygMagickWand-1.dll" v0.0 ts=2010/1/19 7:48
   25k 2010/01/02 C:\cygwin\bin\cygmenu-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygmenu-10.dll" v0.0 ts=2010/1/2 9:48
   21k 2009/03/01 C:\cygwin\bin\cygmenu-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygmenu-8.dll" v0.0 ts=2009/3/1 1:31
   25k 2009/11/20 C:\cygwin\bin\cygmenu-9.dll - os=4.0 img=1.0 sys=4.0
                  "cygmenu-9.dll" v0.0 ts=2009/11/20 14:13
   25k 2010/01/02 C:\cygwin\bin\cygmenuw-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygmenuw-10.dll" v0.0 ts=2010/1/2 12:30
  317k 2010/06/25 C:\cygwin\bin\cygming-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygming-1.dll" v0.0 ts=2010/6/25 6:25
   29k 2010/05/16 C:\cygwin\bin\cygmodman-0.dll - os=4.0 img=0.0 sys=4.0
                  "cygmodman-0.dll" v0.0 ts=2010/5/16 15:58
  211k 2009/06/06 C:\cygwin\bin\cygmp-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygmp-3.dll" v0.0 ts=2009/6/6 7:23
   63k 2010/01/02 C:\cygwin\bin\cygncurses++-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses++-10.dll" v0.0 ts=2010/1/2 10:00
   66k 2009/03/01 C:\cygwin\bin\cygncurses++-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses++-8.dll" v0.0 ts=2009/3/1 1:39
   63k 2009/11/20 C:\cygwin\bin\cygncurses++-9.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses++-9.dll" v0.0 ts=2009/11/20 14:25
   63k 2010/01/02 C:\cygwin\bin\cygncurses++w-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses++w-10.dll" v0.0 ts=2010/1/2 12:41
  195k 2010/01/02 C:\cygwin\bin\cygncurses-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses-10.dll" v0.0 ts=2010/1/2 9:45
  237k 2009/03/01 C:\cygwin\bin\cygncurses-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses-8.dll" v0.0 ts=2009/3/1 1:28
  198k 2009/11/20 C:\cygwin\bin\cygncurses-9.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses-9.dll" v0.0 ts=2009/11/20 14:10
  244k 2010/01/02 C:\cygwin\bin\cygncursesw-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygncursesw-10.dll" v0.0 ts=2010/1/2 12:28
   13k 2010/01/02 C:\cygwin\bin\cygpanel-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygpanel-10.dll" v0.0 ts=2010/1/2 9:47
   11k 2009/03/01 C:\cygwin\bin\cygpanel-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygpanel-8.dll" v0.0 ts=2009/3/1 1:30
   13k 2009/11/20 C:\cygwin\bin\cygpanel-9.dll - os=4.0 img=1.0 sys=4.0
                  "cygpanel-9.dll" v0.0 ts=2009/11/20 14:12
   13k 2010/01/02 C:\cygwin\bin\cygpanelw-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygpanelw-10.dll" v0.0 ts=2010/1/2 11:30
  235k 2010/06/28 C:\cygwin\bin\cygpango-1.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpango-1.0-0.dll" v0.0 ts=2010/6/28 1:37
   38k 2010/06/28 C:\cygwin\bin\cygpangocairo-1.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpangocairo-1.0-0.dll" v0.0 ts=2010/6/28 1:38
  131k 2010/06/28 C:\cygwin\bin\cygpangoft2-1.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpangoft2-1.0-0.dll" v0.0 ts=2010/6/28 1:38
   40k 2010/06/28 C:\cygwin\bin\cygpangox-1.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpangox-1.0-0.dll" v0.0 ts=2010/6/28 1:38
   26k 2010/06/28 C:\cygwin\bin\cygpangoxft-1.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpangoxft-1.0-0.dll" v0.0 ts=2010/6/28 1:38
  224k 2010/06/15 C:\cygwin\bin\cygpcre-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpcre-0.dll" v0.0 ts=2010/6/15 0:10
   10k 2010/06/15 C:\cygwin\bin\cygpcreposix-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpcreposix-0.dll" v0.0 ts=2010/6/15 0:11
 1627k 2010/08/29 C:\cygwin\bin\cygperl5_10.dll - os=4.0 img=1.0 sys=4.0
                  "cygperl5_10.dll" v0.0 ts=2010/8/28 14:17
   52k 2009/01/07 C:\cygwin\bin\cygpgtypes.dll - os=4.0 img=1.0 sys=4.0
                  "cygpgtypes.dll" v0.0 ts=2009/1/7 11:46
  377k 2010/08/02 C:\cygwin\bin\cygpixman-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpixman-1-0.dll" v0.0 ts=2010/8/2 19:47
  250k 2010/08/08 C:\cygwin\bin\cygpng12.dll - os=4.0 img=1.0 sys=4.0
                  "cygpng12.dll" v0.0 ts=2010/8/7 23:58
   22k 2002/06/09 C:\cygwin\bin\cygpopt-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpopt-0.dll" v0.0 ts=2002/6/9 1:45
  103k 2009/01/07 C:\cygwin\bin\cygpq.dll - os=4.0 img=1.0 sys=4.0
                  "cygpq.dll" v0.0 ts=2009/1/7 11:46
  106k 2010/05/16 C:\cygwin\bin\cygproxy-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygproxy-1.dll" v0.0 ts=2010/5/16 15:58
   15k 2010/05/12 C:\cygwin\bin\cygpyglib-2.0-python2.6-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpyglib-2.0-python2.6-0.dll" v0.0 ts=2010/5/12 5:14
  155k 2009/06/23 C:\cygwin\bin\cygreadline6.dll - os=4.0 img=1.0 sys=4.0
                  "cygreadline6.dll" v0.0 ts=2009/6/23 8:20
  164k 2011/01/26 C:\cygwin\bin\cygreadline7.dll - os=4.0 img=1.0 sys=4.0
                  "cygreadline7.dll" v0.0 ts=2011/1/25 22:25
   10k 2009/12/14 C:\cygwin\bin\cygsigsegv-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygsigsegv-2.dll" v0.0 ts=2009/12/14 7:56
   28k 2010/06/24 C:\cygwin\bin\cygSM-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygSM-6.dll" v0.0 ts=2010/6/24 16:39
 1613k 2010/12/01 C:\cygwin\bin\cygsqlite3-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygsqlite3-0.dll" v0.0 ts=2010/12/1 7:20
  121k 2010/06/01 C:\cygwin\bin\cygssh2-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygssh2-1.dll" v0.0 ts=2010/6/1 14:44
  263k 2011/02/08 C:\cygwin\bin\cygssl-0.9.8.dll - os=4.0 img=1.0 sys=4.0
                  "cygssl-0.9.8.dll" v0.0 ts=2011/2/8 13:32
   10k 2009/12/11 C:\cygwin\bin\cygssp-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygssp-0.dll" v0.0 ts=2009/12/7 19:38
  773k 2009/12/11 C:\cygwin\bin\cygstdc++-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygstdc++-6.dll" v0.0 ts=2009/12/7 20:07
   48k 2010/01/02 C:\cygwin\bin\cygtic-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygtic-10.dll" v0.0 ts=2010/1/2 9:45
   48k 2009/11/20 C:\cygwin\bin\cygtic-9.dll - os=4.0 img=1.0 sys=4.0
                  "cygtic-9.dll" v0.0 ts=2009/11/20 14:10
   48k 2010/01/02 C:\cygwin\bin\cygticw-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygticw-10.dll" v0.0 ts=2010/1/2 12:28
  347k 2009/12/23 C:\cygwin\bin\cygtiff-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygtiff-5.dll" v0.0 ts=2009/12/23 12:11
   11k 2009/12/23 C:\cygwin\bin\cygtiffxx-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygtiffxx-5.dll" v0.0 ts=2009/12/23 12:11
   16k 2010/06/24 C:\cygwin\bin\cyguuid-1.dll - os=4.0 img=1.0 sys=4.0
                  "cyguuid-1.dll" v0.0 ts=2010/6/24 15:19
   28k 2010/03/28 C:\cygwin\bin\cygwrap-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygwrap-0.dll" v0.0 ts=2010/3/28 5:02
 1040k 2010/02/10 C:\cygwin\bin\cygX11-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygX11-6.dll" v0.0 ts=2010/2/9 19:42
    8k 2010/02/10 C:\cygwin\bin\cygX11-xcb-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygX11-xcb-1.dll" v0.0 ts=2010/2/9 19:43
   11k 2010/08/03 C:\cygwin\bin\cygXau-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXau-6.dll" v0.0 ts=2010/8/2 20:32
  336k 2010/08/03 C:\cygwin\bin\cygXaw-7.dll - os=4.0 img=1.0 sys=4.0
                  "cygXaw-7.dll" v0.0 ts=2010/8/3 0:55
   77k 2010/04/28 C:\cygwin\bin\cygxcb-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygxcb-1.dll" v0.0 ts=2010/4/27 22:15
   53k 2010/04/28 C:\cygwin\bin\cygxcb-glx-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygxcb-glx-0.dll" v0.0 ts=2010/4/27 22:16
   25k 2010/04/28 C:\cygwin\bin\cygxcb-render-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygxcb-render-0.dll" v0.0 ts=2010/4/27 22:16
   11k 2009/09/03 C:\cygwin\bin\cygxcb-render-util-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygxcb-render-util-0.dll" v0.0 ts=2009/9/3 1:24
   12k 2010/08/03 C:\cygwin\bin\cygXcomposite-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXcomposite-1.dll" v0.0 ts=2010/8/3 0:27
   30k 2009/09/03 C:\cygwin\bin\cygXcursor-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXcursor-1.dll" v0.0 ts=2009/9/2 17:47
   11k 2010/08/03 C:\cygwin\bin\cygXdamage-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXdamage-1.dll" v0.0 ts=2010/8/3 0:25
   17k 2009/10/14 C:\cygwin\bin\cygXdmcp-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXdmcp-6.dll" v0.0 ts=2009/10/13 18:31
   52k 2010/08/03 C:\cygwin\bin\cygXext-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXext-6.dll" v0.0 ts=2010/8/3 0:18
   18k 2010/08/03 C:\cygwin\bin\cygXfixes-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygXfixes-3.dll" v0.0 ts=2010/8/3 0:19
   66k 2009/10/15 C:\cygwin\bin\cygXft-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygXft-2.dll" v0.0 ts=2009/10/14 16:33
   49k 2010/08/04 C:\cygwin\bin\cygXi-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXi-6.dll" v0.0 ts=2010/8/3 22:55
    8k 2009/10/14 C:\cygwin\bin\cygXinerama-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXinerama-1.dll" v0.0 ts=2009/10/14 3:39
  122k 2009/10/15 C:\cygwin\bin\cygxkbfile-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygxkbfile-1.dll" v0.0 ts=2009/10/14 1:57
 1128k 2010/05/12 C:\cygwin\bin\cygxml2-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygxml2-2.dll" v0.0 ts=2010/5/12 5:34
   75k 2009/10/14 C:\cygwin\bin\cygXmu-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXmu-6.dll" v0.0 ts=2009/10/14 3:29
   11k 2009/10/14 C:\cygwin\bin\cygXmuu-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXmuu-1.dll" v0.0 ts=2009/10/14 3:29
   53k 2009/10/14 C:\cygwin\bin\cygXpm-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygXpm-4.dll" v0.0 ts=2009/10/14 13:01
   25k 2009/03/20 C:\cygwin\bin\cygXrandr-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygXrandr-2.dll" v0.0 ts=2009/3/13 3:05
   32k 2010/08/03 C:\cygwin\bin\cygXrender-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXrender-1.dll" v0.0 ts=2010/8/3 0:48
  200k 2010/05/12 C:\cygwin\bin\cygxslt-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygxslt-1.dll" v0.0 ts=2010/5/12 5:59
  279k 2010/04/02 C:\cygwin\bin\cygXt-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXt-6.dll" v0.0 ts=2010/4/2 1:27
   64k 2009/03/02 C:\cygwin\bin\cygz.dll - os=4.0 img=1.0 sys=4.0
                  "cygz.dll" v0.0 ts=2009/3/1 20:33
 2586k 2010/08/31 C:\cygwin\bin\cygwin1.dll - os=4.0 img=1.0 sys=4.0
                  "cygwin1.dll" v0.0 ts=2010/8/31 3:58
    Cygwin DLL version info:
        DLL version: 1.7.7
        DLL epoch: 19
        DLL old termios: 5
        DLL malloc env: 28
        Cygwin conv: 181
        API major: 0
        API minor: 230
        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:
        Shared id: cygwin1S5

   93k 2010/06/15 C:\cygwin\bin\cygatk-1.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygatk-1.0-0.dll" v0.0 ts=2010/6/15 2:06
   15k 2009/12/27 C:\cygwin\bin\cygattr-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygattr-1.dll" v0.0 ts=2009/11/18 7:52
   95k 2010/06/24 C:\cygwin\bin\cygblkid-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygblkid-1.dll" v0.0 ts=2010/6/24 15:20
  269k 2010/05/17 C:\cygwin\bin\cygboost_python-mt-1_43.dll - os=4.0 img=1.0 sys=4.0
                  "cygboost_python-mt-1_43.dll" v0.0 ts=2010/5/16 21:58
   62k 2011/01/12 C:\cygwin\bin\cygbz2-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygbz2-1.dll" v0.0 ts=2011/1/11 22:12
  460k 2010/05/04 C:\cygwin\bin\cygcairo-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygcairo-2.dll" v0.0 ts=2010/5/4 12:21
   11k 2009/12/23 C:\cygwin\bin\cygcharset-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygcharset-1.dll" v0.0 ts=2009/12/23 8:25
    7k 2003/10/19 C:\cygwin\bin\cygcrypt-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygcrypt-0.dll" v0.0 ts=2003/10/19 3:57
 1147k 2011/02/08 C:\cygwin\bin\cygcrypto-0.9.8.dll - os=4.0 img=1.0 sys=4.0
                  "cygcrypto-0.9.8.dll" v0.0 ts=2011/2/8 13:32
  284k 2010/06/01 C:\cygwin\bin\cygcurl-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygcurl-4.dll" v0.0 ts=2010/6/1 15:07
  943k 2007/12/17 C:\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 8:12
 1296k 2007/12/17 C:\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 8:12
   46k 2009/01/07 C:\cygwin\bin\cygecpg.dll - os=4.0 img=1.0 sys=4.0
                  "cygecpg.dll" v0.0 ts=2009/1/7 11:46
  511k 2010/06/17 C:\cygwin\bin\cygedit-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygedit-0.dll" v0.0 ts=2010/6/17 7:42
  118k 2008/05/09 C:\cygwin\bin\cygexpat-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygexpat-1.dll" v0.0 ts=2008/5/9 0:03
   71k 2010/05/12 C:\cygwin\bin\cygexslt-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygexslt-0.dll" v0.0 ts=2010/5/12 5:59
   29k 2010/05/12 C:\cygwin\bin\cygfam-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygfam-0.dll" v0.0 ts=2010/5/12 6:26
   24k 2010/08/15 C:\cygwin\bin\cygffi-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygffi-4.dll" v0.0 ts=2010/8/14 19:06
  176k 2010/01/29 C:\cygwin\bin\cygfontconfig-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygfontconfig-1.dll" v0.0 ts=2010/1/28 17:12
   21k 2009/10/14 C:\cygwin\bin\cygfontenc-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygfontenc-1.dll" v0.0 ts=2009/10/13 21:04
   43k 2010/01/02 C:\cygwin\bin\cygform-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygform-10.dll" v0.0 ts=2010/1/2 9:49
   40k 2009/03/01 C:\cygwin\bin\cygform-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygform-8.dll" v0.0 ts=2009/3/1 1:32
   43k 2009/11/20 C:\cygwin\bin\cygform-9.dll - os=4.0 img=1.0 sys=4.0
                  "cygform-9.dll" v0.0 ts=2009/11/20 14:14
   47k 2010/01/02 C:\cygwin\bin\cygformw-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygformw-10.dll" v0.0 ts=2010/1/2 12:31
  860k 2008/03/23 C:\cygwin\bin\cygfpx-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygfpx-1.dll" v0.0 ts=2008/3/23 16:12
  492k 2010/03/03 C:\cygwin\bin\cygfreetype-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygfreetype-6.dll" v0.0 ts=2010/3/2 16:24
   29k 2010/05/12 C:\cygwin\bin\cyggamin-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggamin-1-0.dll" v0.0 ts=2010/5/12 6:26
   45k 2009/12/11 C:\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 19:30
  449k 2010/03/17 C:\cygwin\bin\cyggcrypt-11.dll - os=4.0 img=1.0 sys=4.0
                  "cyggcrypt-11.dll" v0.0 ts=2010/3/17 17:45
   19k 2009/02/26 C:\cygwin\bin\cyggdbm-4.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdbm-4.dll" v0.0 ts=2009/2/26 2:58
    8k 2009/02/26 C:\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 2:58
  546k 2010/06/15 C:\cygwin\bin\cyggdk-x11-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdk-x11-2.0-0.dll" v0.0 ts=2010/6/15 3:14
   94k 2010/06/15 C:\cygwin\bin\cyggdk_pixbuf-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdk_pixbuf-2.0-0.dll" v0.0 ts=2010/6/15 3:05
  645k 2010/08/15 C:\cygwin\bin\cyggfortran-3.dll - os=4.0 img=1.0 sys=4.0
                  "cyggfortran-3.dll" v0.0 ts=2010/8/14 19:43
   29k 2009/03/23 C:\cygwin\bin\cyggif-4.dll - os=4.0 img=1.0 sys=4.0
                  "cyggif-4.dll" v0.0 ts=2009/3/23 14:55
  552k 2010/06/15 C:\cygwin\bin\cyggio-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggio-2.0-0.dll" v0.0 ts=2010/6/14 23:25
   70k 2010/06/15 C:\cygwin\bin\cyggirepository-1.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggirepository-1.0-0.dll" v0.0 ts=2010/6/15 0:34
  357k 2010/10/08 C:\cygwin\bin\cygGL-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygGL-1.dll" v0.0 ts=2010/10/7 16:56
   76k 2009/03/26 C:\cygwin\bin\cygglade-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygglade-2.0-0.dll" v0.0 ts=2009/3/25 18:23
  764k 2010/06/15 C:\cygwin\bin\cygglib-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygglib-2.0-0.dll" v0.0 ts=2010/6/14 23:22
  141k 2009/03/30 C:\cygwin\bin\cygglitz-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygglitz-1.dll" v0.0 ts=2009/3/30 12:22
   21k 2009/03/30 C:\cygwin\bin\cygglitz-glx-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygglitz-glx-1.dll" v0.0 ts=2009/3/30 12:23
   14k 2010/06/15 C:\cygwin\bin\cyggmodule-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggmodule-2.0-0.dll" v0.0 ts=2010/6/14 23:23
  315k 2009/06/06 C:\cygwin\bin\cyggmp-3.dll - os=4.0 img=1.0 sys=4.0
                  "cyggmp-3.dll" v0.0 ts=2009/6/6 7:23
  233k 2010/06/15 C:\cygwin\bin\cyggobject-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggobject-2.0-0.dll" v0.0 ts=2010/6/14 23:23
   27k 2010/08/15 C:\cygwin\bin\cyggomp-1.dll - os=4.0 img=1.0 sys=4.0
                  "cyggomp-1.dll" v0.0 ts=2010/8/14 19:08
   16k 2010/03/17 C:\cygwin\bin\cyggpg-error-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggpg-error-0.dll" v0.0 ts=2010/3/17 17:21
  191k 2010/05/12 C:\cygwin\bin\cyggsf-1-114.dll - os=4.0 img=1.0 sys=4.0
                  "cyggsf-1-114.dll" v0.0 ts=2010/5/12 6:34
   17k 2010/06/15 C:\cygwin\bin\cyggthread-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggthread-2.0-0.dll" v0.0 ts=2010/6/14 23:23
 3659k 2010/06/15 C:\cygwin\bin\cyggtk-x11-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggtk-x11-2.0-0.dll" v0.0 ts=2010/6/15 3:18
   24k 2009/06/23 C:\cygwin\bin\cyghistory6.dll - os=4.0 img=1.0 sys=4.0
                  "cyghistory6.dll" v0.0 ts=2009/6/23 8:20
   25k 2011/01/26 C:\cygwin\bin\cyghistory7.dll - os=4.0 img=1.0 sys=4.0
                  "cyghistory7.dll" v0.0 ts=2011/1/25 22:25
   73k 2009/09/02 C:\cygwin\bin\cygICE-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygICE-6.dll" v0.0 ts=2009/9/2 17:39
  360k 2010/08/15 C:\cygwin\bin\cygicons-0.dll - os=4.0 img=1.4 sys=4.0
                  "cygicons-0.dll" v0.0 ts=2010/8/15 18:45
  982k 2009/12/23 C:\cygwin\bin\cygiconv-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygiconv-2.dll" v0.0 ts=2009/12/23 8:25
  193k 2010/05/16 C:\cygwin\bin\cygidn-11.dll - os=4.0 img=1.0 sys=4.0
                  "cygidn-11.dll" v0.0 ts=2010/5/16 9:37
   31k 2005/11/20 C:\cygwin\bin\cygintl-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygintl-3.dll" v0.0 ts=2005/11/19 21:04
   31k 2009/04/03 C:\cygwin\bin\cygintl-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygintl-8.dll" v0.0 ts=2009/4/2 21:15
  246k 2010/05/20 C:\cygwin\bin\cygjasper-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygjasper-1.dll" v0.0 ts=2010/5/20 1:04
   47k 2009/12/23 C:\cygwin\bin\cygjbig-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygjbig-2.dll" v0.0 ts=2009/12/23 11:59
  193k 2009/08/08 C:\cygwin\bin\cygjpeg-7.dll - os=4.0 img=1.0 sys=4.0
                  "cygjpeg-7.dll" v0.0 ts=2009/8/8 15:39
  173k 2010/06/25 C:\cygwin\bin\cyglcms-1.dll - os=4.0 img=1.0 sys=4.0
                  "cyglcms-1.dll" v0.0 ts=2010/6/25 5:50
    5k 2010/08/31 C:\cygwin\bin\cyglsa.dll - os=4.0 img=1.0 sys=4.0
                  "cyglsa.dll" v0.0 ts=2010/8/31 4:00
    9k 2010/08/31 C:\cygwin\bin\cyglsa64.dll - os=5.2 img=0.0 sys=5.2
   30k 2010/09/23 C:\cygwin\bin\cygltdl-7.dll - os=4.0 img=1.0 sys=4.0
                  "cygltdl-7.dll" v0.0 ts=2010/9/23 15:45
  125k 2010/04/09 C:\cygwin\bin\cyglzma-1.dll - os=4.0 img=1.0 sys=4.0
                  "cyglzma-1.dll" v0.0 ts=2010/4/9 11:54
  314k 2010/01/19 C:\cygwin\bin\cygMagick++-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygMagick++-1.dll" v0.0 ts=2010/1/19 7:53
 1801k 2010/01/19 C:\cygwin\bin\cygMagickCore-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygMagickCore-1.dll" v0.0 ts=2010/1/19 7:27
  789k 2010/01/19 C:\cygwin\bin\cygMagickWand-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygMagickWand-1.dll" v0.0 ts=2010/1/19 7:48
   25k 2010/01/02 C:\cygwin\bin\cygmenu-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygmenu-10.dll" v0.0 ts=2010/1/2 9:48
   21k 2009/03/01 C:\cygwin\bin\cygmenu-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygmenu-8.dll" v0.0 ts=2009/3/1 1:31
   25k 2009/11/20 C:\cygwin\bin\cygmenu-9.dll - os=4.0 img=1.0 sys=4.0
                  "cygmenu-9.dll" v0.0 ts=2009/11/20 14:13
   25k 2010/01/02 C:\cygwin\bin\cygmenuw-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygmenuw-10.dll" v0.0 ts=2010/1/2 12:30
  317k 2010/06/25 C:\cygwin\bin\cygming-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygming-1.dll" v0.0 ts=2010/6/25 6:25
   29k 2010/05/16 C:\cygwin\bin\cygmodman-0.dll - os=4.0 img=0.0 sys=4.0
                  "cygmodman-0.dll" v0.0 ts=2010/5/16 15:58
  211k 2009/06/06 C:\cygwin\bin\cygmp-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygmp-3.dll" v0.0 ts=2009/6/6 7:23
   63k 2010/01/02 C:\cygwin\bin\cygncurses++-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses++-10.dll" v0.0 ts=2010/1/2 10:00
   66k 2009/03/01 C:\cygwin\bin\cygncurses++-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses++-8.dll" v0.0 ts=2009/3/1 1:39
   63k 2009/11/20 C:\cygwin\bin\cygncurses++-9.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses++-9.dll" v0.0 ts=2009/11/20 14:25
   63k 2010/01/02 C:\cygwin\bin\cygncurses++w-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses++w-10.dll" v0.0 ts=2010/1/2 12:41
  195k 2010/01/02 C:\cygwin\bin\cygncurses-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses-10.dll" v0.0 ts=2010/1/2 9:45
  237k 2009/03/01 C:\cygwin\bin\cygncurses-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses-8.dll" v0.0 ts=2009/3/1 1:28
  198k 2009/11/20 C:\cygwin\bin\cygncurses-9.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses-9.dll" v0.0 ts=2009/11/20 14:10
  244k 2010/01/02 C:\cygwin\bin\cygncursesw-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygncursesw-10.dll" v0.0 ts=2010/1/2 12:28
   13k 2010/01/02 C:\cygwin\bin\cygpanel-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygpanel-10.dll" v0.0 ts=2010/1/2 9:47
   11k 2009/03/01 C:\cygwin\bin\cygpanel-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygpanel-8.dll" v0.0 ts=2009/3/1 1:30
   13k 2009/11/20 C:\cygwin\bin\cygpanel-9.dll - os=4.0 img=1.0 sys=4.0
                  "cygpanel-9.dll" v0.0 ts=2009/11/20 14:12
   13k 2010/01/02 C:\cygwin\bin\cygpanelw-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygpanelw-10.dll" v0.0 ts=2010/1/2 11:30
  235k 2010/06/28 C:\cygwin\bin\cygpango-1.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpango-1.0-0.dll" v0.0 ts=2010/6/28 1:37
   38k 2010/06/28 C:\cygwin\bin\cygpangocairo-1.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpangocairo-1.0-0.dll" v0.0 ts=2010/6/28 1:38
  131k 2010/06/28 C:\cygwin\bin\cygpangoft2-1.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpangoft2-1.0-0.dll" v0.0 ts=2010/6/28 1:38
   40k 2010/06/28 C:\cygwin\bin\cygpangox-1.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpangox-1.0-0.dll" v0.0 ts=2010/6/28 1:38
   26k 2010/06/28 C:\cygwin\bin\cygpangoxft-1.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpangoxft-1.0-0.dll" v0.0 ts=2010/6/28 1:38
  224k 2010/06/15 C:\cygwin\bin\cygpcre-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpcre-0.dll" v0.0 ts=2010/6/15 0:10
   10k 2010/06/15 C:\cygwin\bin\cygpcreposix-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpcreposix-0.dll" v0.0 ts=2010/6/15 0:11
 1627k 2010/08/29 C:\cygwin\bin\cygperl5_10.dll - os=4.0 img=1.0 sys=4.0
                  "cygperl5_10.dll" v0.0 ts=2010/8/28 14:17
   52k 2009/01/07 C:\cygwin\bin\cygpgtypes.dll - os=4.0 img=1.0 sys=4.0
                  "cygpgtypes.dll" v0.0 ts=2009/1/7 11:46
  377k 2010/08/02 C:\cygwin\bin\cygpixman-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpixman-1-0.dll" v0.0 ts=2010/8/2 19:47
  250k 2010/08/08 C:\cygwin\bin\cygpng12.dll - os=4.0 img=1.0 sys=4.0
                  "cygpng12.dll" v0.0 ts=2010/8/7 23:58
   22k 2002/06/09 C:\cygwin\bin\cygpopt-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpopt-0.dll" v0.0 ts=2002/6/9 1:45
  103k 2009/01/07 C:\cygwin\bin\cygpq.dll - os=4.0 img=1.0 sys=4.0
                  "cygpq.dll" v0.0 ts=2009/1/7 11:46
  106k 2010/05/16 C:\cygwin\bin\cygproxy-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygproxy-1.dll" v0.0 ts=2010/5/16 15:58
   15k 2010/05/12 C:\cygwin\bin\cygpyglib-2.0-python2.6-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpyglib-2.0-python2.6-0.dll" v0.0 ts=2010/5/12 5:14
  155k 2009/06/23 C:\cygwin\bin\cygreadline6.dll - os=4.0 img=1.0 sys=4.0
                  "cygreadline6.dll" v0.0 ts=2009/6/23 8:20
  164k 2011/01/26 C:\cygwin\bin\cygreadline7.dll - os=4.0 img=1.0 sys=4.0
                  "cygreadline7.dll" v0.0 ts=2011/1/25 22:25
   10k 2009/12/14 C:\cygwin\bin\cygsigsegv-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygsigsegv-2.dll" v0.0 ts=2009/12/14 7:56
   28k 2010/06/24 C:\cygwin\bin\cygSM-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygSM-6.dll" v0.0 ts=2010/6/24 16:39
 1613k 2010/12/01 C:\cygwin\bin\cygsqlite3-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygsqlite3-0.dll" v0.0 ts=2010/12/1 7:20
  121k 2010/06/01 C:\cygwin\bin\cygssh2-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygssh2-1.dll" v0.0 ts=2010/6/1 14:44
  263k 2011/02/08 C:\cygwin\bin\cygssl-0.9.8.dll - os=4.0 img=1.0 sys=4.0
                  "cygssl-0.9.8.dll" v0.0 ts=2011/2/8 13:32
   10k 2009/12/11 C:\cygwin\bin\cygssp-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygssp-0.dll" v0.0 ts=2009/12/7 19:38
  773k 2009/12/11 C:\cygwin\bin\cygstdc++-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygstdc++-6.dll" v0.0 ts=2009/12/7 20:07
   48k 2010/01/02 C:\cygwin\bin\cygtic-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygtic-10.dll" v0.0 ts=2010/1/2 9:45
   48k 2009/11/20 C:\cygwin\bin\cygtic-9.dll - os=4.0 img=1.0 sys=4.0
                  "cygtic-9.dll" v0.0 ts=2009/11/20 14:10
   48k 2010/01/02 C:\cygwin\bin\cygticw-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygticw-10.dll" v0.0 ts=2010/1/2 12:28
  347k 2009/12/23 C:\cygwin\bin\cygtiff-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygtiff-5.dll" v0.0 ts=2009/12/23 12:11
   11k 2009/12/23 C:\cygwin\bin\cygtiffxx-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygtiffxx-5.dll" v0.0 ts=2009/12/23 12:11
   16k 2010/06/24 C:\cygwin\bin\cyguuid-1.dll - os=4.0 img=1.0 sys=4.0
                  "cyguuid-1.dll" v0.0 ts=2010/6/24 15:19
   28k 2010/03/28 C:\cygwin\bin\cygwrap-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygwrap-0.dll" v0.0 ts=2010/3/28 5:02
 1040k 2010/02/10 C:\cygwin\bin\cygX11-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygX11-6.dll" v0.0 ts=2010/2/9 19:42
    8k 2010/02/10 C:\cygwin\bin\cygX11-xcb-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygX11-xcb-1.dll" v0.0 ts=2010/2/9 19:43
   11k 2010/08/03 C:\cygwin\bin\cygXau-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXau-6.dll" v0.0 ts=2010/8/2 20:32
  336k 2010/08/03 C:\cygwin\bin\cygXaw-7.dll - os=4.0 img=1.0 sys=4.0
                  "cygXaw-7.dll" v0.0 ts=2010/8/3 0:55
   77k 2010/04/28 C:\cygwin\bin\cygxcb-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygxcb-1.dll" v0.0 ts=2010/4/27 22:15
   53k 2010/04/28 C:\cygwin\bin\cygxcb-glx-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygxcb-glx-0.dll" v0.0 ts=2010/4/27 22:16
   25k 2010/04/28 C:\cygwin\bin\cygxcb-render-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygxcb-render-0.dll" v0.0 ts=2010/4/27 22:16
   11k 2009/09/03 C:\cygwin\bin\cygxcb-render-util-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygxcb-render-util-0.dll" v0.0 ts=2009/9/3 1:24
   12k 2010/08/03 C:\cygwin\bin\cygXcomposite-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXcomposite-1.dll" v0.0 ts=2010/8/3 0:27
   30k 2009/09/03 C:\cygwin\bin\cygXcursor-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXcursor-1.dll" v0.0 ts=2009/9/2 17:47
   11k 2010/08/03 C:\cygwin\bin\cygXdamage-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXdamage-1.dll" v0.0 ts=2010/8/3 0:25
   17k 2009/10/14 C:\cygwin\bin\cygXdmcp-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXdmcp-6.dll" v0.0 ts=2009/10/13 18:31
   52k 2010/08/03 C:\cygwin\bin\cygXext-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXext-6.dll" v0.0 ts=2010/8/3 0:18
   18k 2010/08/03 C:\cygwin\bin\cygXfixes-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygXfixes-3.dll" v0.0 ts=2010/8/3 0:19
   66k 2009/10/15 C:\cygwin\bin\cygXft-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygXft-2.dll" v0.0 ts=2009/10/14 16:33
   49k 2010/08/04 C:\cygwin\bin\cygXi-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXi-6.dll" v0.0 ts=2010/8/3 22:55
    8k 2009/10/14 C:\cygwin\bin\cygXinerama-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXinerama-1.dll" v0.0 ts=2009/10/14 3:39
  122k 2009/10/15 C:\cygwin\bin\cygxkbfile-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygxkbfile-1.dll" v0.0 ts=2009/10/14 1:57
 1128k 2010/05/12 C:\cygwin\bin\cygxml2-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygxml2-2.dll" v0.0 ts=2010/5/12 5:34
   75k 2009/10/14 C:\cygwin\bin\cygXmu-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXmu-6.dll" v0.0 ts=2009/10/14 3:29
   11k 2009/10/14 C:\cygwin\bin\cygXmuu-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXmuu-1.dll" v0.0 ts=2009/10/14 3:29
   53k 2009/10/14 C:\cygwin\bin\cygXpm-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygXpm-4.dll" v0.0 ts=2009/10/14 13:01
   25k 2009/03/20 C:\cygwin\bin\cygXrandr-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygXrandr-2.dll" v0.0 ts=2009/3/13 3:05
   32k 2010/08/03 C:\cygwin\bin\cygXrender-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXrender-1.dll" v0.0 ts=2010/8/3 0:48
  200k 2010/05/12 C:\cygwin\bin\cygxslt-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygxslt-1.dll" v0.0 ts=2010/5/12 5:59
  279k 2010/04/02 C:\cygwin\bin\cygXt-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXt-6.dll" v0.0 ts=2010/4/2 1:27
   64k 2009/03/02 C:\cygwin\bin\cygz.dll - os=4.0 img=1.0 sys=4.0
                  "cygz.dll" v0.0 ts=2009/3/1 20:33
 2586k 2010/08/31 C:\cygwin\bin\cygwin1.dll - os=4.0 img=1.0 sys=4.0
                  "cygwin1.dll" v0.0 ts=2010/8/31 3:58
    Cygwin DLL version info:
        DLL version: 1.7.7
        DLL epoch: 19
        DLL old termios: 5
        DLL malloc env: 28
        Cygwin conv: 181
        API major: 0
        API minor: 230
        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:
        Shared id: cygwin1S5


Service             : sshd
Display name        : CYGWIN sshd
Current State       : Running
Controls Accepted   : Stop
Command             : /usr/sbin/sshd -D
stdin path          : /dev/null
stdout path         : /var/log/sshd.log
stderr path         : /var/log/sshd.log
Environment         : CYGWIN="ntsec"
Process Type        : Own Process
Startup             : Automatic
Dependencies        : tcpip
Account             : .\cyg_server


Cygwin Package Information
Last downloaded files to: C:\Documents and Settings\Administrator\Desktop
Last downloaded files from: http://mirrors.kernel.org/sourceware/cygwin/

Package                  Version
_update-info-dir         00945-1
alternatives             1.3.30c-10
archivemail              0.7.2-1
asciidoc                 8.6.3-1
autoconf                 10-1
autoconf2.1              2.13-10
autoconf2.5              2.68-1
base-cygwin              3.0-1
base-files               3.9-3
base-passwd              3.1-2
bash                     4.1.9-3
binutils                 2.20.51-2
bison                    2.4.2-1
bzip2                    1.0.6-1
bzr                      2.2.1-1
chewmail                 1.2-1
codeville                0.8.0-3
colorgcc                 1.3.2-2
compositeproto           0.4.1-1
coreutils                8.10-1
cpio                     2.11-1
crypt                    1.1-1
csih                     0.9.3-1
curl                     7.20.1-1
cvs                      1.12.13-10
cvsps                    2.2b1-1
cygrunsrv                1.34-1
cygutils                 1.4.4-1
cygwin                   1.7.7-1
cygwin-doc               1.7-1
damageproto              1.2.0-1
dash                     0.5.6.1-2
diffutils                2.9-1
editrights               1.01-2
findutils                4.5.9-2
fixesproto               4.1.1-1
flex                     2.5.35-1
font-adobe-dpi75         1.0.1-1
font-alias               1.0.2-1
font-encodings           1.0.3-1
font-misc-misc           1.1.0-1
fontconfig               2.8.0-1
gamin                    0.1.10-11
gawk                     3.1.8-1
gcc                      3.4.4-999
gcc-core                 3.4.4-999
gcc-g++                  3.4.4-999
gcc-mingw-core           20050522-1
gcc-mingw-g++            20050522-1
getmail                  4.7.7-2
gettext                  0.17-11
git                      1.7.4-1
glproto                  1.4.11-1
gnome-icon-theme         2.30.3-1
grep                     2.6.3-1
grepmail                 5.3033-2
groff                    1.20.1-2
gzip                     1.3.12-2
hicolor-icon-theme       0.12-1
idle                     2.6.5-2
inputproto               2.0-1
ipc-utils                1.0-1
ipcalc                   0.41-1
kbproto                  1.0.4-1
less                     436-1
libatk1.0-devel          1.30.0-1
libatk1.0_0              1.30.0-1
libattr1                 2.4.43-1
libblkid1                2.17.2-1
libboost_python1.43      1.43.0-1
libbz2_1                 1.0.6-1
libcairo-devel           1.8.10-1
libcairo2                1.8.10-1
libcharset1              1.13.1-1
libcurl4                 7.20.1-1
libdb4.5                 4.5.20.2-2
libecpg5                 8.2.11-1
libedit0                 20090923-1
libexpat1                2.0.1-1
libexpat1-devel          2.0.1-1
libfam0                  0.1.10-11
libffi4                  4.3.4-3
libfontconfig-devel      2.8.0-1
libfontconfig1           2.8.0-1
libfontenc1              1.0.5-1
libfpx                   1.2.0.13-1
libfpx1                  1.2.0.13-1
libfreetype-devel        2.3.12-1
libfreetype6             2.3.12-1
libgamin1_0              0.1.10-11
libgcc1                  4.3.4-3
libgcrypt11              1.4.5-1
libgdbm4                 1.8.3-20
libgdk_pixbuf2.0-devel   2.20.1-1
libgdk_pixbuf2.0_0       2.20.1-1
libgfortran3             4.3.4-3
libgif4                  4.1.6-10
libgirepository1.0_0     0.6.14-1
libGL-devel              7.8.2-1
libGL1                   7.8.2-1
libglade2.0_0            2.6.4-1
libglib2.0-devel         2.24.1-1
libglib2.0_0             2.24.1-1
libglitz-devel           0.5.6-10
libglitz1                0.5.6-10
libgmp3                  4.3.1-3
libgomp1                 4.3.4-3
libgpg-error0            1.7-1
libgsf1_114              1.14.18-1
libgtk2.0-devel          2.20.1-1
libgtk2.0_0              2.20.1-1
libICE6                  1.0.6-1
libiconv                 1.13.1-1
libiconv2                1.13.1-1
libidn11                 1.18-1
libImageMagick1          6.4.0.6-2
libintl3                 0.14.5-1
libintl8                 0.17-11
libjasper1               1.900.1-11
libjbig2                 2.0-11
libjpeg7                 7-10
liblapack0               3.2.2-1
liblcms1                 1.19-2
libltdl7                 2.4-1
liblzma1                 4.999.9beta-11
libming1                 0.4.3-2
libncurses10             5.7-18
libncurses8              5.5-10
libncurses9              5.7-16
libncursesw10            5.7-18
libopenssl098            0.9.8r-1
libpango1.0-devel        1.28.1-1
libpango1.0_0            1.28.1-1
libpcre-devel            8.02-1
libpcre0                 8.02-1
libpgtypes2              8.2.11-1
libpixman1-devel         0.18.2-1
libpixman1_0             0.18.2-1
libpng12                 1.2.44-1
libpng12-devel           1.2.44-1
libpopt0                 1.6.4-4
libpq5                   8.2.11-1
libproxy-devel           0.4.0-1
libproxy1                0.4.0-1
libpthread-stubs         0.2-1
libreadline6             5.2.14-12
libreadline7             6.1.2-2
libsigsegv2              2.8-1
libSM6                   1.1.1-2
libsqlite3_0             3.7.3-1
libssh2_1                1.2.5-1
libssp0                  4.3.4-3
libstdc++6               4.3.4-3
libtiff5                 3.9.2-1
libuuid1                 2.17.2-1
libwrap0                 7.6-21
libX11-devel             1.3.3-1
libX11-xcb-devel         1.3.3-1
libX11-xcb1              1.3.3-1
libX11_6                 1.3.3-1
libXau-devel             1.0.6-1
libXau6                  1.0.6-1
libXaw7                  1.0.7-2
libxcb-devel             1.6-1
libxcb-glx-devel         1.6-1
libxcb-glx0              1.6-1
libxcb-render-devel      1.6-1
libxcb-render-util-devel 0.3.6-1
libxcb-render-util0      0.3.6-1
libxcb-render0           1.6-1
libxcb1                  1.6-1
libXcomposite-devel      0.4.2-1
libXcomposite1           0.4.2-1
libXcursor-devel         1.1.10-1
libXcursor1              1.1.10-1
libXdamage-devel         1.1.3-1
libXdamage1              1.1.3-1
libXdmcp-devel           1.0.3-1
libXdmcp6                1.0.3-1
libXext-devel            1.1.2-1
libXext6                 1.1.2-1
libXfixes-devel          4.0.5-1
libXfixes3               4.0.5-1
libXft-devel             2.1.14-1
libXft2                  2.1.14-1
libXi-devel              1.3.2-1
libXi6                   1.3.2-1
libXinerama-devel        1.1-1
libXinerama1             1.1-1
libxkbfile1              1.0.6-1
libxml2                  2.7.7-1
libXmu6                  1.0.5-1
libXmuu1                 1.0.5-1
libXpm4                  3.5.8-1
libXrandr-devel          1.3.0-10
libXrandr2               1.3.0-10
libXrender-devel         0.9.6-1
libXrender1              0.9.6-1
libxslt                  1.1.26-2
libXt6                   1.0.8-1
login                    1.10-10
luit                     1.0.5-1
m4                       1.4.15-1
make                     3.81-2
makedepend               1.0.2-1
man                      1.6f-1
mercurial                1.7-1
mingw-runtime            3.18-1
mkfontdir                1.0.5-1
mkfontscale              1.0.7-1
offlineimap              6.2.0.1-1
openssh                  5.7p1-1
openssl                  0.9.8r-1
openssl-devel            0.9.8r-1
patcher                  0.0.20040521-1
perl                     5.10.1-5
perl-Error               0.17016-1
perl-ExtUtils-Depends    0.302-1
perl-ExtUtils-PkgConfig  1.12-1
perl-Image-Magick        6.4.0.6-2
perl-libwin32            0.28-3
perl-Locale-gettext      1.05-11
perl-ming                0.4.3-2
perl-SGMLSpm             1.03ii-2
perl-Tk                  804.029-1
perl-Win32-GUI           1.06-3
perl-XML-Simple          2.18-10
perl_manpages            5.10.1-5
pkg-config               0.23b-10
planet                   2.0-2
postgresql               8.2.11-1
postgresql-client        8.2.11-1
python                   2.6.5-2
python-cairo             1.8.10-1
python-crypto            2.0.1-2
python-doc               2.6.5-2
python-feedparser        4.1-2
python-gamin             0.1.10-11
python-gdata             2.0.13-1
python-gobject2.0        2.20.0-2
python-gobject2.0-devel  2.20.0-2
python-gsf               1.14.18-1
python-gtk2.0            2.16.0-2
python-gtk2.0-demo       2.16.0-2
python-gtk2.0-devel      2.16.0-2
python-lcms              1.19-2
python-libproxy          0.4.0-1
python-libxml2           2.7.7-1
python-libxslt           1.1.26-2
python-ming              0.4.3-2
python-numpy             1.4.1-1
python-paramiko          1.7.6-2
python-pygtk             2.20.0-2
python-pyrex             0.9.9-2
python-test              2.6.5-2
python-tkinter           2.6.5-2
python-xdg               0.19-1
randrproto               1.3.1-1
rebase                   3.0.1-1
renderproto              0.11-1
rsnapshot                1.3.1-1
rsync                    3.0.7-1
run                      1.1.13-1
sed                      4.2.1-1
sendxmpp                 0.0.8+cvs20070910-1
shared-mime-info         0.71-1
spambayes                1.0.4-2
stgit                    0.15-2
tailor                   0.9.35+darcs20090615-1
tar                      1.25-1
tcltk                    20080420-1
terminfo                 5.7_20091114-14
terminfo0                5.5_20061104-12
texinfo                  4.13-3
tzcode                   2010j-1
unzip                    6.0-10
urlgrabber               3.1.0-2
util-linux               2.17.2-1
vim                      7.3.003-1
w32api                   3.15-1
wget                     1.12-1
which                    2.20-2
xauth                    1.0.4-1
xclock                   1.0.4-1
xcursor-themes           1.0.2-1
xextproto                7.1.1-1
xhost                    1.0.3-1
xineramaproto            1.2-1
xinit                    1.2.1-1
xkbcomp                  1.1.1-1
xkeyboard-config         1.9-1
xmodmap                  1.0.4-1
xorg-server              1.9.4-1
xproto                   7.0.17-1
xrdb                     1.0.6-1
xterm                    261-1
xz                       4.999.9beta-11
zip                      3.0-11
zlib                     1.2.5-1
zlib-devel               1.2.5-1
zlib0                    1.2.5-1
Use -h to see help about each section
bash-4.1$


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

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

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

* Re: 1.7.7:  after upgrade lost ability to login via ssh
  2011-02-09 22:56         ` Gerry Reno
@ 2011-02-09 23:43           ` Larry Hall (Cygwin)
  2011-02-10  0:21             ` Gerry Reno
  0 siblings, 1 reply; 15+ messages in thread
From: Larry Hall (Cygwin) @ 2011-02-09 23:43 UTC (permalink / raw)
  To: cygwin

On 2/9/2011 5:56 PM, Gerry Reno wrote:
> On 02/09/2011 05:35 PM, Larry Hall (Cygwin) wrote:
>> On 2/9/2011 5:07 PM, Gerry Reno wrote:
>>> On 02/09/2011 04:56 PM, Gerry Reno wrote:
>>>> On 02/08/2011 11:07 PM, Larry Hall (Cygwin) wrote:
>>>>
>>>>> On 2/8/2011 9:14 PM, Gerry Reno wrote:
>>>>>
>>>>>> Something else I just discovered after upgrading to 1.7.7 is that
>>>>>> I now
>>>>>> have lost the ability to login via ssh.
>>>>>>
>>>>>> I have OpenSSH installed and running sshd as a service.  Both
>>>>>> password
>>>>>> and keys accepted.  But now neither means will work.
>>>>>>
>>>>>>        # ssh -i keypair1.pem   Administrator@MACHINE_IP
>>>>>>        Last login: Fri Feb  4 17:19:26 2011 from LOCAL_CLIENT_MACHINE
>>>>>>        Connection to MACHINE_IP closed.
>>>>>>
>>>>>>
>>>>>> So I increased verbosity but did not see anything obvious.
>>>>>>
>>>>>>
>>>>>>        # ssh -v -i keypair1.pem   Administrator@MACHINE_IP
>>>>>>        OpenSSH_5.2p1, OpenSSL 0.9.8k-fips 25 Mar 2009
>>>>>>        debug1: Reading configuration data /etc/ssh/ssh_config
>>>>>>        debug1: Applying options for *
>>>>>>        debug1: Connecting to MACHINE_IP [MACHINE_IP] port 22.
>>>>>>        debug1: Connection established.
>>>>>>        debug1: permanently_set_uid: 0/0
>>>>>>        debug1: identity file keypair1.pem type -1
>>>>>>        debug1: Remote protocol version 2.0, remote software version
>>>>>> OpenSSH_5.8
>>>>>>
>>>>> Does reverting OpenSSH to 5.7 make a difference?
>>>>>
>>>>>
>>>> Downgraded to 5.7:
>>>>
>>>>       bash-4.1$ sshd --version
>>>>       sshd: unknown option -- -
>>>>       OpenSSH_5.7p1, OpenSSL 0.9.8r 8 Feb 2011
>>>>
>>>>
>>>>>  From client:
>>>>
>>>>       ssh -i keypair1.pem   Administrator@MACHINE_IP
>>>>       Last login: Wed Feb  9 12:54:08 2011 from LOCAL_CLIENT_IP
>>>>       Connection to MACHINE_IP closed.
>>>>
>>>>
>>>> Nope.  Still have the same problem.  Connection is made but immediately
>>>> closes.
>>>>
>>>>
>>>>
>>>
>>> I'm suspecting this is related to running Cygwin 1.7.
>>>
>>> In looking back though some notes I started having bash shell problems
>>> after upgrading from 1.5 to 1.7.
>>>
>>> Now on 1.7 if I try to run bash as a login shell it just gets "Bad
>>> address" or segfault errors and immediately exits the shell which also
>>> probably affects 'ssh'.
>>>
>>> I don't remember having any bash problems when I was running Cygwin 1.5
>>> on this machine.  My notes reflect screen copies showing bash able to
>>> run as a login shell without any problem.
>>
>> Yep, that's the way we all run by default (see cygwin.bat).  I agree
>> that if you're having problems getting bash to behave, it's best to focus
>> on that issue first.  Your ssh problems may just be another symptom of
>> the same thing.  How about sending cygcheck output
>> (<http://cygwin.com/problems.html>)?  There may be something helpful in
>> that which someone on the list might pick up on.
>>
>
> Ok, ran a new cygcheck and attached it.

OK, thanks.  What went wrong with the first installation?

I notice that this is using TS.  Can you try experiment with this machine
locally?  Or perhaps just try:

<http://cygwin.com/faq-nochunks.html#faq.setup.setup-fails-on-ts>

-- 
Larry

_____________________________________________________________________

A: Yes.
> Q: Are you sure?
>> A: Because it reverses the logical flow of conversation.
>>> Q: Why is top posting annoying in email?

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

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

* Re: 1.7.7:  after upgrade lost ability to login via ssh
  2011-02-09 23:43           ` Larry Hall (Cygwin)
@ 2011-02-10  0:21             ` Gerry Reno
  2011-02-10  1:05               ` Gerry Reno
  0 siblings, 1 reply; 15+ messages in thread
From: Gerry Reno @ 2011-02-10  0:21 UTC (permalink / raw)
  To: cygwin

On 02/09/2011 06:43 PM, Larry Hall (Cygwin) wrote:
> On 2/9/2011 5:56 PM, Gerry Reno wrote:
>> On 02/09/2011 05:35 PM, Larry Hall (Cygwin) wrote:
>>> On 2/9/2011 5:07 PM, Gerry Reno wrote:
>>>> On 02/09/2011 04:56 PM, Gerry Reno wrote:
>>>>> On 02/08/2011 11:07 PM, Larry Hall (Cygwin) wrote:
>>>>>
>>>>>> On 2/8/2011 9:14 PM, Gerry Reno wrote:
>>>>>>
>>>>>>> Something else I just discovered after upgrading to 1.7.7 is that
>>>>>>> I now
>>>>>>> have lost the ability to login via ssh.
>>>>>>>
>>>>>>> I have OpenSSH installed and running sshd as a service.  Both
>>>>>>> password
>>>>>>> and keys accepted.  But now neither means will work.
>>>>>>>
>>>>>>>        # ssh -i keypair1.pem   Administrator@MACHINE_IP
>>>>>>>        Last login: Fri Feb  4 17:19:26 2011 from
>>>>>>> LOCAL_CLIENT_MACHINE
>>>>>>>        Connection to MACHINE_IP closed.
>>>>>>>
>>>>>>>
>>>>>>> So I increased verbosity but did not see anything obvious.
>>>>>>>
>>>>>>>
>>>>>>>        # ssh -v -i keypair1.pem   Administrator@MACHINE_IP
>>>>>>>        OpenSSH_5.2p1, OpenSSL 0.9.8k-fips 25 Mar 2009
>>>>>>>        debug1: Reading configuration data /etc/ssh/ssh_config
>>>>>>>        debug1: Applying options for *
>>>>>>>        debug1: Connecting to MACHINE_IP [MACHINE_IP] port 22.
>>>>>>>        debug1: Connection established.
>>>>>>>        debug1: permanently_set_uid: 0/0
>>>>>>>        debug1: identity file keypair1.pem type -1
>>>>>>>        debug1: Remote protocol version 2.0, remote software version
>>>>>>> OpenSSH_5.8
>>>>>>>
>>>>>> Does reverting OpenSSH to 5.7 make a difference?
>>>>>>
>>>>>>
>>>>> Downgraded to 5.7:
>>>>>
>>>>>       bash-4.1$ sshd --version
>>>>>       sshd: unknown option -- -
>>>>>       OpenSSH_5.7p1, OpenSSL 0.9.8r 8 Feb 2011
>>>>>
>>>>>
>>>>>>  From client:
>>>>>
>>>>>       ssh -i keypair1.pem   Administrator@MACHINE_IP
>>>>>       Last login: Wed Feb  9 12:54:08 2011 from LOCAL_CLIENT_IP
>>>>>       Connection to MACHINE_IP closed.
>>>>>
>>>>>
>>>>> Nope.  Still have the same problem.  Connection is made but
>>>>> immediately
>>>>> closes.
>>>>>
>>>>>
>>>>>
>>>>
>>>> I'm suspecting this is related to running Cygwin 1.7.
>>>>
>>>> In looking back though some notes I started having bash shell problems
>>>> after upgrading from 1.5 to 1.7.
>>>>
>>>> Now on 1.7 if I try to run bash as a login shell it just gets "Bad
>>>> address" or segfault errors and immediately exits the shell which also
>>>> probably affects 'ssh'.
>>>>
>>>> I don't remember having any bash problems when I was running Cygwin
>>>> 1.5
>>>> on this machine.  My notes reflect screen copies showing bash able to
>>>> run as a login shell without any problem.
>>>
>>> Yep, that's the way we all run by default (see cygwin.bat).  I agree
>>> that if you're having problems getting bash to behave, it's best to
>>> focus
>>> on that issue first.  Your ssh problems may just be another symptom of
>>> the same thing.  How about sending cygcheck output
>>> (<http://cygwin.com/problems.html>)?  There may be something helpful in
>>> that which someone on the list might pick up on.
>>>
>>
>> Ok, ran a new cygcheck and attached it.
>
> OK, thanks.  What went wrong with the first installation?
>
> I notice that this is using TS.  Can you try experiment with this machine
> locally?  Or perhaps just try:
>
> <http://cygwin.com/faq-nochunks.html#faq.setup.setup-fails-on-ts>
>

I reduced DEP down to just Windows executables and dlls and then rebooted.

And it actually seemed to make the problem worse:

    bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
    bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
    bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
    bash: /etc/profile.d/lapack0.sh: Bad address
    bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
    bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
    bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
    bash: /etc/profile.d/lapack0.sh: Bad address
    bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
    bash: /etc/profile.d/lapack0.sh: Bad address
    bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
    bash: /etc/profile.d/lapack0.sh: Bad address
    bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
    bash: /etc/profile.d/lapack0.sh: Bad address
    bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
    bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
    bash: /etc/profile.d/lapack0.sh: Bad address
    bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
    bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
    bash: /etc/profile.d/lapack0.sh: Bad address
    bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
    bash: /etc/profile.d/lapack0.sh: Bad address
    bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
    bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
    bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
    bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
    bash: /etc/profile.d/lapack0.sh: Bad address
    bash-4.1$


So DEP in is play here but sort of inverse from what I'd expect.  There
was no switch now to totally disable it.  I guess they want you to
fiddle with the registry to turn it all the way off.


Regards,
Gerry




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

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

* Re: 1.7.7:  after upgrade lost ability to login via ssh
  2011-02-10  0:21             ` Gerry Reno
@ 2011-02-10  1:05               ` Gerry Reno
  2011-02-10  1:22                 ` Gerry Reno
  0 siblings, 1 reply; 15+ messages in thread
From: Gerry Reno @ 2011-02-10  1:05 UTC (permalink / raw)
  To: cygwin

On 02/09/2011 07:21 PM, Gerry Reno wrote:
> On 02/09/2011 06:43 PM, Larry Hall (Cygwin) wrote:
>   
>> On 2/9/2011 5:56 PM, Gerry Reno wrote:
>>     
>>> On 02/09/2011 05:35 PM, Larry Hall (Cygwin) wrote:
>>>       
>>>> On 2/9/2011 5:07 PM, Gerry Reno wrote:
>>>>         
>>>>> On 02/09/2011 04:56 PM, Gerry Reno wrote:
>>>>>           
>>>>>> On 02/08/2011 11:07 PM, Larry Hall (Cygwin) wrote:
>>>>>>
>>>>>>             
>>>>>>> On 2/8/2011 9:14 PM, Gerry Reno wrote:
>>>>>>>
>>>>>>>               
>>>>>>>> Something else I just discovered after upgrading to 1.7.7 is that
>>>>>>>> I now
>>>>>>>> have lost the ability to login via ssh.
>>>>>>>>
>>>>>>>> I have OpenSSH installed and running sshd as a service.  Both
>>>>>>>> password
>>>>>>>> and keys accepted.  But now neither means will work.
>>>>>>>>
>>>>>>>>        # ssh -i keypair1.pem   Administrator@MACHINE_IP
>>>>>>>>        Last login: Fri Feb  4 17:19:26 2011 from
>>>>>>>> LOCAL_CLIENT_MACHINE
>>>>>>>>        Connection to MACHINE_IP closed.
>>>>>>>>
>>>>>>>>
>>>>>>>> So I increased verbosity but did not see anything obvious.
>>>>>>>>
>>>>>>>>
>>>>>>>>        # ssh -v -i keypair1.pem   Administrator@MACHINE_IP
>>>>>>>>        OpenSSH_5.2p1, OpenSSL 0.9.8k-fips 25 Mar 2009
>>>>>>>>        debug1: Reading configuration data /etc/ssh/ssh_config
>>>>>>>>        debug1: Applying options for *
>>>>>>>>        debug1: Connecting to MACHINE_IP [MACHINE_IP] port 22.
>>>>>>>>        debug1: Connection established.
>>>>>>>>        debug1: permanently_set_uid: 0/0
>>>>>>>>        debug1: identity file keypair1.pem type -1
>>>>>>>>        debug1: Remote protocol version 2.0, remote software version
>>>>>>>> OpenSSH_5.8
>>>>>>>>
>>>>>>>>                 
>>>>>>> Does reverting OpenSSH to 5.7 make a difference?
>>>>>>>
>>>>>>>
>>>>>>>               
>>>>>> Downgraded to 5.7:
>>>>>>
>>>>>>       bash-4.1$ sshd --version
>>>>>>       sshd: unknown option -- -
>>>>>>       OpenSSH_5.7p1, OpenSSL 0.9.8r 8 Feb 2011
>>>>>>
>>>>>>
>>>>>>             
>>>>>>>  From client:
>>>>>>>               
>>>>>>       ssh -i keypair1.pem   Administrator@MACHINE_IP
>>>>>>       Last login: Wed Feb  9 12:54:08 2011 from LOCAL_CLIENT_IP
>>>>>>       Connection to MACHINE_IP closed.
>>>>>>
>>>>>>
>>>>>> Nope.  Still have the same problem.  Connection is made but
>>>>>> immediately
>>>>>> closes.
>>>>>>
>>>>>>
>>>>>>
>>>>>>             
>>>>> I'm suspecting this is related to running Cygwin 1.7.
>>>>>
>>>>> In looking back though some notes I started having bash shell problems
>>>>> after upgrading from 1.5 to 1.7.
>>>>>
>>>>> Now on 1.7 if I try to run bash as a login shell it just gets "Bad
>>>>> address" or segfault errors and immediately exits the shell which also
>>>>> probably affects 'ssh'.
>>>>>
>>>>> I don't remember having any bash problems when I was running Cygwin
>>>>> 1.5
>>>>> on this machine.  My notes reflect screen copies showing bash able to
>>>>> run as a login shell without any problem.
>>>>>           
>>>> Yep, that's the way we all run by default (see cygwin.bat).  I agree
>>>> that if you're having problems getting bash to behave, it's best to
>>>> focus
>>>> on that issue first.  Your ssh problems may just be another symptom of
>>>> the same thing.  How about sending cygcheck output
>>>> (<http://cygwin.com/problems.html>)?  There may be something helpful in
>>>> that which someone on the list might pick up on.
>>>>
>>>>         
>>> Ok, ran a new cygcheck and attached it.
>>>       
>> OK, thanks.  What went wrong with the first installation?
>>
>> I notice that this is using TS.  Can you try experiment with this machine
>> locally?  Or perhaps just try:
>>
>> <http://cygwin.com/faq-nochunks.html#faq.setup.setup-fails-on-ts>
>>
>>     
> I reduced DEP down to just Windows executables and dlls and then rebooted.
>
> And it actually seemed to make the problem worse:
>
>     bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
>     bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
>     bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
>     bash: /etc/profile.d/lapack0.sh: Bad address
>     bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
>     bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
>     bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
>     bash: /etc/profile.d/lapack0.sh: Bad address
>     bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
>     bash: /etc/profile.d/lapack0.sh: Bad address
>     bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
>     bash: /etc/profile.d/lapack0.sh: Bad address
>     bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
>     bash: /etc/profile.d/lapack0.sh: Bad address
>     bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
>     bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
>     bash: /etc/profile.d/lapack0.sh: Bad address
>     bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
>     bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
>     bash: /etc/profile.d/lapack0.sh: Bad address
>     bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
>     bash: /etc/profile.d/lapack0.sh: Bad address
>     bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
>     bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
>     bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
>     bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
>     bash: /etc/profile.d/lapack0.sh: Bad address
>     bash-4.1$
>
>
> So DEP in is play here but sort of inverse from what I'd expect.  There
> was no switch now to totally disable it.  I guess they want you to
> fiddle with the registry to turn it all the way off.
>
>
>   
I tried reinstalling bash and coreutils which installed ok but both
their postinstall scripts have an abnormal exit 128 which is exactly
what I was seeing previously.


Regards,
Gerry


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

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

* Re: 1.7.7:  after upgrade lost ability to login via ssh
  2011-02-10  1:05               ` Gerry Reno
@ 2011-02-10  1:22                 ` Gerry Reno
  2011-02-10  1:49                   ` Gerry Reno
  0 siblings, 1 reply; 15+ messages in thread
From: Gerry Reno @ 2011-02-10  1:22 UTC (permalink / raw)
  To: cygwin

On 02/09/2011 08:04 PM, Gerry Reno wrote:
> On 02/09/2011 07:21 PM, Gerry Reno wrote:
>   
>> On 02/09/2011 06:43 PM, Larry Hall (Cygwin) wrote:
>>   
>>     
>>> On 2/9/2011 5:56 PM, Gerry Reno wrote:
>>>     
>>>       
>>>> On 02/09/2011 05:35 PM, Larry Hall (Cygwin) wrote:
>>>>       
>>>>         
>>>>> On 2/9/2011 5:07 PM, Gerry Reno wrote:
>>>>>         
>>>>>           
>>>>>> On 02/09/2011 04:56 PM, Gerry Reno wrote:
>>>>>>           
>>>>>>             
>>>>>>> On 02/08/2011 11:07 PM, Larry Hall (Cygwin) wrote:
>>>>>>>
>>>>>>>             
>>>>>>>               
>>>>>>>> On 2/8/2011 9:14 PM, Gerry Reno wrote:
>>>>>>>>
>>>>>>>>               
>>>>>>>>                 
>>>>>>>>> Something else I just discovered after upgrading to 1.7.7 is that
>>>>>>>>> I now
>>>>>>>>> have lost the ability to login via ssh.
>>>>>>>>>
>>>>>>>>> I have OpenSSH installed and running sshd as a service.  Both
>>>>>>>>> password
>>>>>>>>> and keys accepted.  But now neither means will work.
>>>>>>>>>
>>>>>>>>>        # ssh -i keypair1.pem   Administrator@MACHINE_IP
>>>>>>>>>        Last login: Fri Feb  4 17:19:26 2011 from
>>>>>>>>> LOCAL_CLIENT_MACHINE
>>>>>>>>>        Connection to MACHINE_IP closed.
>>>>>>>>>
>>>>>>>>>
>>>>>>>>> So I increased verbosity but did not see anything obvious.
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>        # ssh -v -i keypair1.pem   Administrator@MACHINE_IP
>>>>>>>>>        OpenSSH_5.2p1, OpenSSL 0.9.8k-fips 25 Mar 2009
>>>>>>>>>        debug1: Reading configuration data /etc/ssh/ssh_config
>>>>>>>>>        debug1: Applying options for *
>>>>>>>>>        debug1: Connecting to MACHINE_IP [MACHINE_IP] port 22.
>>>>>>>>>        debug1: Connection established.
>>>>>>>>>        debug1: permanently_set_uid: 0/0
>>>>>>>>>        debug1: identity file keypair1.pem type -1
>>>>>>>>>        debug1: Remote protocol version 2.0, remote software version
>>>>>>>>> OpenSSH_5.8
>>>>>>>>>
>>>>>>>>>                 
>>>>>>>>>                   
>>>>>>>> Does reverting OpenSSH to 5.7 make a difference?
>>>>>>>>
>>>>>>>>
>>>>>>>>               
>>>>>>>>                 
>>>>>>> Downgraded to 5.7:
>>>>>>>
>>>>>>>       bash-4.1$ sshd --version
>>>>>>>       sshd: unknown option -- -
>>>>>>>       OpenSSH_5.7p1, OpenSSL 0.9.8r 8 Feb 2011
>>>>>>>
>>>>>>>
>>>>>>>             
>>>>>>>               
>>>>>>>>  From client:
>>>>>>>>               
>>>>>>>>                 
>>>>>>>       ssh -i keypair1.pem   Administrator@MACHINE_IP
>>>>>>>       Last login: Wed Feb  9 12:54:08 2011 from LOCAL_CLIENT_IP
>>>>>>>       Connection to MACHINE_IP closed.
>>>>>>>
>>>>>>>
>>>>>>> Nope.  Still have the same problem.  Connection is made but
>>>>>>> immediately
>>>>>>> closes.
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>             
>>>>>>>               
>>>>>> I'm suspecting this is related to running Cygwin 1.7.
>>>>>>
>>>>>> In looking back though some notes I started having bash shell problems
>>>>>> after upgrading from 1.5 to 1.7.
>>>>>>
>>>>>> Now on 1.7 if I try to run bash as a login shell it just gets "Bad
>>>>>> address" or segfault errors and immediately exits the shell which also
>>>>>> probably affects 'ssh'.
>>>>>>
>>>>>> I don't remember having any bash problems when I was running Cygwin
>>>>>> 1.5
>>>>>> on this machine.  My notes reflect screen copies showing bash able to
>>>>>> run as a login shell without any problem.
>>>>>>           
>>>>>>             
>>>>> Yep, that's the way we all run by default (see cygwin.bat).  I agree
>>>>> that if you're having problems getting bash to behave, it's best to
>>>>> focus
>>>>> on that issue first.  Your ssh problems may just be another symptom of
>>>>> the same thing.  How about sending cygcheck output
>>>>> (<http://cygwin.com/problems.html>)?  There may be something helpful in
>>>>> that which someone on the list might pick up on.
>>>>>
>>>>>         
>>>>>           
>>>> Ok, ran a new cygcheck and attached it.
>>>>       
>>>>         
>>> OK, thanks.  What went wrong with the first installation?
>>>
>>> I notice that this is using TS.  Can you try experiment with this machine
>>> locally?  Or perhaps just try:
>>>
>>> <http://cygwin.com/faq-nochunks.html#faq.setup.setup-fails-on-ts>
>>>
>>>     
>>>       
>> I reduced DEP down to just Windows executables and dlls and then rebooted.
>>
>> And it actually seemed to make the problem worse:
>>
>>     bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
>>     bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
>>     bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
>>     bash: /etc/profile.d/lapack0.sh: Bad address
>>     bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
>>     bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
>>     bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
>>     bash: /etc/profile.d/lapack0.sh: Bad address
>>     bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
>>     bash: /etc/profile.d/lapack0.sh: Bad address
>>     bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
>>     bash: /etc/profile.d/lapack0.sh: Bad address
>>     bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
>>     bash: /etc/profile.d/lapack0.sh: Bad address
>>     bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
>>     bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
>>     bash: /etc/profile.d/lapack0.sh: Bad address
>>     bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
>>     bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
>>     bash: /etc/profile.d/lapack0.sh: Bad address
>>     bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
>>     bash: /etc/profile.d/lapack0.sh: Bad address
>>     bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
>>     bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
>>     bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
>>     bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
>>     bash: /etc/profile.d/lapack0.sh: Bad address
>>     bash-4.1$
>>
>>
>> So DEP in is play here but sort of inverse from what I'd expect.  There
>> was no switch now to totally disable it.  I guess they want you to
>> fiddle with the registry to turn it all the way off.
>>
>>
>>   
>>     
> I tried reinstalling bash and coreutils which installed ok but both
> their postinstall scripts have an abnormal exit 128 which is exactly
> what I was seeing previously.
>
>
>   
So I try running lines from these postinstall scripts manually.

In /etc/postinstall/bash.sh this code snippet kills everything:

    bash-4.1$ result=0
    bash-4.1$ test $result = 0
          2 [main] bash 2484 sig_send: wait for sig_complete event
    failed, signal -3
    4, rc -1, Win32 error 6
    <SHELL IS DEAD>

From MSDN:

    ERROR_INVALID_HANDLE    The handle is invalid.
    6 (0x6)


So what is this?

    Bad compilation?
    Stack corruption?



Regards,
Gerry

   




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

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

* Re: 1.7.7:  after upgrade lost ability to login via ssh
  2011-02-10  1:22                 ` Gerry Reno
@ 2011-02-10  1:49                   ` Gerry Reno
  0 siblings, 0 replies; 15+ messages in thread
From: Gerry Reno @ 2011-02-10  1:49 UTC (permalink / raw)
  To: cygwin

On 02/09/2011 08:21 PM, Gerry Reno wrote:
> On 02/09/2011 08:04 PM, Gerry Reno wrote:
>   
>> On 02/09/2011 07:21 PM, Gerry Reno wrote:
>>   
>>     
>>> On 02/09/2011 06:43 PM, Larry Hall (Cygwin) wrote:
>>>   
>>>     
>>>       
>>>> On 2/9/2011 5:56 PM, Gerry Reno wrote:
>>>>     
>>>>       
>>>>         
>>>>> On 02/09/2011 05:35 PM, Larry Hall (Cygwin) wrote:
>>>>>       
>>>>>         
>>>>>           
>>>>>> On 2/9/2011 5:07 PM, Gerry Reno wrote:
>>>>>>         
>>>>>>           
>>>>>>             
>>>>>>> On 02/09/2011 04:56 PM, Gerry Reno wrote:
>>>>>>>           
>>>>>>>             
>>>>>>>               
>>>>>>>> On 02/08/2011 11:07 PM, Larry Hall (Cygwin) wrote:
>>>>>>>>
>>>>>>>>             
>>>>>>>>               
>>>>>>>>                 
>>>>>>>>> On 2/8/2011 9:14 PM, Gerry Reno wrote:
>>>>>>>>>
>>>>>>>>>               
>>>>>>>>>                 
>>>>>>>>>                   
>>>>>>>>>> Something else I just discovered after upgrading to 1.7.7 is that
>>>>>>>>>> I now
>>>>>>>>>> have lost the ability to login via ssh.
>>>>>>>>>>
>>>>>>>>>> I have OpenSSH installed and running sshd as a service.  Both
>>>>>>>>>> password
>>>>>>>>>> and keys accepted.  But now neither means will work.
>>>>>>>>>>
>>>>>>>>>>        # ssh -i keypair1.pem   Administrator@MACHINE_IP
>>>>>>>>>>        Last login: Fri Feb  4 17:19:26 2011 from
>>>>>>>>>> LOCAL_CLIENT_MACHINE
>>>>>>>>>>        Connection to MACHINE_IP closed.
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> So I increased verbosity but did not see anything obvious.
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>        # ssh -v -i keypair1.pem   Administrator@MACHINE_IP
>>>>>>>>>>        OpenSSH_5.2p1, OpenSSL 0.9.8k-fips 25 Mar 2009
>>>>>>>>>>        debug1: Reading configuration data /etc/ssh/ssh_config
>>>>>>>>>>        debug1: Applying options for *
>>>>>>>>>>        debug1: Connecting to MACHINE_IP [MACHINE_IP] port 22.
>>>>>>>>>>        debug1: Connection established.
>>>>>>>>>>        debug1: permanently_set_uid: 0/0
>>>>>>>>>>        debug1: identity file keypair1.pem type -1
>>>>>>>>>>        debug1: Remote protocol version 2.0, remote software version
>>>>>>>>>> OpenSSH_5.8
>>>>>>>>>>
>>>>>>>>>>                 
>>>>>>>>>>                   
>>>>>>>>>>                     
>>>>>>>>> Does reverting OpenSSH to 5.7 make a difference?
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>               
>>>>>>>>>                 
>>>>>>>>>                   
>>>>>>>> Downgraded to 5.7:
>>>>>>>>
>>>>>>>>       bash-4.1$ sshd --version
>>>>>>>>       sshd: unknown option -- -
>>>>>>>>       OpenSSH_5.7p1, OpenSSL 0.9.8r 8 Feb 2011
>>>>>>>>
>>>>>>>>
>>>>>>>>             
>>>>>>>>               
>>>>>>>>                 
>>>>>>>>>  From client:
>>>>>>>>>               
>>>>>>>>>                 
>>>>>>>>>                   
>>>>>>>>       ssh -i keypair1.pem   Administrator@MACHINE_IP
>>>>>>>>       Last login: Wed Feb  9 12:54:08 2011 from LOCAL_CLIENT_IP
>>>>>>>>       Connection to MACHINE_IP closed.
>>>>>>>>
>>>>>>>>
>>>>>>>> Nope.  Still have the same problem.  Connection is made but
>>>>>>>> immediately
>>>>>>>> closes.
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>>             
>>>>>>>>               
>>>>>>>>                 
>>>>>>> I'm suspecting this is related to running Cygwin 1.7.
>>>>>>>
>>>>>>> In looking back though some notes I started having bash shell problems
>>>>>>> after upgrading from 1.5 to 1.7.
>>>>>>>
>>>>>>> Now on 1.7 if I try to run bash as a login shell it just gets "Bad
>>>>>>> address" or segfault errors and immediately exits the shell which also
>>>>>>> probably affects 'ssh'.
>>>>>>>
>>>>>>> I don't remember having any bash problems when I was running Cygwin
>>>>>>> 1.5
>>>>>>> on this machine.  My notes reflect screen copies showing bash able to
>>>>>>> run as a login shell without any problem.
>>>>>>>           
>>>>>>>             
>>>>>>>               
>>>>>> Yep, that's the way we all run by default (see cygwin.bat).  I agree
>>>>>> that if you're having problems getting bash to behave, it's best to
>>>>>> focus
>>>>>> on that issue first.  Your ssh problems may just be another symptom of
>>>>>> the same thing.  How about sending cygcheck output
>>>>>> (<http://cygwin.com/problems.html>)?  There may be something helpful in
>>>>>> that which someone on the list might pick up on.
>>>>>>
>>>>>>         
>>>>>>           
>>>>>>             
>>>>> Ok, ran a new cygcheck and attached it.
>>>>>       
>>>>>         
>>>>>           
>>>> OK, thanks.  What went wrong with the first installation?
>>>>
>>>> I notice that this is using TS.  Can you try experiment with this machine
>>>> locally?  Or perhaps just try:
>>>>
>>>> <http://cygwin.com/faq-nochunks.html#faq.setup.setup-fails-on-ts>
>>>>
>>>>     
>>>>       
>>>>         
>>> I reduced DEP down to just Windows executables and dlls and then rebooted.
>>>
>>> And it actually seemed to make the problem worse:
>>>
>>>     bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
>>>     bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
>>>     bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
>>>     bash: /etc/profile.d/lapack0.sh: Bad address
>>>     bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
>>>     bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
>>>     bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
>>>     bash: /etc/profile.d/lapack0.sh: Bad address
>>>     bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
>>>     bash: /etc/profile.d/lapack0.sh: Bad address
>>>     bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
>>>     bash: /etc/profile.d/lapack0.sh: Bad address
>>>     bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
>>>     bash: /etc/profile.d/lapack0.sh: Bad address
>>>     bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
>>>     bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
>>>     bash: /etc/profile.d/lapack0.sh: Bad address
>>>     bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
>>>     bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
>>>     bash: /etc/profile.d/lapack0.sh: Bad address
>>>     bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
>>>     bash: /etc/profile.d/lapack0.sh: Bad address
>>>     bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
>>>     bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
>>>     bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
>>>     bash-4.1$ (for p in $(ls /etc/profile.d/*.sh);do . $p;done)
>>>     bash: /etc/profile.d/lapack0.sh: Bad address
>>>     bash-4.1$
>>>
>>>
>>> So DEP in is play here but sort of inverse from what I'd expect.  There
>>> was no switch now to totally disable it.  I guess they want you to
>>> fiddle with the registry to turn it all the way off.
>>>
>>>
>>>   
>>>     
>>>       
>> I tried reinstalling bash and coreutils which installed ok but both
>> their postinstall scripts have an abnormal exit 128 which is exactly
>> what I was seeing previously.
>>
>>
>>   
>>     
> So I try running lines from these postinstall scripts manually.
>
> In /etc/postinstall/bash.sh this code snippet kills everything:
>
>     bash-4.1$ result=0
>     bash-4.1$ test $result = 0
>           2 [main] bash 2484 sig_send: wait for sig_complete event
>     failed, signal -3
>     4, rc -1, Win32 error 6
>     <SHELL IS DEAD>
>
> >From MSDN:
>
>     ERROR_INVALID_HANDLE    The handle is invalid.
>     6 (0x6)
>
>
> So what is this?
>
>     Bad compilation?
>     Stack corruption?
>
>
>
>   
Ignore the last comment.  Cannot run test from command line.


What I did find is that the postinstalls succeed when I run them from a
Cygwin shell as Administrator:

    bash-4.1$ bash.exe -norc -noprofile /etc/postinstall/coreutils.sh
    bash-4.1$ echo $?
    0
    bash-4.1$ bash.exe --norc --noprofile /etc/postinstall/bash.sh
    bash-4.1$ echo $?
    0

So why the exit code of 128 when setup runs these postinstalls?


Regards,
Gerry





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

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

end of thread, other threads:[~2011-02-10  1:49 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-02-09  2:14 1.7.7: after upgrade lost ability to login via ssh Gerry Reno
2011-02-09  4:08 ` Larry Hall (Cygwin)
2011-02-09 21:56   ` Gerry Reno
2011-02-09 22:07     ` Gerry Reno
2011-02-09 22:27       ` Gerry Reno
2011-02-09 22:35       ` Larry Hall (Cygwin)
2011-02-09 22:56         ` Gerry Reno
2011-02-09 23:43           ` Larry Hall (Cygwin)
2011-02-10  0:21             ` Gerry Reno
2011-02-10  1:05               ` Gerry Reno
2011-02-10  1:22                 ` Gerry Reno
2011-02-10  1:49                   ` Gerry Reno
2011-02-09 10:54 ` Corinna Vinschen
2011-02-09 16:34   ` Gerry Reno
2011-02-09 16:54     ` 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).