public inbox for cygwin@cygwin.com
 help / color / mirror / Atom feed
* Re: inetutils 1.5 / ftpd problem: 426 Data connection: No buffer space available.
@ 2008-04-30  7:38 antony baxter
  2008-04-30  8:01 ` Charles Wilson
  0 siblings, 1 reply; 20+ messages in thread
From: antony baxter @ 2008-04-30  7:38 UTC (permalink / raw)
  To: cygwin

> Charles,
>
>> Unless somebody squawks loudly and soon, I'm going to release
>> inetutils-1.5-4 using 4k buffers for ftpd send_data().
>> Charles,
>
>> Unless somebody squawks loudly and soon, I'm going to release
>> inetutils-1.5-4 using 4k buffers for ftpd send_data().
>
> Squawk!
>
> Unfortunately, with XP SP2, Cygwin 1.5 as the server machine, I get
> pretty much the same symptoms with each of the above ftpds serving up
> a 350mb file:
>
> 1. In all cases, the ftpd process' memory usage increases to ~350mb,
> 2. As the buffer value decreases, the process' cpu usage increases
> (ftpd-1k.exe used about 75% of the cpu vs. about 10% for ftpd-8k.exe),
> 3. Performance jumped around (ftpd-1k transferred the file in
> 90seconds, ftpd-4k in 166 seconds, ftp-8k in 114 seconds on a wired
> network)

Quick addendum: I copied over in.ftpd.exe from another Cygwin
installation running inetutils 1.3.2 and symlinked it to ftpd on my
server; using that to serve the same file, memory usage sticks at
3500kb, cpu usage never rises about 5%, and the file was delivered in
194 seconds.

Ant.

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

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

* Re: inetutils 1.5 / ftpd problem: 426 Data connection: No buffer  space available.
  2008-04-30  7:38 inetutils 1.5 / ftpd problem: 426 Data connection: No buffer space available antony baxter
@ 2008-04-30  8:01 ` Charles Wilson
  2008-04-30 10:59   ` Corinna Vinschen
  0 siblings, 1 reply; 20+ messages in thread
From: Charles Wilson @ 2008-04-30  8:01 UTC (permalink / raw)
  To: cygwin

antony baxter wrote:

>> Unfortunately, with XP SP2, Cygwin 1.5 as the server machine, I get
>> pretty much the same symptoms with each of the above ftpds serving up
>> a 350mb file:
>>
>> 1. In all cases, the ftpd process' memory usage increases to ~350mb,
>> 2. As the buffer value decreases, the process' cpu usage increases
>> (ftpd-1k.exe used about 75% of the cpu vs. about 10% for ftpd-8k.exe),
>> 3. Performance jumped around (ftpd-1k transferred the file in
>> 90seconds, ftpd-4k in 166 seconds, ftp-8k in 114 seconds on a wired
>> network)
> 
> Quick addendum: I copied over in.ftpd.exe from another Cygwin
> installation running inetutils 1.3.2 and symlinked it to ftpd on my
> server; using that to serve the same file, memory usage sticks at
> 3500kb, cpu usage never rises about 5%, and the file was delivered in
> 194 seconds.

Well, one of the differences between ftpd-1.3.2 and ftpd-1.5 is that the 
newer version uses mmap on the (local) file.  ftpd.c is the /only/ 
source file in inetutils that uses mmap.

So, I recompiled with HAVE_MMAP turned off (but still using 4k chunks). 
Give this a try:

http://cygwin.cwilson.fastmail.fm/ITP/ftpd-no-mmap-4k.exe.bz2

I get behavior here which is very similar to what I reported for the 
4k-WITH-mmap version:
   (1) sane memory profile
   (2) topology one, 9-10 Mbps 2-3% cpu
   (3) topology two, 14-15 Mbps, 4-6% cpu [*]

I'm not sure what benefit mmap has in this case -- unless you can 
exploit some zero-copy kernel code for transferring data from disk to 
ethernet device. But I don't think Windows has anything like that. I 
certainly don't *see* any benefit, in my limited testing on this set of 
hardware.

If this *does* fix the problem, it may point to an issue with 
cygwin-1.5's mmap implementation, or with XP's handling of the 
underlying NtCreateSection()...mmap is not supposed to be CPU-intensive.

--
Chuck

[*] However, with the mmap'ed, 4k buffer version, I also saw only 4-6% 
CPU utilization on Vista, cygwin-1.7.  So, YMMV.



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

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

* Re: inetutils 1.5 / ftpd problem: 426 Data connection: No buffer  space available.
  2008-04-30  8:01 ` Charles Wilson
@ 2008-04-30 10:59   ` Corinna Vinschen
  2008-05-01  5:57     ` Charles Wilson
  0 siblings, 1 reply; 20+ messages in thread
From: Corinna Vinschen @ 2008-04-30 10:59 UTC (permalink / raw)
  To: cygwin

On Apr 30 01:58, Charles Wilson wrote:
> antony baxter wrote:
>>> 1. In all cases, the ftpd process' memory usage increases to ~350mb,
>>> 2. As the buffer value decreases, the process' cpu usage increases
>>> (ftpd-1k.exe used about 75% of the cpu vs. about 10% for ftpd-8k.exe),
>>> 3. Performance jumped around (ftpd-1k transferred the file in
>>> 90seconds, ftpd-4k in 166 seconds, ftp-8k in 114 seconds on a wired
>>> network)
>> Quick addendum: I copied over in.ftpd.exe from another Cygwin
>> installation running inetutils 1.3.2 and symlinked it to ftpd on my
>> server; using that to serve the same file, memory usage sticks at
>> 3500kb, cpu usage never rises about 5%, and the file was delivered in
>> 194 seconds.
> 
> Well, one of the differences between ftpd-1.3.2 and ftpd-1.5 is that the 
> newer version uses mmap on the (local) file.  ftpd.c is the /only/ source 
> file in inetutils that uses mmap.

Ok, so the ftpd using mmap is faster, one way or another.

> So, I recompiled with HAVE_MMAP turned off (but still using 4k chunks). 
> Give this a try:
>
> http://cygwin.cwilson.fastmail.fm/ITP/ftpd-no-mmap-4k.exe.bz2
>
> I get behavior here which is very similar to what I reported for the 
> 4k-WITH-mmap version:
>   (1) sane memory profile
>   (2) topology one, 9-10 Mbps 2-3% cpu
>   (3) topology two, 14-15 Mbps, 4-6% cpu [*]
>
> I'm not sure what benefit mmap has in this case -- unless you can exploit 
> some zero-copy kernel code for transferring data from disk to ethernet 
> device. But I don't think Windows has anything like that. I certainly don't 
> *see* any benefit, in my limited testing on this set of hardware.
>
> If this *does* fix the problem, it may point to an issue with cygwin-1.5's 
> mmap implementation, or with XP's handling of the underlying 
> NtCreateSection()...mmap is not supposed to be CPU-intensive.

There might be a bug lurking somewhere.  Could you create a very simple
testcase which basically behaves like ftpd for debugging?


Thanks,
Corinna

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

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

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

* Re: inetutils 1.5 / ftpd problem: 426 Data connection: No buffer   space available.
  2008-04-30 10:59   ` Corinna Vinschen
@ 2008-05-01  5:57     ` Charles Wilson
  2008-05-01  7:56       ` Corinna Vinschen
  2008-05-07 12:00       ` Corinna Vinschen
  0 siblings, 2 replies; 20+ messages in thread
From: Charles Wilson @ 2008-05-01  5:57 UTC (permalink / raw)
  To: cygwin

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

Corinna Vinschen wrote:
> On Apr 30 01:58, Charles Wilson wrote:
>> Well, one of the differences between ftpd-1.3.2 and ftpd-1.5 is that the 
>> newer version uses mmap on the (local) file.  ftpd.c is the /only/ source 
>> file in inetutils that uses mmap.
> 
> Ok, so the ftpd using mmap is faster, one way or another.

Not according to my numbers:

mmap, topo 1, 4k buffers:  9-10 Mbps
mmap, topo 2, 4k buffers: 14-15 Mbps

NO mmap, topo 1, 4k bufs:  9-10 Mbps
NO mmap, topo 2, 4k bufs: 14-15 Mbps


>> If [disabling mmap] *does* fix the problem, it may point to an issue with cygwin-1.5's 
>> mmap implementation, or with XP's handling of the underlying 
>> NtCreateSection()...mmap is not supposed to be CPU-intensive.
> 
> There might be a bug lurking somewhere.  Could you create a very simple
> testcase which basically behaves like ftpd for debugging?

attached.

gcc -o server server.c
gcc -o client client.c

Add an entry to /etc/services on both machines, like:
     example 22725/tcp
or you could edit the two files and use a hardcoded port number, instead 
of a service name and getservbyname()

And don't forget to open a hole in your server machine's firewall for 
that port.

On the server machine, invoke as:

    $ server <filename>

This file is the one that will be transferred to the client. This works 
for me:
    $ dd if=/dev/urandom of=ReallyBigFile bs=1M count=250

On the client:

    $ client <hostname_of_server> <filename>

<filename> is where the client will save the transferred data.

server is a traditional daemon, which forks off a copy to handle each 
new connection.  That copy is the one you want to debug/strace/whatever.

With this pair of programs, I saw "sane" memory usage in all cases when 
NOT using mmap, and I saw "insane" memory usage for all mmap cases 
except when blocksize was 1k.

To switch among the various cases, edit the server.c file to 
#define/#undef HAVE_MMAP, and change the value of LARGE_TRANSFER_BLOCKSIZE.

--
Chuck


[-- Attachment #2: ftpd-mmap-troubles.tar.bz2 --]
[-- Type: application/octet-stream, Size: 5522 bytes --]

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

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

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

* Re: inetutils 1.5 / ftpd problem: 426 Data connection: No buffer  space available.
  2008-05-01  5:57     ` Charles Wilson
@ 2008-05-01  7:56       ` Corinna Vinschen
  2008-05-07 12:00       ` Corinna Vinschen
  1 sibling, 0 replies; 20+ messages in thread
From: Corinna Vinschen @ 2008-05-01  7:56 UTC (permalink / raw)
  To: cygwin

On May  1 01:57, Charles Wilson wrote:
> Corinna Vinschen wrote:
>> On Apr 30 01:58, Charles Wilson wrote:
>>> If [disabling mmap] *does* fix the problem, it may point to an issue with 
>>> cygwin-1.5's mmap implementation, or with XP's handling of the underlying 
>>> NtCreateSection()...mmap is not supposed to be CPU-intensive.
>> There might be a bug lurking somewhere.  Could you create a very simple
>> testcase which basically behaves like ftpd for debugging?
>
> attached.

Thanks!  I'm off for a couple of days, but I'll look into it when
I'm back.


Corinna

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

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

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

* Re: inetutils 1.5 / ftpd problem: 426 Data connection: No buffer  space available.
  2008-05-01  5:57     ` Charles Wilson
  2008-05-01  7:56       ` Corinna Vinschen
@ 2008-05-07 12:00       ` Corinna Vinschen
  1 sibling, 0 replies; 20+ messages in thread
From: Corinna Vinschen @ 2008-05-07 12:00 UTC (permalink / raw)
  To: cygwin

On May  1 01:57, Charles Wilson wrote:
> Corinna Vinschen wrote:
>> On Apr 30 01:58, Charles Wilson wrote:
>>> If [disabling mmap] *does* fix the problem, it may point to an issue with 
>>> cygwin-1.5's mmap implementation, or with XP's handling of the underlying 
>>> NtCreateSection()...mmap is not supposed to be CPU-intensive.
>> There might be a bug lurking somewhere.  Could you create a very simple
>> testcase which basically behaves like ftpd for debugging?
>
> attached.
>
> gcc -o server server.c
> gcc -o client client.c
>
> Add an entry to /etc/services on both machines, like:
>     example 22725/tcp
> or you could edit the two files and use a hardcoded port number, instead of 
> a service name and getservbyname()
>
> And don't forget to open a hole in your server machine's firewall for that 
> port.
>
> On the server machine, invoke as:
>
>    $ server <filename>
>
> This file is the one that will be transferred to the client. This works for 
> me:
>    $ dd if=/dev/urandom of=ReallyBigFile bs=1M count=250
>
> On the client:
>
>    $ client <hostname_of_server> <filename>
>
> <filename> is where the client will save the transferred data.
>
> server is a traditional daemon, which forks off a copy to handle each new 
> connection.  That copy is the one you want to debug/strace/whatever.
>
> With this pair of programs, I saw "sane" memory usage in all cases when NOT 
> using mmap, and I saw "insane" memory usage for all mmap cases except when 
> blocksize was 1k.
>
> To switch among the various cases, edit the server.c file to #define/#undef 
> HAVE_MMAP, and change the value of LARGE_TRANSFER_BLOCKSIZE.

IIUC, the testcase should exhibit the problem OOTB.  HAVE_MMAP is
defined and LARGE_TRANSFER_BLOCKSIZE is set to 32K.  I did what you
wrote above, I built server and client, added the example port to
/etc/services, created the ReallyBigFile from /dev/urandom as above...

However, I can't reproduce any ill effect.  This testcase mmap's the
file exactly once and then calls as many 32K write's as necessary to
write the whole file.  I don't see any waste of memory at all.

When examining the memory usage with Task Manager or, better, with
sysinternal's Process Explorer, you'll see how the memory usage goes up
over time.  But that's no problem.  What you see is the mapping of the
file into the physical memory of the machine.  With each write, the
process accesses another 32K bytes of the file mapping, so the OS has to
map another 32K of the file into the process memory.  Actually this is
done in 64K chunks, but that doesn't matter here.  What you see is quite
normal behaviour and has nothing to do with Cygwin's mmap implementation,
AFAICS.


Corinna


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

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

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

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

* Re: inetutils 1.5 / ftpd problem: 426 Data connection: No buffer  space available.
  2008-05-07 15:16 antony baxter
@ 2008-05-07 15:19 ` Corinna Vinschen
  0 siblings, 0 replies; 20+ messages in thread
From: Corinna Vinschen @ 2008-05-07 15:19 UTC (permalink / raw)
  To: cygwin

On May  7 20:28, antony baxter wrote:
> Corinna,
> 
> > IIUC, the testcase should exhibit the problem OOTB.  HAVE_MMAP is
> > defined and LARGE_TRANSFER_BLOCKSIZE is set to 32K.  I did what you
> > wrote above, I built server and client, added the example port to
> > /etc/services, created the ReallyBigFile from /dev/urandom as above...
> >
> > However, I can't reproduce any ill effect.  This testcase mmap's the
> > file exactly once and then calls as many 32K write's as necessary to
> > write the whole file.  I don't see any waste of memory at all.
> >
> > When examining the memory usage with Task Manager or, better, with
> > sysinternal's Process Explorer, you'll see how the memory usage goes up
> > over time.  But that's no problem.  What you see is the mapping of the
> > file into the physical memory of the machine.  With each write, the
> > process accesses another 32K bytes of the file mapping, so the OS has to
> > map another 32K of the file into the process memory.  Actually this is
> > done in 64K chunks, but that doesn't matter here.  What you see is quite
> > normal behaviour and has nothing to do with Cygwin's mmap implementation,
> > AFAICS.
> 
> Just to be clear, when the test server is serving up a 250MB file,
> you'd expect it to ultimately be using 250MB of memory according to
> Task Manager? On my server machine, this meant that by the time the

Yes, I expect that.  The reason is that ftpd (actually Chuck's example
code in my case) creates a memory map of the size of the whole file.  If
you access every single bit of the file, as ftpd naturally does, the
file has ultimately be mapped in memory in full size.  If the file is
bigger than the memory left in the virtual memory space of the process,
the mmap will fail.  As long as Windows can fit it into RAM, it will do
so.  If it can't, it will use the paging file.

A better approach using mmap would probably mmap only chunks of, say, 16
Megs into memory, unmap them after writing and map the next 16 Megs of
the file.  This way you can map any arbitrary sized file and you wouldn't
have paging tradeoffs.


Corinna

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

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

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

* Re: inetutils 1.5 / ftpd problem: 426 Data connection: No buffer space available.
@ 2008-05-07 15:16 antony baxter
  2008-05-07 15:19 ` Corinna Vinschen
  0 siblings, 1 reply; 20+ messages in thread
From: antony baxter @ 2008-05-07 15:16 UTC (permalink / raw)
  To: cygwin

Corinna,

> IIUC, the testcase should exhibit the problem OOTB.  HAVE_MMAP is
> defined and LARGE_TRANSFER_BLOCKSIZE is set to 32K.  I did what you
> wrote above, I built server and client, added the example port to
> /etc/services, created the ReallyBigFile from /dev/urandom as above...
>
> However, I can't reproduce any ill effect.  This testcase mmap's the
> file exactly once and then calls as many 32K write's as necessary to
> write the whole file.  I don't see any waste of memory at all.
>
> When examining the memory usage with Task Manager or, better, with
> sysinternal's Process Explorer, you'll see how the memory usage goes up
> over time.  But that's no problem.  What you see is the mapping of the
> file into the physical memory of the machine.  With each write, the
> process accesses another 32K bytes of the file mapping, so the OS has to
> map another 32K of the file into the process memory.  Actually this is
> done in 64K chunks, but that doesn't matter here.  What you see is quite
> normal behaviour and has nothing to do with Cygwin's mmap implementation,
> AFAICS.

Just to be clear, when the test server is serving up a 250MB file,
you'd expect it to ultimately be using 250MB of memory according to
Task Manager? On my server machine, this meant that by the time the
end of the file was reached, Windows was paging to disk like mad, and
so the transfer speed dropped dramatically. I would argue that this is
a retrograde step for ftpd, but maybe I'm missing something.

Charles, the latest version of ftpd that you released (no MMAP, 4k
block size) works fine for me wrt memory, but used considerably more
CPU than the last version of in.ftp, with no noticeable performance
gain.

For now I'm quite happy using the latest inetd with an old in.ftpd, so
if no-one else is having problems then please don't worry about this.

Thanks

ant.

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

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

* Re: inetutils 1.5 / ftpd problem: 426 Data connection: No buffer space available.
@ 2008-04-30 10:11 antony baxter
  0 siblings, 0 replies; 20+ messages in thread
From: antony baxter @ 2008-04-30 10:11 UTC (permalink / raw)
  To: cygwin

Charles,

> Well, one of the differences between ftpd-1.3.2 and ftpd-1.5 is that
> the newer version uses mmap on the (local) file. ftpd.c is the /only/
> source file in inetutils that uses mmap.
>
> So, I recompiled with HAVE_MMAP turned off (but still using 4k
> chunks).  Give this a try:
>
> http://cygwin.cwilson.fastmail.fm/ITP/ftpd-no-mmap-4k.exe.bz2
>
> I get behavior here which is very similar to what I reported for the
> 4k-WITH-mmap version:
> (1) sane memory profile
> (2) topology one, 9-10 Mbps 2-3% cpu
> (3) topology two, 14-15 Mbps, 4-6% cpu [*]
>
> I'm not sure what benefit mmap has in this case -- unless you can
> exploit some zero-copy kernel code for transferring data from disk to
> ethernet device. But I don't think Windows has anything like that. I
> certainly don't *see* any benefit, in my limited testing on this set
> of hardware.
>
> If this *does* fix the problem, it may point to an issue with
> cygwin-1.5's mmap implementation, or with XP's handling of the
> underlying NtCreateSection()...mmap is not supposed to be
> CPU-intensive.

Ok, with this version memory stays at a constant 3600kb, cpu usage
hovers at around 50%, and performance is quick (55 seconds to transfer
the file).

Its *possible* that the cpu usage is a red herring - the server is
running in VMware and that may introduce some peculiarities of its
own; however in.ftpd from inetutils 1.3.6 did maintain very low cpu
usage.

Thanks,

Ant.

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

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

* Re: inetutils 1.5 / ftpd problem: 426 Data connection: No buffer space available.
@ 2008-04-30  5:59 antony baxter
  0 siblings, 0 replies; 20+ messages in thread
From: antony baxter @ 2008-04-30  5:59 UTC (permalink / raw)
  To: cygwin

Charles,

> Unless somebody squawks loudly and soon, I'm going to release inetutils-1.5-4 using 4k buffers for ftpd send_data().

Squawk!

Unfortunately, with XP SP2, Cygwin 1.5 as the server machine, I get
pretty much the same symptoms with each of the above ftpds serving up
a 350mb file:

1. In all cases, the ftpd process' memory usage increases to ~350mb,
2. As the buffer value decreases, the process' cpu usage increases
(ftpd-1k.exe used about 75% of the cpu vs. about 10% for ftpd-8k.exe),
3. Performance jumped around (ftpd-1k transferred the file in
90seconds, ftpd-4k in 166 seconds, ftp-8k in 114 seconds on a wired
network)

Sorry!

Ant.

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

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

* Re: inetutils 1.5 / ftpd problem: 426 Data connection: No buffer  space available.
  2008-04-29 17:32 ` Charles Wilson
@ 2008-04-30  4:41   ` Charles Wilson
  0 siblings, 0 replies; 20+ messages in thread
From: Charles Wilson @ 2008-04-30  4:41 UTC (permalink / raw)
  To: cygwin

Charles Wilson wrote:

> http://cygwin.cwilson.fastmail.fm/ITP/ftpd-1k.exe.bz2
> http://cygwin.cwilson.fastmail.fm/ITP/ftpd-4k.exe.bz2
> http://cygwin.cwilson.fastmail.fm/ITP/ftpd-8k.exe.bz2
> http://cygwin.cwilson.fastmail.fm/ITP/ftpd-32k.exe.bz2 (same as prev)


For ex, with the 32k buffers, here's what I see in the resource monitor 
(this is on Vista, cygwin-1.7)

commit (KB)    Working Set (KB)    Shareable (KB)   Private (KB)
3948             5,832               3,716            2,116

when the client begins to 'get' the very large file, I can watch the 
Private allocations jump in 4k increments.  Meanwhile the Working Set 
and Shareable both jump in 1300kB (or so) increments.  This continues 
until a maximum of about:

commit (KB)    Working Set (KB)    Shareable (KB)   Private (KB)
4,488          240,000             238,000            2,600

is reached.  Once the transfer is complete, the numbers drop back down 
to the first set, above.  However, for smaller sizes (4k, 1k) I get sane 
behavior -- see below.


Another thing I noticed, was transfer speed:

topology one:
server=Vista, cygwin-1.7, wireless 802.11g
client=XPsp2, cygwin-1.5, wireless 802.11g
(both using the same access point, thus sharing the same nominal 54Mbps 
link)

64k buffers:     2 Mbps
32k buffers:     1 Mbps
  8k buffers:     9 Mbps
  4k buffers:  9-10 Mbps (sane!)
  1k buffers;   8-9 Mbps (sane!)

This poor behavior with 32k and 64k buffers could be a function of my AP 
not handling bi-di wireless transfers well, or the longer bursts forcing 
it to use the available bandwidth inefficiently. Trying again:

Topology two:
server=Vista, cygwin-1.7, wireless 802.11g
client=linux, 100BaseT wired

64k buffers: 17-20 Mbps
32k buffers: 15-17 Mbps
  8k buffers: 13-14 Mbps
  4k buffers: 14-15 Mbps (sane!)
  1k buffers; 13-14 Mbps (sane!)

So, while you get better performance (in unshared topologies) with the 
larger buffer sizes, the 4k and 1k buffers exhibit sane behavior with 
respect to the Working Set and Shareable memory allocations:
   (1) they stay around 5MB to 6MB rather than ballooning up to 240MB.
   (2) I actually see the numbers go down occasionally, instead of 
always increasing until the transfer is complete.

That's good enough for me to forego the improvement in transfer speed 
(which is anywhere from 13%--42% if you compare best/worst and 
worst/best between 64k and 4k on non-shared topologies) -- and avoid the 
awful behavior on shared topologies.

Unless somebody squawks loudly and soon, I'm going to release 
inetutils-1.5-4 using 4k buffers for ftpd send_data().

--
Chuck

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

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

* Re: inetutils 1.5 / ftpd problem: 426 Data connection: No buffer  space available.
  2008-04-29  7:31 antony baxter
@ 2008-04-29 17:32 ` Charles Wilson
  2008-04-30  4:41   ` Charles Wilson
  0 siblings, 1 reply; 20+ messages in thread
From: Charles Wilson @ 2008-04-29 17:32 UTC (permalink / raw)
  To: cygwin

antony baxter wrote:
> Better, in the sense that I can now retrieve the file; however
> ftpd.exe's memory usage (monitored via Task Manager) now grows
> continously during the transfer until eventually the server machine
> grinds to a halt, paging furiously. Once the transfer does finally
> finish ftpd.exe's memory usage drops back to normal (2,400K).

Hmm. A little more research shows winsock's internal behavior -- 
transfers, waitiong for ack, allocating internal buffers -- is very 
sensitive to the size of so_sndbuf (winsock default 8192) and the packet 
size (ethernet default 1560). See if one of these options gives better 
performance:

http://cygwin.cwilson.fastmail.fm/ITP/ftpd-1k.exe.bz2
http://cygwin.cwilson.fastmail.fm/ITP/ftpd-4k.exe.bz2
http://cygwin.cwilson.fastmail.fm/ITP/ftpd-8k.exe.bz2
http://cygwin.cwilson.fastmail.fm/ITP/ftpd-32k.exe.bz2 (same as prev)

Also, what is the value of
HKLM\System\CurrentControlSet\Services\Tcpip\Parameters\TcpWindowSize

--
Chuck

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

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

* Re: inetutils 1.5 / ftpd problem: 426 Data connection: No buffer  space available.
  2008-04-29  3:55       ` Charles Wilson
@ 2008-04-29  9:56         ` Corinna Vinschen
  0 siblings, 0 replies; 20+ messages in thread
From: Corinna Vinschen @ 2008-04-29  9:56 UTC (permalink / raw)
  To: cygwin

On Apr 28 19:44, Charles Wilson wrote:
> Charles Wilson wrote:
>
>> Yeah, I'll code that up for 1.5-4.  Should I stick with BUFSIZ == 1024, or 
>> when MMAP use something a little bigger, say 32k?
>
> Also, uploads to the server seem to be sane (e.g. read() from the server 
> side). So it's just downloads to the client when HAVE_MMAP.  The fix was 
> pretty easy:
>
>  #ifdef HAVE_MMAP
>  #include <sys/mman.h>
> +# ifdef __CYGWIN__
> +   /* On cygwin, network transfers are limited to an absolute
> +      maximum of 64k, or transfer fails with ENOBUFS. Conservative: */
> +#  define LARGE_TRANSFER_LIMIT 32768
> +# endif
>  #endif

In theory that looks fine, I just don't like the comment.  This is not
Cygwin's fault in the first place and it's not Cygwin returning ENOBUFS
when you use too big send calls in the first place.  Also, Cygwin does
not return ENOBUFS for writes > 64K.  The 1.5 versions lets you do
what you want and you have to deal with Winsock's behaviour directly.

The 1.7 version just sends a maximum of 64K regardless of the incoming
buffer size.  It doesn't refuse the write completely.  Eventually we
should do our own write buffer management in Cygwin so you won't have
to care.  Brian Ford is looking into it, afaik.


Corinna

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

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

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

* Re: inetutils 1.5 / ftpd problem: 426 Data connection: No buffer space available.
@ 2008-04-29  7:31 antony baxter
  2008-04-29 17:32 ` Charles Wilson
  0 siblings, 1 reply; 20+ messages in thread
From: antony baxter @ 2008-04-29  7:31 UTC (permalink / raw)
  To: cygwin

Charles,

> antony, please test the following:
> http://cygwin.cwilson.fastmail.fm/ITP/ftpd.exe.bz2

Better, in the sense that I can now retrieve the file; however
ftpd.exe's memory usage (monitored via Task Manager) now grows
continously during the transfer until eventually the server machine
grinds to a halt, paging furiously. Once the transfer does finally
finish ftpd.exe's memory usage drops back to normal (2,400K).

Thanks

Ant.

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

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

* Re: inetutils 1.5 / ftpd problem: 426 Data connection: No buffer   space available.
  2008-04-29  0:27     ` Charles Wilson
@ 2008-04-29  3:55       ` Charles Wilson
  2008-04-29  9:56         ` Corinna Vinschen
  0 siblings, 1 reply; 20+ messages in thread
From: Charles Wilson @ 2008-04-29  3:55 UTC (permalink / raw)
  To: cygwin

Charles Wilson wrote:

> Yeah, I'll code that up for 1.5-4.  Should I stick with BUFSIZ == 1024, 
> or when MMAP use something a little bigger, say 32k?

Also, uploads to the server seem to be sane (e.g. read() from the server 
side). So it's just downloads to the client when HAVE_MMAP.  The fix was 
pretty easy:

  #ifdef HAVE_MMAP
  #include <sys/mman.h>
+# ifdef __CYGWIN__
+   /* On cygwin, network transfers are limited to an absolute
+      maximum of 64k, or transfer fails with ENOBUFS. Conservative: */
+#  define LARGE_TRANSFER_LIMIT 32768
+# endif
  #endif
...
  	  do
  	    {
-	      cnt = write (netfd, bp, len);
+#ifdef __CYGWIN__
+              /* on cygwin, socket write is limited to 64k max */
+	      cnt = write (netfd, bp, (len < LARGE_TRANSFER_LIMIT ? len : 
LARGE_TRANSFER_LIMIT));
+#else
+              cnt = write (netfd, bp, len);
+#endif
  	      len -= cnt;
  	      bp += cnt;
  	      if (cnt > 0) byte_count += cnt;
             } while (cnt > 0 && len > 0);

antony, please test the following:
http://cygwin.cwilson.fastmail.fm/ITP/ftpd.exe.bz2

--
Chuck

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

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

* Re: inetutils 1.5 / ftpd problem: 426 Data connection: No buffer   space available.
  2008-04-28  9:11   ` Corinna Vinschen
@ 2008-04-29  0:27     ` Charles Wilson
  2008-04-29  3:55       ` Charles Wilson
  0 siblings, 1 reply; 20+ messages in thread
From: Charles Wilson @ 2008-04-29  0:27 UTC (permalink / raw)
  To: cygwin

Corinna Vinschen wrote:
> 
> This code only exists in 1.7.  The only way to get ENOBUFS in 1.5.x is
> when Winsock emits it.  I see two possible reasons.  One is a
> third-party firewall software which interacts badly with ftpd on the
> machine with the ENOBUFS problem, the other is ftpd itself.  Does ftpd
> from 1.5 try to write the 215 Megs in one single write call, by any
> chance?

Why, yes, yes it does. But only if #HAVE_MMAP; otherwise it's a little 
more sane and uses BUFSIZ from stdio.h; 1024.

>  We had this discussion lately and I added a stop-gap measure
> into 1.7 so that no write to the net writes more than 64K in one go.
> The problem is that Winsock unintelligibly tries to create a temporary
> internal buffer the size of the write buffer, regardless of its size.
> Naturally that can fail, and if it does, you get the error code
> WSAENOBUFS.  The only way around that for 1.5 is to split network writes
> to smaller chunks.  Doing that is much faster on Windows, too, btw.

Yeah, I'll code that up for 1.5-4.  Should I stick with BUFSIZ == 1024, 
or when MMAP use something a little bigger, say 32k?

--
Chuck

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

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

* Re: inetutils 1.5 / ftpd problem: 426 Data connection: No buffer  space available.
  2008-04-28  7:15 ` Charles Wilson
@ 2008-04-28  9:11   ` Corinna Vinschen
  2008-04-29  0:27     ` Charles Wilson
  0 siblings, 1 reply; 20+ messages in thread
From: Corinna Vinschen @ 2008-04-28  9:11 UTC (permalink / raw)
  To: cygwin

On Apr 28 03:06, Charles Wilson wrote:
> antony baxter wrote:
>
>> ftp> get BCUpdateXP.exe
>> 'EPSV': command not understood.
>> local: BCUpdateXP.exe remote: BCUpdateXP.exe
>> 227 Entering Passive Mode (192,168,1,99,4,110)
>> 150 Opening BINARY mode data connection for 'BCUpdateXP.exe' (226020663 
>> bytes).
>>   0% |
>>                        |     0       0.00 KB/s    --:-- ETA
>> 426 Data connection: No buffer space available.
>
> This means that very first call to the cygwin1.dll function 'write(int 
> networkSocketFd, const void *buf, size_t nbyte)' failed for some reason: 
> ENOBUFS is not one of the valid error codes for write(), so it's set to 
> that by something internal to cygwin's implementation of write().
>
> e.g. smells like a cygwin (or windows) bug -- cygwin is unable to create a 
> Mutex or an Event for managing the socket communications (e.g. CreateMutex 
> or CreateEvent in net.cc: (handler_socket::init_events) failed)

This code only exists in 1.7.  The only way to get ENOBUFS in 1.5.x is
when Winsock emits it.  I see two possible reasons.  One is a
third-party firewall software which interacts badly with ftpd on the
machine with the ENOBUFS problem, the other is ftpd itself.  Does ftpd
from 1.5 try to write the 215 Megs in one single write call, by any
chance?  We had this discussion lately and I added a stop-gap measure
into 1.7 so that no write to the net writes more than 64K in one go.
The problem is that Winsock unintelligibly tries to create a temporary
internal buffer the size of the write buffer, regardless of its size.
Naturally that can fail, and if it does, you get the error code
WSAENOBUFS.  The only way around that for 1.5 is to split network writes
to smaller chunks.  Doing that is much faster on Windows, too, btw.


Corinna

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

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

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

* Re: inetutils 1.5 / ftpd problem: 426 Data connection: No buffer space available.
@ 2008-04-28  8:46 antony baxter
  0 siblings, 0 replies; 20+ messages in thread
From: antony baxter @ 2008-04-28  8:46 UTC (permalink / raw)
  To: cygwin

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

Charles,

> This means that very first call to the cygwin1.dll function 'write(int
> networkSocketFd, const void *buf, size_t nbyte)' failed for some
> reason: ENOBUFS is not one of the valid error codes for write(), so
> it's set to that by something internal to cygwin's implementation of
> write().

Ok. Having re-read my original mail I probably should have made
clear that it works fine for smaller files (I've tried 10, 15MB
files with no problems at all) - don't know if that makes a
difference, but to my untrained eye I'd be surprised if the
difference in file size caused a problem with the socket opening...

> e.g. smells like a cygwin (or windows) bug -- cygwin is unable to
> create a Mutex or an Event for managing the socket communications
> (e.g. CreateMutex or CreateEvent in net.cc:
> (handler_socket::init_events) failed)
>
> I'm wondering if you have different versions of cygwin on the
> two machines -- not that it should matter, but if so then the
> answer may be simple. Can you send -- as attachments, not
> cut-n-paste -- the result of 'cygcheck -s -v -r' on each of
> the two cygwin machines?

Attached (I hope). xp-ant1 is running inetutils 1.5, xp-ant2 1.3.2.

Ant.

[-- Attachment #2: xp-ant1.txt --]
[-- Type: text/plain, Size: 28608 bytes --]


Cygwin Configuration Diagnostics
Current System Time: Mon Apr 28 08:37:09 2008

Windows XP Professional Ver 5.1 Build 2600 Service Pack 2

Running in Terminal Service session

Path:	C:\cygwin\home\ant\.bin
	C:\cygwin\mnt\ramdisk\bin
	C:\cygwin\usr\local\bin
	C:\cygwin\bin
	C:\cygwin\bin
	C:\cygwin\usr\local\sbin
	C:\cygwin\usr\sbin
	C:\cygwin\sbin
	C:\cygwin\usr\X11R6\bin
	C:\WINDOWS
	C:\WINDOWS\system32
	C:\WINDOWS\system32\Wbem

Output from C:\cygwin\bin\id.exe (nontsec)
UID: 11096(ant)          GID: 10513(Domain Users)
544(Administrators)      545(Users)               12919(AddWkstn2Domain)
11169(Dev)               10513(Domain Users)

Output from C:\cygwin\bin\id.exe (ntsec)
UID: 11096(ant)          GID: 10513(Domain Users)
544(Administrators)      545(Users)               12919(AddWkstn2Domain)
11169(Dev)               10513(Domain Users)

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

LIBRARY_PATH = '/usr/local/lib:/usr/lib:/lib:/usr/local/libexec:/usr/libexec:/libexec:/usr/X11R6/lib'
USER = 'ant'
LD_LIBRARY_PATH = '/usr/local/lib:/usr/lib:/lib:/usr/local/libexec:/usr/libexec:/libexec:/usr/X11R6/lib'
C_INCLUDE_PATH = '/usr/local/include:/usr/include:/include'
PWD = '/home/ant'
CYGWIN = 'ntsec tty notitle glob server'
HOME = '/home/ant'
MAKE_MODE = 'unix'

CPLUS_INCLUDE_PATH = '/usr/local/include:/usr/include:/include'
HOMEPATH = '\Documents and Settings\ant'
MANPATH = '/usr/local/man:/usr/man:/man:/usr/local/share/man:/usr/share/man:/share/man:/usr/ssl/man:/usr/X11R6/man'
APPDATA = 'C:\Documents and Settings\ant\Application Data'
TERM_PROGRAM = 'mrxvt'
HOSTNAME = 'xp-ant1'
TAB = '3364'
MRXVT_TABTITLE = 'xp-ant1 [/home/ant]'
SHELL = '/bin/bash'
TERM = 'rxvt'
PROCESSOR_IDENTIFIER = 'x86 Family 15 Model 4 Stepping 8, GenuineIntel'
OBJC_INCLUDE_PATH = '/usr/local/include:/usr/include:/include'
WINDIR = 'C:\WINDOWS'
MINIPWD = '/home/ant'
WINDOWID = '8388613'
OLDPWD = '/usr/share/doc/Cygwin'
USERDOMAIN = 'HOMEDOMAIN'
OS = 'Windows_NT'
ALLUSERSPROFILE = 'C:\Documents and Settings\All Users'
LC_ALL = 'C'
LS_FILTER_FILES = '^-.*\.XWinrc|^-.*\.Xresources|^-.*\....._history|^-.*\.cvspass|^-.*\.dir_colours|^-.*\.esd_auth|^-.*\.fonts.cache-1|^-.*\.history|^-.*\.hushlogin|^-.*\.netrc|^-.*\.nocolor|^-.*\.pinepwd|^-.*\.rnd|^-.*\.viminfo'
LS_COLORS = 'no=00:fi=00:di=01;36:ln=00;36:pi=00;35:so=00;35:do=00;35:bd=01;33:cd=01;33:or=07;36:su=00;37:sg=00;37:tw=00;33:ow=00;33:st=00;33:ex=00;31:*.cmd=00;31:*.exe=00;31:*.com=00;31:*.btm=00;31:*.bat=00;31:*.tar=01;31:*.tgz=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.gz=01;31:*.bz2=01;31:*.bz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.rar=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.jpg=01;35:*.jpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:'
TEMP = '/tmp'
COMMONPROGRAMFILES = 'C:\Program Files\Common Files'
CDLIST = '/home/ant/.cdhistory/xp-ant1.list'
TMDIR = '/tmp'
RSH = 'false'
USERNAME = 'ant'
COLUMNS = '120'
PAGER = 'less'
PROCESSOR_LEVEL = '15'
FP_NO_HOST_CHECK = 'NO'
TTY = '/dev/tty2'
SYSTEMDRIVE = 'C:'
EDITOR = 'vi'
LANG = 'C'
USERPROFILE = 'C:\Documents and Settings\ant'
CLIENTNAME = 'Console'
TZ = 'Europe/London'
LS_FILTER_DIRS = '^d.*\.ahk|^d.*\.bashcompletion|^d.*\.cdhistory|^d.*\.cpan*|^d.*\.gnupg|^d.*\.passwords|^d.*\.screensavers|^d.*\.ssh|^d.*\.subversion|^d.*\.terminfo'
INCLUDES = '/usr/local/include:/usr/include:/include'
MACHINE = 'xp-ant1'
PS1 = '\[\e[00;33m\]\u\[\e[0m\]\[\e[00;36m\]@${HOSTNAME} (\[\e[0m\]\[\e[00;34m\]${MINIPWD}\[\e[0m\]\[\e[00;36m\])\[\e[0m\]\[\e[0m\] % '
LOGONSERVER = '\\HOMEDC'
LINES = '40'
CDHIST = '/.cdhistory'
PROCESSOR_ARCHITECTURE = 'x86'
RAMTMP = '/tmp'
LESSCHARSET = 'latin1'
SHLVL = '1'
CDHISTSIZE = '10'
TERMINFO = '/home/ant/.terminfo'
USERDNSDOMAIN = 'HOMEDOMAIN'
PATHEXT = '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH'
HOMEDRIVE = 'C:'
VIM_SERVER = 'xp-ant1'
COMSPEC = 'C:\WINDOWS\system32\cmd.exe'
LESS = '-XFScfginqx3~'
TMP = '/tmp'
SYSTEMROOT = 'C:\WINDOWS'
VISUAL = 'vi'
CVS_RSH = '/bin/ssh'
PROCESSOR_REVISION = '0408'
LOCAL_BIN = '/home/ant/.bin:/mnt/ramdisk/bin'
PKG_CONFIG_PATH = '/usr/local/lib/pkgconfig:/usr/lib/pkgconfig:/lib/pkgconfig'
INFOPATH = '/usr/local/info:/usr/share/info:/usr/info:'
PROGRAMFILES = 'C:\Program Files'
DISPLAY = 'localhost:0.0'
NUMBER_OF_PROCESSORS = '1'
SESSIONNAME = 'RDP-Tcp#1'
COMPUTERNAME = 'XP-ANT1'
COLORTERM = 'rxvt-xpm'
_ = '/usr/bin/cygcheck'

HKEY_CURRENT_USER\Software\Cygnus Solutions
HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin
HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin\mounts v2
HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin\Program Options
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2
  (default) = '/cygdrive'
  cygdrive flags = 0x00000022
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/
  (default) = 'C:\cygwin'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/mnt/apps
  (default) = 'C:\Documents and Settings\ant\My Documents\App Archive'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/mnt/desktop
  (default) = 'C:\Documents and Settings\ant\Desktop'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/mnt/downloads
  (default) = 'C:\Documents and Settings\ant\My Documents\Downloads'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/mnt/programs
  (default) = 'C:\Program Files'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/mnt/transfer
  (default) = 'C:\Documents and Settings\ant\My Documents\To Transfer'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/mnt/windows
  (default) = 'C:\WINDOWS'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/tmp
  (default) = 'C:\Documents and Settings\ant\Local Settings\Temp'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/usr/bin
  (default) = 'C:\cygwin/bin'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/usr/lib
  (default) = 'C:\cygwin/lib'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\Program Options

a:  fd             N/A    N/A                    
c:  hd  NTFS     40946Mb  15% CP CS UN PA FC     
d:  cd  CDFS       603Mb 100%    CS              XP_PRO_SP2_ENG

C:\cygwin                                               /               system  binmode
C:\Documents and Settings\ant\My Documents\App Archive  /mnt/apps       system  binmode
C:\Documents and Settings\ant\Desktop                   /mnt/desktop    system  binmode
C:\Documents and Settings\ant\My Documents\Downloads    /mnt/downloads  system  binmode
C:\Program Files                                        /mnt/programs   system  binmode
C:\Documents and Settings\ant\My Documents\To Transfer  /mnt/transfer   system  binmode
C:\WINDOWS                                              /mnt/windows    system  binmode
C:\Documents and Settings\ant\Local Settings\Temp       /tmp            system  binmode
C:\cygwin/bin                                           /usr/bin        system  binmode
C:\cygwin/lib                                           /usr/lib        system  binmode
.                                                       /cygdrive       system  binmode,cygdrive

Found: C:\cygwin\bin\awk.exe
Found: C:\cygwin\bin\bash.exe
Found: C:\cygwin\bin\cat.exe
Found: C:\cygwin\bin\cp.exe
Found: C:\cygwin\bin\cpp.exe
Found: C:\cygwin\bin\crontab.exe
Found: C:\cygwin\bin\find.exe
Found: C:\cygwin\bin\gcc.exe
Not Found: gdb
Found: C:\cygwin\bin\grep.exe
Found: C:\cygwin\bin\kill.exe
Found: C:\cygwin\bin\ld.exe
Found: C:\cygwin\bin\ls.exe
Found: C:\cygwin\bin\make.exe
Found: C:\cygwin\bin\mv.exe
Not Found: patch
Not Found: perl
Found: C:\cygwin\bin\rm.exe
Found: C:\cygwin\bin\sed.exe
Found: C:\cygwin\bin\ssh.exe
Found: C:\cygwin\bin\sh.exe
Found: C:\cygwin\bin\tar.exe
Found: C:\cygwin\bin\test.exe
Not Found: vi
Found: C:\cygwin\bin\vim.exe

   87k 2006/02/16 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=2006/2/6 21:13
   61k 2008/04/01 C:\cygwin\bin\cygbz2-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygbz2-1.dll" v0.0 ts=2008/4/1 3:37
    7k 2006/10/22 C:\cygwin\bin\cygcharset-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygcharset-1.dll" v0.0 ts=2006/10/23 0:43
    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 8:57
 1059k 2007/10/19 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=2007/10/19 12:45
  221k 2007/06/30 C:\cygwin\bin\cygcurl-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygcurl-4.dll" v0.0 ts=2007/6/30 1:54
  118k 2007/04/06 C:\cygwin\bin\cygexpat-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygexpat-0.dll" v0.0 ts=2007/4/6 21:43
  161k 2007/03/28 C:\cygwin\bin\cygfontconfig-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygfontconfig-1.dll" v0.0 ts=2007/3/28 11:16
   40k 2006/11/15 C:\cygwin\bin\cygform-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygform-8.dll" v0.0 ts=2006/11/15 7:06
   48k 2003/08/09 C:\cygwin\bin\cygform7.dll - os=4.0 img=1.0 sys=4.0
                  "cygform7.dll" v0.0 ts=2003/8/9 10:25
  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 20:12
  462k 2007/05/31 C:\cygwin\bin\cygfreetype-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygfreetype-6.dll" v0.0 ts=2007/5/31 4:34
  451k 2005/12/27 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=2005/12/26 11:20
   77k 2005/12/27 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=2005/12/26 11:11
   54k 2005/12/27 C:\cygwin\bin\cyggdk_pixbuf_xlib-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdk_pixbuf_xlib-2.0-0.dll" v0.0 ts=2005/12/26 12:03
  515k 2006/06/06 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=2006/6/5 23:32
   10k 2006/06/06 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=2006/6/5 23:36
  222k 2006/06/06 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=2006/6/5 23:35
   14k 2006/06/06 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=2006/6/5 23:36
 2764k 2005/12/27 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=2005/12/26 11:43
   25k 2008/01/04 C:\cygwin\bin\cyghistory6.dll - os=4.0 img=1.0 sys=4.0
                  "cyghistory6.dll" v0.0 ts=2008/1/4 3:31
  271k 2007/08/24 C:\cygwin\bin\cygicons-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygicons-0.dll" v0.0 ts=2007/8/24 8:24
  976k 2006/10/22 C:\cygwin\bin\cygiconv-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygiconv-2.dll" v0.0 ts=2006/10/23 0:44
   22k 2001/12/13 C:\cygwin\bin\cygintl-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygintl-1.dll" v0.0 ts=2001/12/13 9:28
   37k 2003/08/10 C:\cygwin\bin\cygintl-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygintl-2.dll" v0.0 ts=2003/8/10 22:50
   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/20 2:04
   31k 2006/10/23 C:\cygwin\bin\cygintl-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygintl-8.dll" v0.0 ts=2006/10/23 1:12
  246k 2008/04/02 C:\cygwin\bin\cygjasper-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygjasper-1.dll" v0.0 ts=2008/4/2 16:19
   48k 2006/11/17 C:\cygwin\bin\cygjbig-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygjbig-2.dll" v0.0 ts=2006/11/17 7:43
  124k 2006/11/09 C:\cygwin\bin\cygjpeg-62.dll - os=4.0 img=1.0 sys=4.0
                  "cygjpeg-62.dll" v0.0 ts=2006/11/9 9:02
  173k 2008/03/23 C:\cygwin\bin\cyglcms-1.dll - os=4.0 img=1.0 sys=4.0
                  "cyglcms-1.dll" v0.0 ts=2008/3/23 10:35
   83k 2007/06/06 C:\cygwin\bin\cygmagic-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygmagic-1.dll" v0.0 ts=2007/6/6 11:41
  395k 2008/04/17 C:\cygwin\bin\cygMagick++-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygMagick++-1.dll" v0.0 ts=2008/4/17 20:21
 1915k 2008/04/17 C:\cygwin\bin\cygMagickCore-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygMagickCore-1.dll" v0.0 ts=2008/4/17 20:05
  782k 2008/04/17 C:\cygwin\bin\cygMagickWand-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygMagickWand-1.dll" v0.0 ts=2008/4/17 20:17
   21k 2006/11/15 C:\cygwin\bin\cygmenu-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygmenu-8.dll" v0.0 ts=2006/11/15 7:05
   29k 2003/08/09 C:\cygwin\bin\cygmenu7.dll - os=4.0 img=1.0 sys=4.0
                  "cygmenu7.dll" v0.0 ts=2003/8/9 10:25
   20k 2006/12/21 C:\cygwin\bin\cygminires.dll - os=4.0 img=1.1 sys=4.0
                  "cygminires.dll" v0.0 ts=2006/12/21 5:07
   67k 2006/11/15 C:\cygwin\bin\cygncurses++-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses++-8.dll" v0.0 ts=2006/11/15 7:13
  237k 2006/11/15 C:\cygwin\bin\cygncurses-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses-8.dll" v0.0 ts=2006/11/15 7:02
  224k 2003/08/09 C:\cygwin\bin\cygncurses7.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses7.dll" v0.0 ts=2003/8/9 10:24
   12k 2006/11/15 C:\cygwin\bin\cygpanel-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygpanel-8.dll" v0.0 ts=2006/11/15 7:04
   19k 2003/08/09 C:\cygwin\bin\cygpanel7.dll - os=4.0 img=1.0 sys=4.0
                  "cygpanel7.dll" v0.0 ts=2003/8/9 10:24
  198k 2005/07/18 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=2005/7/18 12:26
  134k 2005/07/18 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=2005/7/18 12:28
   33k 2005/07/18 C:\cygwin\bin\cygpangowin32-1.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpangowin32-1.0-0.dll" v0.0 ts=2005/7/18 12:29
   36k 2005/07/18 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=2005/7/18 12:27
   22k 2005/07/18 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=2005/7/18 12:29
  150k 2008/04/25 C:\cygwin\bin\cygpcre-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpcre-0.dll" v0.0 ts=2008/4/25 1:30
  303k 2008/04/25 C:\cygwin\bin\cygpcrecpp-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpcrecpp-0.dll" v0.0 ts=2008/4/25 1:30
    7k 2008/04/25 C:\cygwin\bin\cygpcreposix-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpcreposix-0.dll" v0.0 ts=2008/4/25 1:30
  226k 2006/11/05 C:\cygwin\bin\cygpng12.dll - os=4.0 img=1.0 sys=4.0
                  "cygpng12.dll" v0.0 ts=2006/11/5 23:32
  170k 2002/01/21 C:\cygwin\bin\cygpng2.dll - os=4.0 img=1.0 sys=4.0
                  "cygpng2.dll" v0.0 ts=2002/1/21 1:05
   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 6:45
  155k 2008/01/04 C:\cygwin\bin\cygreadline6.dll - os=4.0 img=1.0 sys=4.0
                  "cygreadline6.dll" v0.0 ts=2008/1/4 3:31
  118k 2007/06/27 C:\cygwin\bin\cygssh2-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygssh2-1.dll" v0.0 ts=2007/6/27 6:56
  219k 2007/10/19 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=2007/10/19 12:45
  312k 2006/11/10 C:\cygwin\bin\cygtiff-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygtiff-5.dll" v0.0 ts=2006/11/10 8:09
  282k 2003/08/11 C:\cygwin\bin\cygtiff4.dll - os=4.0 img=1.0 sys=4.0
                  "cygtiff4.dll" v0.0 ts=2003/8/11 3:32
   22k 2008/02/24 C:\cygwin\bin\cygwrap-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygwrap-0.dll" v0.0 ts=2008/2/23 7:03
 1069k 2007/05/22 C:\cygwin\bin\cygxml2-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygxml2-2.dll" v0.0 ts=2007/5/22 7:49
   65k 2006/10/16 C:\cygwin\bin\cygz.dll - os=4.0 img=1.0 sys=4.0
                  "cygz.dll" v0.0 ts=2006/10/16 2:10
 1829k 2008/04/17 C:\cygwin\bin\cygwin1.dll - os=4.0 img=1.0 sys=4.0
                  "cygwin1.dll" v0.0 ts=2008/4/17 11:11
    Cygwin DLL version info:
        DLL version: 1.5.25
        DLL epoch: 19
        DLL bad signal mask: 19005
        DLL old termios: 5
        DLL malloc env: 28
        API major: 0
        API minor: 156
        Shared data: 4
        DLL identifier: cygwin1
        Mount registry: 2
        Cygnus registry name: Cygnus Solutions
        Cygwin registry name: Cygwin
        Program options name: Program Options
        Cygwin mount registry name: mounts v2
        Cygdrive flags: cygdrive flags
        Cygdrive prefix: cygdrive prefix
        Cygdrive default prefix: 
        Build date: Thu Apr 17 12:11:03 CEST 2008
        CVS tag: cr-0x5f1
        Shared id: cygwin1S4

   20k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygfontenc-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygfontenc-1.dll" v0.0 ts=2005/10/26 20:14
   34k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygFS-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygFS-6.dll" v0.0 ts=2005/10/26 18:52
  357k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygGL-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygGL-1.dll" v0.0 ts=2005/10/26 19:30
  441k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygGLU-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygGLU-1.dll" v0.0 ts=2005/10/26 19:48
   74k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygICE-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygICE-6.dll" v0.0 ts=2005/10/26 18:11
    8k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygoldX-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygoldX-6.dll" v0.0 ts=2005/10/26 18:09
 1662k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygOSMesa-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygOSMesa-4.dll" v0.0 ts=2005/10/26 19:32
   28k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygSM-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygSM-6.dll" v0.0 ts=2005/10/26 18:12
  884k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygX11-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygX11-6.dll" v0.0 ts=2005/10/26 18:07
    8k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygXau-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXau-6.dll" v0.0 ts=2005/10/26 17:31
  250k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygXaw-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXaw-6.dll" v0.0 ts=2005/10/26 18:33
  354k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygXaw-7.dll - os=4.0 img=1.0 sys=4.0
                  "cygXaw-7.dll" v0.0 ts=2005/10/26 18:39
  360k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygXaw-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygXaw-8.dll" v0.0 ts=2005/10/26 18:45
    7k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygXcomposite-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXcomposite-1.dll" v0.0 ts=2005/10/26 20:04
   30k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygXcursor-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXcursor-1.dll" v0.0 ts=2005/10/26 20:03
    8k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygXdamage-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXdamage-1.dll" v0.0 ts=2005/10/26 20:02
   16k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygXdmcp-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXdmcp-6.dll" v0.0 ts=2005/10/26 17:34
    7k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygXevie-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXevie-1.dll" v0.0 ts=2005/10/26 20:01
   50k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygXext-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXext-6.dll" v0.0 ts=2005/10/26 18:14
   15k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygXfixes-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygXfixes-3.dll" v0.0 ts=2005/10/26 20:02
   56k 2004/03/11 C:\cygwin\usr\X11R6\bin\cygXft-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXft-1.dll" v0.0 ts=2003/11/18 1:42
   63k 2008/04/10 C:\cygwin\usr\X11R6\bin\cygXft-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygXft-2.dll" v0.0 ts=2008/4/10 20:22
   26k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygXi-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXi-6.dll" v0.0 ts=2005/10/26 18:48
  121k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygxkbfile-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygxkbfile-1.dll" v0.0 ts=2005/10/26 18:54
   11k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygxkbui-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygxkbui-1.dll" v0.0 ts=2005/10/26 18:54
   74k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygXmu-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXmu-6.dll" v0.0 ts=2005/10/26 18:22
   10k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygXmuu-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXmuu-1.dll" v0.0 ts=2005/10/26 18:23
   26k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygXp-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXp-6.dll" v0.0 ts=2005/10/26 18:27
   54k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygXpm-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygXpm-4.dll" v0.0 ts=2005/10/26 18:26
   10k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygXrandr-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygXrandr-2.dll" v0.0 ts=2005/10/26 19:58
   30k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygXrender-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXrender-1.dll" v0.0 ts=2005/10/26 19:52
    7k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygXRes-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXRes-1.dll" v0.0 ts=2005/10/26 20:00
   38k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygxrx-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygxrx-6.dll" v0.0 ts=2005/10/26 21:13
   24k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygxrxnest-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygxrxnest-6.dll" v0.0 ts=2005/10/26 21:14
  283k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygXt-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXt-6.dll" v0.0 ts=2005/10/26 18:19
   27k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygXTrap-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXTrap-6.dll" v0.0 ts=2005/10/26 20:00
   17k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygXtst-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXtst-6.dll" v0.0 ts=2005/10/26 18:49

Service             : inetd
Display name        : Cygwin inetd
Current State       : Running
Controls Accepted   : Stop
Command             : /usr/sbin/inetd -D
stdin path          : /dev/null
stdout path         : /var/log/inetd.log
stderr path         : /var/log/inetd.log
Process Type        : Own Process
Startup             : Automatic
Account             : LocalSystem

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             : LocalSystem


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

Package              Version
_update-info-dir     00727-1
alternatives         1.3.30c-1
ash                  20040127-3
atk                  1.10.3-1
base-files           3.7-1
base-passwd          2.2-1
bash                 3.2.33-18
binutils             20060817-1
bzip2                1.0.5-2
checkx               0.2.0-2
coreutils            6.10-1
cron                 4.1-6
crypt                1.1-1
csih                 0.1.4-1
curl                 7.16.3-1
curl-devel           7.16.3-1
cygrunsrv            1.34-1
cygutils             1.3.2-1
cygwin               1.5.25-12
cygwin-doc           1.4-4
diffutils            2.8.7-1
editrights           1.01-2
expat                1.95.8-2
file                 4.21-1
findutils            4.4.0-1
fontconfig           2.4.1-5
freetype2            2.3.4-2
gawk                 3.1.6-1
gcc                  3.4.4-3
gcc-core             3.4.4-3
gcc-g++              3.4.4-3
gcc-mingw-core       20050522-1
gcc-mingw-g++        20050522-1
gettext              0.15-1
glib2                2.10.3-1
glib2-runtime        2.10.3-1
grep                 2.5.1a-4
groff                1.18.1-2
gtk2-x11             2.6.10-1
gtk2-x11-runtime     2.6.10-1
gvim                 7.1.002-1
gzip                 1.3.12-2
ImageMagick          6.4.0.6-1
inetutils            1.5-3
jpeg                 6b-12
less                 382-1
libbz2_1             1.0.5-2
libcharset1          1.11-1
libcurl4             7.16.3-1
libexpat0            1.95.8-2
libfontconfig-devel  2.4.1-5
libfontconfig1       2.4.1-5
libfpx1              1.2.0.13-1
libfreetype2-devel   2.3.4-2
libfreetype26        2.3.4-2
libiconv             1.11-1
libiconv2            1.11-1
libImageMagick1      6.4.0.6-1
libintl1             0.10.40-1
libintl2             0.12.1-3
libintl3             0.14.5-1
libintl8             0.15-1
libjasper1           1.900.1-1
libjbig2             1.6-1
libjpeg-devel        6b-12
libjpeg62            6b-12
liblcms1             1.17-1
libncurses7          5.3-4
libncurses8          5.5-3
libpcre0             7.6-2
libpng               1.2.12-1
libpng12             1.2.12-1
libpng12-devel       1.2.12-1
libpng2              1.0.12-1
libpopt0             1.6.4-4
libreadline6         5.2.12-10
libssh2-devel        0.15-1
libssh2_1            0.15-1
libtiff4             3.6.0-5
libtiff5             3.8.2-3
libwrap0             7.6-4
libXft               2.1.7-2
libXft-devel         2.1.7-2
libXft1              1.0.0-1
libXft2              2.1.7-2
libxml2              2.6.28-2
login                1.9-7
make                 3.81-2
man                  1.6e-1
mingw-runtime        3.14-1
minires              1.01-1
multitail            5.2.1-1
ncurses              5.5-3
openssh              5.0p1-1
openssl              0.9.8g-1
openssl-devel        0.9.8g-1
p7zip                4.57-1
pango                1.8.1-1
pango-runtime        1.8.1-1
pcre                 7.6-2
ping                 1.0-1
rebase               2.4.3-1
run                  1.1.10-1
rxvt-unicode-common  7.7-6
rxvt-unicode-X       7.7-6
sed                  4.1.5-2
sharutils            4.7-1
shutdown             1.7-1
tar                  1.20-1
termcap              20050421-1
terminfo             5.5_20061104-1
texinfo              4.8a-1
tzcode               2007h-2
unace                1.2b-1
unzip                5.52-2
vim                  7.1-1
w32api               3.11-1
wget                 1.10.2-2
which                2.19-1
whois                4.7.24-1
X-startup-scripts    1.0.11-1
xorg-x11-base        6.8.99.901-1
xorg-x11-bin         6.8.99.901-1
xorg-x11-bin-dlls    6.8.99.901-1
xorg-x11-bin-lndir   6.8.99.901-1
xorg-x11-devel       6.8.99.901-1
xorg-x11-etc         6.8.99.901-1
xorg-x11-fenc        6.8.99.901-1
xorg-x11-fnts        6.8.99.901-1
xorg-x11-fscl        6.8.99.901-1
xorg-x11-libs-data   6.8.99.901-1
xorg-x11-xwin        6.8.99.901-1
xterm                229-1
zip                  2.32-2
zlib                 1.2.3-2
Use -h to see help about each section

[-- Attachment #3: xp-ant2.txt --]
[-- Type: text/plain, Size: 57466 bytes --]


Cygwin Configuration Diagnostics
Current System Time: Mon Apr 28 08:44:08 2008

Windows XP Professional Ver 5.1 Build 2600 Service Pack 2

Path:	C:\Cygwin\home\ant\.bin
	R:\bin
	C:\Cygwin\usr\local\bin
	C:\Cygwin\bin
	C:\Cygwin\bin
	C:\Cygwin\usr\local\sbin
	C:\Cygwin\usr\sbin
	C:\Cygwin\sbin
	C:\Cygwin\usr\X11R6\bin
	C:\WINDOWS
	C:\WINDOWS\system32
	C:\WINDOWS\system32\Wbem
	C:\Program Files\AccuRev\bin\

Output from C:\Cygwin\bin\id.exe (nontsec)
UID: 11096(ant)          GID: 10513(Domain Users)
544(Administrators)      545(Users)               12919(AddWkstn2Domain)
11169(Dev)               10513(Domain Users)

Output from C:\Cygwin\bin\id.exe (ntsec)
UID: 11096(ant)          GID: 10513(Domain Users)
544(Administrators)      545(Users)               12919(AddWkstn2Domain)
11169(Dev)               10513(Domain Users)

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

LIBRARY_PATH = '/usr/local/lib:/usr/lib:/lib:/usr/local/libexec:/usr/libexec:/libexec:/usr/X11R6/lib'
USER = 'ant'
LD_LIBRARY_PATH = '/usr/local/lib:/usr/lib:/lib:/usr/local/libexec:/usr/libexec:/libexec:/usr/X11R6/lib'
C_INCLUDE_PATH = '/usr/local/include:/usr/include:/include'
PWD = '/mnt/desktop'
CYGWIN = 'ntsec tty notitle glob server'
HOME = '/home/ant'
MAKE_MODE = 'unix'

CPLUS_INCLUDE_PATH = '/usr/local/include:/usr/include:/include'
HOMEPATH = '\Documents and Settings\ant'
MANPATH = '/usr/local/man:/usr/man:/man:/usr/local/share/man:/usr/share/man:/share/man:/usr/ssl/man:/usr/X11R6/man'
APPDATA = 'C:\Documents and Settings\ant\Application Data'
TERM_PROGRAM = 'mrxvt'
HOSTNAME = 'xp-ant2'
TAB = '5472'
MRXVT_TABTITLE = 'xp-ant2 [/mnt/desktop]'
SHELL = '/usr/bin/bash'
TERM = 'rxvt'
PROCESSOR_IDENTIFIER = 'x86 Family 6 Model 15 Stepping 6, GenuineIntel'
OBJC_INCLUDE_PATH = '/usr/local/include:/usr/include:/include'
WINDIR = 'C:\WINDOWS'
MINIPWD = '/mnt/desktop'
WINDOWID = '8388613'
JAVA_LIB = '/opt/java/jdk/lib'
QTDIR = '/usr/lib/qt3'
OLDPWD = '/mnt'
MCX_SLAVE = 'C:\Program Files\Dimensions\8.0\prog\mcxrelay.exe'
USERDOMAIN = 'HOMEDOMAIN'
OS = 'Windows_NT'
ALLUSERSPROFILE = 'C:\Documents and Settings\All Users'
LC_ALL = 'C'
LS_FILTER_FILES = '^-.*\.XWinrc|^-.*\.Xresources|^-.*\....._history|^-.*\.cvspass|^-.*\.dir_colours|^-.*\.esd_auth|^-.*\.fonts.cache-1|^-.*\.history|^-.*\.hushlogin|^-.*\.netrc|^-.*\.nocolor|^-.*\.pinepwd|^-.*\.rnd|^-.*\.viminfo'
LS_COLORS = 'no=00:fi=00:di=01;36:ln=00;36:pi=00;35:so=00;35:do=00;35:bd=01;33:cd=01;33:or=07;36:su=00;37:sg=00;37:tw=00;33:ow=00;33:st=00;33:ex=00;31:*.cmd=00;31:*.exe=00;31:*.com=00;31:*.btm=00;31:*.bat=00;31:*.tar=01;31:*.tgz=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.gz=01;31:*.bz2=01;31:*.bz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.rar=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.jpg=01;35:*.jpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:'
TEMP = '/tmp'
COMMONPROGRAMFILES = 'C:\Program Files\Common Files'
CDLIST = '/home/ant/.cdhistory/xp-ant2.list'
TMDIR = '/tmp'
RSH = 'false'
USERNAME = 'ant'
PAGER = 'less'
COLUMNS = '173'
PROCESSOR_LEVEL = '6'
TILDEMODE = '1'
FP_NO_HOST_CHECK = 'NO'
TTY = '/dev/tty2'
SYSTEMDRIVE = 'C:'
__COMPAT_LAYER = 'DisableNXShowUI '
JAVA_HOME = '/opt/java/jdk'
EDITOR = 'vi'
LANG = 'C'
USERPROFILE = 'C:\Documents and Settings\ant'
CLIENTNAME = 'Console'
TERMID = 'mrxvt.tilde'
TZ = 'Europe/London'
QMAKESPEC = '/usr/lib/qt3/mkspecs/cygwin-g++'
LS_FILTER_DIRS = '^d.*\.ahk|^d.*\.bashcompletion|^d.*\.cdhistory|^d.*\.cpan*|^d.*\.gnupg|^d.*\.passwords|^d.*\.screensavers|^d.*\.ssh|^d.*\.subversion|^d.*\.terminfo'
INCLUDES = '/usr/local/include:/usr/include:/include'
MACHINE = 'adderley'
PS1 = '\[\e[00;33m\]\u\[\e[0m\]\[\e[00;36m\]@${HOSTNAME} (\[\e[0m\]\[\e[00;34m\]${MINIPWD}\[\e[0m\]\[\e[00;36m\])\[\e[0m\]\[\e[0m\] % '
LOGONSERVER = '\\HOMEDC'
CDHIST = '/.cdhistory'
LINES = '25'
PROCESSOR_ARCHITECTURE = 'x86'
!C: = 'C:\Documents and Settings\ant\My Documents\My Scripts\General Key Bindings'
RAMTMP = '/mnt/ramdisk/tmp'
LESSCHARSET = 'latin1'
SHLVL = '1'
CDHISTSIZE = '10'
TERMINFO = '/home/ant/.terminfo'
USERDNSDOMAIN = 'HOMEDOMAIN'
PATHEXT = '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH'
HOMEDRIVE = 'C:'
VIM_SERVER = 'xp-ant2'
PROMPT = '$P$G'
COMSPEC = 'C:\WINDOWS\system32\cmd.exe'
LESS = '-XFScfginqx3~'
TMP = '/tmp'
SYSTEMROOT = 'C:\WINDOWS'
VISUAL = 'vi'
PRINTER = 'Microsoft XPS Document Writer'
CVS_RSH = '/bin/ssh'
PROCESSOR_REVISION = '0f06'
PGDATA = '/var/postgresql/data'
LOCAL_BIN = '/home/ant/.bin:/mnt/ramdisk/bin'
PKG_CONFIG_PATH = '/usr/local/lib/pkgconfig:/usr/lib/pkgconfig:/lib/pkgconfig'
INFOPATH = '/usr/local/info:/usr/share/info:/usr/info:'
PROGRAMFILES = 'C:\Program Files'
SAMDIR = 'SINSTDIR'
DISPLAY = 'localhost:0.0'
NUMBER_OF_PROCESSORS = '2'
JAVA_EXEC = '/opt/java/jdk/bin/java'
SESSIONNAME = 'Console'
COMPUTERNAME = 'ANT-XP2'
COLORTERM = 'rxvt-xpm'
_ = '/usr/bin/cygcheck'

HKEY_CURRENT_USER\Software\Cygnus Solutions
HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin
HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin\mounts v2
HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin\Program Options
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2
  (default) = '/cygdrive'
  cygdrive flags = 0x00000022
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/
  (default) = 'C:\Cygwin'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/mnt/c-drive
  (default) = 'C:'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/mnt/desktop
  (default) = 'C:\Documents and Settings\ant\Desktop'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/mnt/docs
  (default) = 'C:\Documents and Settings\ant\My Documents'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/mnt/indiaconf2
  (default) = 'I:'
  flags = 0x0000010a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/mnt/programs
  (default) = 'C:\Program Files'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/mnt/ramdisk
  (default) = 'R:'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/mnt/windows
  (default) = 'C:\WINDOWS'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/usr/bin
  (default) = 'C:\Cygwin/bin'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/usr/lib
  (default) = 'C:\Cygwin/lib'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\Program Options

c:  hd  NTFS     61443Mb  65% CP CS UN PA FC     Local Disk
d:  cd             N/A    N/A                    
e:  cd             N/A    N/A                    
f:  hd  NTFS     35848Mb 100% CP CS UN PA        Data
i:  net NTFS     76308Mb  61% CP CS UN PA FC     
m:  hd  NTFS     51199Mb  65% CP CS UN PA FC     Other
r:  hd  NTFS        24Mb  15% CP CS UN PA FC     RamDisk

C:\Cygwin                                   /                system  binmode
C:                                          /mnt/c-drive     system  binmode
C:\Documents and Settings\ant\Desktop       /mnt/desktop     system  binmode
C:\Documents and Settings\ant\My Documents  /mnt/docs        system  binmode
I:                                          /mnt/backups     system  binmode,noexec
C:\Program Files                            /mnt/programs    system  binmode
R:                                          /mnt/ramdisk     system  binmode
C:\WINDOWS                                  /mnt/windows     system  binmode
C:\Cygwin/bin                               /usr/bin         system  binmode
C:\Cygwin/lib                               /usr/lib         system  binmode
.                                           /cygdrive        system  binmode,cygdrive

Found: C:\Cygwin\bin\awk.exe
Found: C:\Cygwin\bin\bash.exe
Found: C:\Cygwin\bin\cat.exe
Found: C:\Cygwin\bin\cp.exe
Found: C:\Cygwin\bin\cpp.exe
Found: C:\Cygwin\bin\crontab.exe
Found: C:\Cygwin\bin\find.exe
Found: C:\Cygwin\bin\gcc.exe
Found: C:\Cygwin\bin\gdb.exe
Found: C:\Cygwin\bin\grep.exe
Found: C:\Cygwin\bin\kill.exe
Found: C:\Cygwin\bin\ld.exe
Found: C:\Cygwin\bin\ls.exe
Found: C:\Cygwin\bin\make.exe
Found: C:\Cygwin\bin\mv.exe
Found: C:\Cygwin\bin\patch.exe
Found: C:\Cygwin\bin\perl.exe
Found: C:\Cygwin\bin\rm.exe
Found: C:\Cygwin\bin\sed.exe
Found: C:\Cygwin\bin\ssh.exe
Found: C:\Cygwin\bin\sh.exe
Found: C:\Cygwin\bin\tar.exe
Found: C:\Cygwin\bin\test.exe
Not Found: vi
Found: C:\Cygwin\bin\vim.exe

  103k 2007/09/16 C:\Cygwin\bin\cygapr-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygapr-1-0.dll" v0.0 ts=2007/9/16 19:04
   70k 2007/09/16 C:\Cygwin\bin\cygaprutil-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygaprutil-1-0.dll" v0.0 ts=2007/9/16 19:33
   87k 2006/02/16 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=2006/2/6 21:13
   34k 2007/07/29 C:\Cygwin\bin\cygbind9-30.dll - os=4.0 img=1.0 sys=4.0
                  "cygbind9-30.dll" v0.0 ts=2007/7/29 7:07
  351k 2007/01/03 C:\Cygwin\bin\cygboost_date_time-gcc-mt-1_33_1.dll - os=4.0 img=1.33 sys=4.0
                  "cygboost_date_time-gcc-mt-1_33_1.dll" v0.0 ts=2007/1/3 21:46
  120k 2007/01/03 C:\Cygwin\bin\cygboost_filesystem-gcc-mt-1_33_1.dll - os=4.0 img=1.33 sys=4.0
                  "cygboost_filesystem-gcc-mt-1_33_1.dll" v0.0 ts=2007/1/3 21:47
   79k 2007/01/03 C:\Cygwin\bin\cygboost_iostreams-gcc-mt-1_33_1.dll - os=4.0 img=1.33 sys=4.0
                  "cygboost_iostreams-gcc-mt-1_33_1.dll" v0.0 ts=2007/1/3 21:48
  526k 2007/01/03 C:\Cygwin\bin\cygboost_program_options-gcc-mt-1_33_1.dll - os=4.0 img=1.33 sys=4.0
                  "cygboost_program_options-gcc-mt-1_33_1.dll" v0.0 ts=2007/1/3 21:52
  563k 2007/01/03 C:\Cygwin\bin\cygboost_python-gcc-mt-1_33_1.dll - os=4.0 img=1.33 sys=4.0
                  "cygboost_python-gcc-mt-1_33_1.dll" v0.0 ts=2007/1/3 21:56
  678k 2007/01/03 C:\Cygwin\bin\cygboost_regex-gcc-mt-1_33_1.dll - os=4.0 img=1.33 sys=4.0
                  "cygboost_regex-gcc-mt-1_33_1.dll" v0.0 ts=2007/1/3 22:02
  621k 2007/01/03 C:\Cygwin\bin\cygboost_serialization-gcc-mt-1_33_1.dll - os=4.0 img=1.33 sys=4.0
                  "cygboost_serialization-gcc-mt-1_33_1.dll" v0.0 ts=2007/1/3 22:14
  118k 2007/01/03 C:\Cygwin\bin\cygboost_signals-gcc-mt-1_33_1.dll - os=4.0 img=1.33 sys=4.0
                  "cygboost_signals-gcc-mt-1_33_1.dll" v0.0 ts=2007/1/3 22:15
   91k 2007/01/03 C:\Cygwin\bin\cygboost_thread-gcc-mt-1_33_1.dll - os=4.0 img=1.33 sys=4.0
                  "cygboost_thread-gcc-mt-1_33_1.dll" v0.0 ts=2007/1/3 22:16
   61k 2006/11/10 C:\Cygwin\bin\cygbz2-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygbz2-1.dll" v0.0 ts=2006/11/10 23:42
    7k 2006/10/22 C:\Cygwin\bin\cygcharset-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygcharset-1.dll" v0.0 ts=2006/10/23 0:43
  657k 2007/10/25 C:\Cygwin\bin\cygcppunit-1-12-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygcppunit-1-12-0.dll" v0.0 ts=2007/10/25 18:27
    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 8:57
 1125k 2006/10/04 C:\Cygwin\bin\cygcrypto-0.9.7.dll - os=4.0 img=1.0 sys=4.0
                  "cygcrypto-0.9.7.dll" v0.0 ts=2006/10/4 13:12
 1059k 2007/10/19 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=2007/10/19 12:45
  194k 2007/06/30 C:\Cygwin\bin\cygcurl-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygcurl-3.dll" v0.0 ts=2007/6/30 2:13
  221k 2007/06/30 C:\Cygwin\bin\cygcurl-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygcurl-4.dll" v0.0 ts=2007/6/30 1:54
  831k 2003/09/20 C:\Cygwin\bin\cygdb-4.1.dll - os=4.0 img=1.0 sys=4.0
                  "cygdb-4.1.dll" v0.0 ts=2003/9/20 22:51
  895k 2004/04/28 C:\Cygwin\bin\cygdb-4.2.dll - os=4.0 img=1.0 sys=4.0
                  "cygdb-4.2.dll" v0.0 ts=2004/4/27 16:31
  965k 2005/05/14 C:\Cygwin\bin\cygdb-4.3.dll - os=4.0 img=1.0 sys=4.0
                  "cygdb-4.3.dll" v0.0 ts=2005/5/14 13:37
 1080k 2003/09/20 C:\Cygwin\bin\cygdb_cxx-4.1.dll - os=4.0 img=1.0 sys=4.0
                  "cygdb_cxx-4.1.dll" v0.0 ts=2003/9/20 22:53
 1156k 2004/04/28 C:\Cygwin\bin\cygdb_cxx-4.2.dll - os=4.0 img=1.0 sys=4.0
                  "cygdb_cxx-4.2.dll" v0.0 ts=2004/4/27 16:35
 1240k 2005/05/14 C:\Cygwin\bin\cygdb_cxx-4.3.dll - os=4.0 img=1.0 sys=4.0
                  "cygdb_cxx-4.3.dll" v0.0 ts=2005/5/14 13:41
 1381k 2007/07/29 C:\Cygwin\bin\cygdns-32.dll - os=4.0 img=1.0 sys=4.0
                  "cygdns-32.dll" v0.0 ts=2007/7/29 7:06
   48k 2006/06/06 C:\Cygwin\bin\cygecpg.dll - os=4.0 img=1.0 sys=4.0
                  "cygecpg.dll" v0.0 ts=2006/6/6 7:36
   58k 2006/07/14 C:\Cygwin\bin\cygedsio-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygedsio-0.dll" v0.0 ts=2006/7/14 14:47
  143k 2007/06/18 C:\Cygwin\bin\cygexif-12.dll - os=4.0 img=1.0 sys=4.0
                  "cygexif-12.dll" v0.0 ts=2007/6/18 4:42
  118k 2007/04/06 C:\Cygwin\bin\cygexpat-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygexpat-0.dll" v0.0 ts=2007/4/6 21:43
  286k 2006/08/06 C:\Cygwin\bin\cygfcgi++-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygfcgi++-0.dll" v0.0 ts=2006/8/6 21:09
   30k 2006/08/06 C:\Cygwin\bin\cygfcgi-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygfcgi-0.dll" v0.0 ts=2006/8/6 21:09
  520k 2007/01/31 C:\Cygwin\bin\cygfltknox-1.1.dll - os=4.0 img=1.0 sys=4.0
                  "cygfltknox-1.1.dll" v0.0 ts=2007/1/31 20:22
   34k 2007/01/31 C:\Cygwin\bin\cygfltknox_forms-1.1.dll - os=4.0 img=1.0 sys=4.0
                  "cygfltknox_forms-1.1.dll" v0.0 ts=2007/1/31 20:22
   41k 2007/01/31 C:\Cygwin\bin\cygfltknox_gl-1.1.dll - os=4.0 img=1.0 sys=4.0
                  "cygfltknox_gl-1.1.dll" v0.0 ts=2007/1/31 20:22
   70k 2007/01/31 C:\Cygwin\bin\cygfltknox_images-1.1.dll - os=4.0 img=1.0 sys=4.0
                  "cygfltknox_images-1.1.dll" v0.0 ts=2007/1/31 20:22
  161k 2007/03/28 C:\Cygwin\bin\cygfontconfig-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygfontconfig-1.dll" v0.0 ts=2007/3/28 11:16
   40k 2006/11/15 C:\Cygwin\bin\cygform-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygform-8.dll" v0.0 ts=2006/11/15 7:06
   45k 2001/04/25 C:\Cygwin\bin\cygform5.dll - os=4.0 img=1.0 sys=4.0
                  "cygform5.dll" v0.0 ts=2001/4/25 6:28
   35k 2002/01/09 C:\Cygwin\bin\cygform6.dll - os=4.0 img=1.0 sys=4.0
                  "cygform6.dll" v0.0 ts=2002/1/9 6:03
   48k 2003/08/09 C:\Cygwin\bin\cygform7.dll - os=4.0 img=1.0 sys=4.0
                  "cygform7.dll" v0.0 ts=2003/8/9 10:25
  462k 2007/05/31 C:\Cygwin\bin\cygfreetype-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygfreetype-6.dll" v0.0 ts=2007/5/31 4:34
  323k 2005/07/10 C:\Cygwin\bin\cyggcrypt-11.dll - os=4.0 img=1.0 sys=4.0
                  "cyggcrypt-11.dll" v0.0 ts=2005/7/10 1:10
   28k 2003/07/20 C:\Cygwin\bin\cyggdbm-3.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdbm-3.dll" v0.0 ts=2003/7/20 8:58
   19k 2006/11/19 C:\Cygwin\bin\cyggdbm-4.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdbm-4.dll" v0.0 ts=2006/11/19 8:18
   19k 2003/03/22 C:\Cygwin\bin\cyggdbm.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdbm.dll" v0.0 ts=2002/2/20 3:05
   15k 2003/07/20 C:\Cygwin\bin\cyggdbm_compat-3.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdbm_compat-3.dll" v0.0 ts=2003/7/20 9:00
    8k 2006/11/19 C:\Cygwin\bin\cyggdbm_compat-4.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdbm_compat-4.dll" v0.0 ts=2006/11/19 8:18
  195k 2004/09/02 C:\Cygwin\bin\cyggdk-1-2-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdk-1-2-0.dll" v0.0 ts=2004/9/2 19:31
  451k 2005/12/27 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=2005/12/26 11:20
  128k 2005/08/02 C:\Cygwin\bin\cyggdk_imlib-1.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdk_imlib-1.dll" v0.0 ts=2005/8/2 1:36
   77k 2005/12/27 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=2005/12/26 11:11
   54k 2005/12/27 C:\Cygwin\bin\cyggdk_pixbuf_xlib-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdk_pixbuf_xlib-2.0-0.dll" v0.0 ts=2005/12/26 12:03
   94k 2006/10/23 C:\Cygwin\bin\cyggettextlib-0-15.dll - os=4.0 img=1.0 sys=4.0
                  "cyggettextlib-0-15.dll" v0.0 ts=2006/10/23 1:14
   14k 2006/10/23 C:\Cygwin\bin\cyggettextpo-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggettextpo-0.dll" v0.0 ts=2006/10/23 1:17
  182k 2006/10/23 C:\Cygwin\bin\cyggettextsrc-0-15.dll - os=4.0 img=1.0 sys=4.0
                  "cyggettextsrc-0-15.dll" v0.0 ts=2006/10/23 1:17
  135k 2005/03/16 C:\Cygwin\bin\cygglib-1-2-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygglib-1-2-0.dll" v0.0 ts=2005/3/16 2:16
  515k 2006/06/06 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=2006/6/5 23:32
   12k 2005/03/16 C:\Cygwin\bin\cyggmodule-1-2-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggmodule-1-2-0.dll" v0.0 ts=2005/3/16 2:18
   10k 2006/06/06 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=2006/6/5 23:36
  219k 2006/11/04 C:\Cygwin\bin\cyggmp-3.dll - os=4.0 img=1.0 sys=4.0
                  "cyggmp-3.dll" v0.0 ts=2006/11/4 13:54
  287k 2006/11/04 C:\Cygwin\bin\cyggmpxx-3.dll - os=4.0 img=1.0 sys=4.0
                  "cyggmpxx-3.dll" v0.0 ts=2006/11/4 13:54
  382k 2005/08/21 C:\Cygwin\bin\cyggnutls-11.dll - os=4.0 img=1.0 sys=4.0
                  "cyggnutls-11.dll" v0.0 ts=2005/8/21 12:40
   71k 2005/08/21 C:\Cygwin\bin\cyggnutls-extra-11.dll - os=4.0 img=1.0 sys=4.0
                  "cyggnutls-extra-11.dll" v0.0 ts=2005/8/21 12:42
   21k 2005/08/21 C:\Cygwin\bin\cyggnutls-openssl-11.dll - os=4.0 img=1.0 sys=4.0
                  "cyggnutls-openssl-11.dll" v0.0 ts=2005/8/21 12:42
  222k 2006/06/06 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=2006/6/5 23:35
   12k 2005/07/09 C:\Cygwin\bin\cyggpg-error-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggpg-error-0.dll" v0.0 ts=2005/7/9 23:34
  351k 2004/07/17 C:\Cygwin\bin\cygGraphicsMagick++-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygGraphicsMagick++-0.dll" v0.0 ts=2004/7/17 9:48
 2170k 2004/07/17 C:\Cygwin\bin\cygGraphicsMagick-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygGraphicsMagick-0.dll" v0.0 ts=2004/7/17 9:46
   10k 2005/03/16 C:\Cygwin\bin\cyggthread-1-2-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggthread-1-2-0.dll" v0.0 ts=2005/3/16 2:18
   14k 2006/06/06 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=2006/6/5 23:36
 1293k 2004/09/02 C:\Cygwin\bin\cyggtk-1-2-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggtk-1-2-0.dll" v0.0 ts=2004/9/2 19:44
 2764k 2005/12/27 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=2005/12/26 11:43
  528k 2005/10/09 C:\Cygwin\bin\cygguile-12.dll - os=4.0 img=1.0 sys=4.0
                  "cygguile-12.dll" v0.0 ts=2005/10/9 14:25
  675k 2007/08/27 C:\Cygwin\bin\cygguile-17.dll - os=4.0 img=1.0 sys=4.0
                  "cygguile-17.dll" v0.0 ts=2007/8/27 8:14
   18k 2005/10/09 C:\Cygwin\bin\cygguile-ltdl-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygguile-ltdl-1.dll" v0.0 ts=2005/10/9 14:24
   23k 2007/08/27 C:\Cygwin\bin\cygguile-srfi-srfi-1-v-3-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygguile-srfi-srfi-1-v-3-3.dll" v0.0 ts=2007/8/27 8:14
   68k 2005/10/09 C:\Cygwin\bin\cygguile-srfi-srfi-13-14-v-1-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygguile-srfi-srfi-13-14-v-1-1.dll" v0.0 ts=2005/10/9 14:25
    4k 2007/08/27 C:\Cygwin\bin\cygguile-srfi-srfi-13-14-v-3-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygguile-srfi-srfi-13-14-v-3-3.dll" v0.0 ts=2007/8/27 8:14
   31k 2005/10/09 C:\Cygwin\bin\cygguile-srfi-srfi-4-v-1-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygguile-srfi-srfi-4-v-1-1.dll" v0.0 ts=2005/10/9 14:25
    4k 2007/08/27 C:\Cygwin\bin\cygguile-srfi-srfi-4-v-3-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygguile-srfi-srfi-4-v-3-3.dll" v0.0 ts=2007/8/27 8:14
    8k 2007/08/27 C:\Cygwin\bin\cygguile-srfi-srfi-60-v-2-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygguile-srfi-srfi-60-v-2-2.dll" v0.0 ts=2007/8/27 8:14
   12k 2005/10/09 C:\Cygwin\bin\cygguilereadline-v-12-12.dll - os=4.0 img=1.0 sys=4.0
                  "cygguilereadline-v-12-12.dll" v0.0 ts=2005/10/9 14:25
   11k 2007/08/27 C:\Cygwin\bin\cygguilereadline-v-17-17.dll - os=4.0 img=1.0 sys=4.0
                  "cygguilereadline-v-17-17.dll" v0.0 ts=2007/8/27 8:14
   17k 2001/06/28 C:\Cygwin\bin\cyghistory4.dll - os=4.0 img=1.0 sys=4.0
                  "cyghistory4.dll" v0.0 ts=2001/1/7 4:34
   29k 2003/08/10 C:\Cygwin\bin\cyghistory5.dll - os=4.0 img=1.0 sys=4.0
                  "cyghistory5.dll" v0.0 ts=2003/8/11 0:16
   25k 2007/08/23 C:\Cygwin\bin\cyghistory6.dll - os=4.0 img=1.0 sys=4.0
                  "cyghistory6.dll" v0.0 ts=2007/8/23 23:01
  337k 2007/09/16 C:\Cygwin\bin\cyghttpd2core.dll - os=4.0 img=1.0 sys=4.0
                  "cyghttpd2core.dll" v0.0 ts=2007/9/16 21:58
  271k 2007/08/24 C:\Cygwin\bin\cygicons-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygicons-0.dll" v0.0 ts=2007/8/24 8:24
  976k 2006/10/22 C:\Cygwin\bin\cygiconv-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygiconv-2.dll" v0.0 ts=2006/10/23 0:44
  155k 2005/08/02 C:\Cygwin\bin\cygImlib-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygImlib-1.dll" v0.0 ts=2005/8/2 1:37
    9k 2005/08/02 C:\Cygwin\bin\cygimlib-bmp.dll - os=4.0 img=1.0 sys=4.0
                  "cygimlib-bmp.dll" v0.0 ts=2005/8/2 1:38
    6k 2005/08/02 C:\Cygwin\bin\cygimlib-gif.dll - os=4.0 img=1.0 sys=4.0
                  "cygimlib-gif.dll" v0.0 ts=2005/8/2 1:38
    7k 2005/08/02 C:\Cygwin\bin\cygimlib-jpeg.dll - os=4.0 img=1.0 sys=4.0
                  "cygimlib-jpeg.dll" v0.0 ts=2005/8/2 1:38
   11k 2005/08/02 C:\Cygwin\bin\cygimlib-png.dll - os=4.0 img=1.0 sys=4.0
                  "cygimlib-png.dll" v0.0 ts=2005/8/2 1:39
    8k 2005/08/02 C:\Cygwin\bin\cygimlib-ppm.dll - os=4.0 img=1.0 sys=4.0
                  "cygimlib-ppm.dll" v0.0 ts=2005/8/2 1:38
    7k 2005/08/02 C:\Cygwin\bin\cygimlib-ps.dll - os=4.0 img=1.0 sys=4.0
                  "cygimlib-ps.dll" v0.0 ts=2005/8/2 1:38
    6k 2005/08/02 C:\Cygwin\bin\cygimlib-tiff.dll - os=4.0 img=1.0 sys=4.0
                  "cygimlib-tiff.dll" v0.0 ts=2005/8/2 1:39
   10k 2005/08/02 C:\Cygwin\bin\cygimlib-xpm.dll - os=4.0 img=1.0 sys=4.0
                  "cygimlib-xpm.dll" v0.0 ts=2005/8/2 1:38
   22k 2001/12/13 C:\Cygwin\bin\cygintl-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygintl-1.dll" v0.0 ts=2001/12/13 9:28
   37k 2003/08/10 C:\Cygwin\bin\cygintl-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygintl-2.dll" v0.0 ts=2003/8/10 22:50
   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/20 2:04
   31k 2006/10/23 C:\Cygwin\bin\cygintl-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygintl-8.dll" v0.0 ts=2006/10/23 1:12
   21k 2001/06/20 C:\Cygwin\bin\cygintl.dll - os=4.0 img=1.0 sys=4.0
                  "cygintl.dll" v0.0 ts=2001/6/20 18:09
   12k 2003/02/17 C:\Cygwin\bin\cygioperm-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygioperm-0.dll" v0.0 ts=2003/2/17 19:58
  244k 2007/07/29 C:\Cygwin\bin\cygisc-32.dll - os=4.0 img=1.0 sys=4.0
                  "cygisc-32.dll" v0.0 ts=2007/7/29 7:00
   55k 2007/07/29 C:\Cygwin\bin\cygisccfg-30.dll - os=4.0 img=1.0 sys=4.0
                  "cygisccfg-30.dll" v0.0 ts=2007/7/29 7:06
  241k 2004/08/06 C:\Cygwin\bin\cygjasper-1-701-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygjasper-1-701-1.dll" v0.0 ts=2004/8/6 16:17
   48k 2006/11/17 C:\Cygwin\bin\cygjbig-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygjbig-2.dll" v0.0 ts=2006/11/17 7:43
   48k 2003/08/10 C:\Cygwin\bin\cygjbig1.dll - os=4.0 img=1.0 sys=4.0
                  "cygjbig1.dll" v0.0 ts=2003/8/11 0:58
  124k 2006/11/09 C:\Cygwin\bin\cygjpeg-62.dll - os=4.0 img=1.0 sys=4.0
                  "cygjpeg-62.dll" v0.0 ts=2006/11/9 9:02
  149k 2007/03/12 C:\Cygwin\bin\cygjvm-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygjvm-0.dll" v0.0 ts=2007/3/12 7:05
   60k 2004/09/27 C:\Cygwin\bin\cygkpathsea-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygkpathsea-3.dll" v0.0 ts=2004/9/27 18:32
   65k 2005/05/05 C:\Cygwin\bin\cygkpathsea-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygkpathsea-4.dll" v0.0 ts=2005/5/5 15:33
  156k 2005/08/08 C:\Cygwin\bin\cyglcms-1.dll - os=4.0 img=1.0 sys=4.0
                  "cyglcms-1.dll" v0.0 ts=2005/8/8 11:15
   24k 2006/12/15 C:\Cygwin\bin\cygltdl-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygltdl-3.dll" v0.0 ts=2006/12/15 3:29
   83k 2007/06/06 C:\Cygwin\bin\cygmagic-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygmagic-1.dll" v0.0 ts=2007/6/6 11:41
  391k 2006/11/05 C:\Cygwin\bin\cygMagick++-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygMagick++-10.dll" v0.0 ts=2006/11/5 14:43
 1709k 2006/11/05 C:\Cygwin\bin\cygMagick-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygMagick-10.dll" v0.0 ts=2006/11/5 14:32
   21k 2006/11/15 C:\Cygwin\bin\cygmenu-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygmenu-8.dll" v0.0 ts=2006/11/15 7:05
   26k 2001/04/25 C:\Cygwin\bin\cygmenu5.dll - os=4.0 img=1.0 sys=4.0
                  "cygmenu5.dll" v0.0 ts=2001/4/25 6:27
   20k 2002/01/09 C:\Cygwin\bin\cygmenu6.dll - os=4.0 img=1.0 sys=4.0
                  "cygmenu6.dll" v0.0 ts=2002/1/9 6:03
   29k 2003/08/09 C:\Cygwin\bin\cygmenu7.dll - os=4.0 img=1.0 sys=4.0
                  "cygmenu7.dll" v0.0 ts=2003/8/9 10:25
   20k 2006/12/21 C:\Cygwin\bin\cygminires.dll - os=4.0 img=1.1 sys=4.0
                  "cygminires.dll" v0.0 ts=2006/12/21 5:07
  121k 2006/11/04 C:\Cygwin\bin\cygmp-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygmp-3.dll" v0.0 ts=2006/11/4 13:52
   67k 2006/11/15 C:\Cygwin\bin\cygncurses++-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses++-8.dll" v0.0 ts=2006/11/15 7:13
  156k 2001/04/25 C:\Cygwin\bin\cygncurses++5.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses++5.dll" v0.0 ts=2001/4/25 6:29
  175k 2002/01/09 C:\Cygwin\bin\cygncurses++6.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses++6.dll" v0.0 ts=2002/1/9 6:03
  237k 2006/11/15 C:\Cygwin\bin\cygncurses-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses-8.dll" v0.0 ts=2006/11/15 7:02
  226k 2001/04/25 C:\Cygwin\bin\cygncurses5.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses5.dll" v0.0 ts=2001/4/25 6:17
  202k 2002/01/09 C:\Cygwin\bin\cygncurses6.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses6.dll" v0.0 ts=2002/1/9 6:03
  224k 2003/08/09 C:\Cygwin\bin\cygncurses7.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses7.dll" v0.0 ts=2003/8/9 10:24
   90k 2006/01/25 C:\Cygwin\bin\cygneon-25.dll - os=4.0 img=1.0 sys=4.0
                  "cygneon-25.dll" v0.0 ts=2006/1/25 11:02
   97k 2007/09/16 C:\Cygwin\bin\cygneon-26.dll - os=4.0 img=1.0 sys=4.0
                  "cygneon-26.dll" v0.0 ts=2007/9/16 18:41
   15k 2007/07/29 C:\Cygwin\bin\cygogg-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygogg-0.dll" v0.0 ts=2007/7/29 19:55
   49k 2004/08/02 C:\Cygwin\bin\cygogrove-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygogrove-0.dll" v0.0 ts=2004/8/2 16:41
  131k 2005/08/21 C:\Cygwin\bin\cygopencdk-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygopencdk-8.dll" v0.0 ts=2005/8/21 16:35
 1706k 2004/08/02 C:\Cygwin\bin\cygosp-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygosp-4.dll" v0.0 ts=2004/8/2 15:51
  326k 2004/08/02 C:\Cygwin\bin\cygospgrove-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygospgrove-0.dll" v0.0 ts=2004/8/2 17:07
 1922k 2004/08/02 C:\Cygwin\bin\cygostyle-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygostyle-0.dll" v0.0 ts=2004/8/2 17:07
   12k 2006/11/15 C:\Cygwin\bin\cygpanel-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygpanel-8.dll" v0.0 ts=2006/11/15 7:04
   15k 2001/04/25 C:\Cygwin\bin\cygpanel5.dll - os=4.0 img=1.0 sys=4.0
                  "cygpanel5.dll" v0.0 ts=2001/4/25 6:27
   12k 2002/01/09 C:\Cygwin\bin\cygpanel6.dll - os=4.0 img=1.0 sys=4.0
                  "cygpanel6.dll" v0.0 ts=2002/1/9 6:03
   19k 2003/08/09 C:\Cygwin\bin\cygpanel7.dll - os=4.0 img=1.0 sys=4.0
                  "cygpanel7.dll" v0.0 ts=2003/8/9 10:24
  198k 2005/07/18 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=2005/7/18 12:26
  134k 2005/07/18 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=2005/7/18 12:28
   33k 2005/07/18 C:\Cygwin\bin\cygpangowin32-1.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpangowin32-1.0-0.dll" v0.0 ts=2005/7/18 12:29
   36k 2005/07/18 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=2005/7/18 12:27
   22k 2005/07/18 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=2005/7/18 12:29
  133k 2007/06/27 C:\Cygwin\bin\cygpcre-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpcre-0.dll" v0.0 ts=2007/6/27 4:49
  303k 2007/06/27 C:\Cygwin\bin\cygpcrecpp-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpcrecpp-0.dll" v0.0 ts=2007/6/27 4:50
    7k 2007/06/27 C:\Cygwin\bin\cygpcreposix-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpcreposix-0.dll" v0.0 ts=2007/6/27 4:50
 1224k 2007/07/19 C:\Cygwin\bin\cygperl5_8.dll - os=4.0 img=1.0 sys=4.0
                  "cygperl5_8.dll" v0.0 ts=2007/7/8 20:14
   52k 2006/06/06 C:\Cygwin\bin\cygpgtypes.dll - os=4.0 img=1.0 sys=4.0
                  "cygpgtypes.dll" v0.0 ts=2006/6/6 7:36
  226k 2006/11/05 C:\Cygwin\bin\cygpng12.dll - os=4.0 img=1.0 sys=4.0
                  "cygpng12.dll" v0.0 ts=2006/11/5 23:32
   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 6:45
   94k 2006/02/17 C:\Cygwin\bin\cygpq.dll - os=4.0 img=1.0 sys=4.0
                  "cygpq.dll" v0.0 ts=2006/2/17 7:21
 6018k 2005/08/11 C:\Cygwin\bin\cygqt-mt-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygqt-mt-3.dll" v0.0 ts=2005/8/11 23:06
  202k 2005/08/11 C:\Cygwin\bin\cygqui-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygqui-1.dll" v0.0 ts=2005/8/11 23:13
  108k 2001/06/28 C:\Cygwin\bin\cygreadline4.dll - os=4.0 img=1.0 sys=4.0
                  "cygreadline4.dll" v0.0 ts=2001/1/7 4:34
  148k 2003/08/10 C:\Cygwin\bin\cygreadline5.dll - os=4.0 img=1.0 sys=4.0
                  "cygreadline5.dll" v0.0 ts=2003/8/11 0:16
  154k 2007/08/23 C:\Cygwin\bin\cygreadline6.dll - os=4.0 img=1.0 sys=4.0
                  "cygreadline6.dll" v0.0 ts=2007/8/23 23:01
  718k 2007/05/30 C:\Cygwin\bin\cygruby18.dll - os=4.0 img=1.0 sys=4.0
                  "cygruby18.dll" v0.0 ts=2007/5/30 9:38
  380k 2003/12/13 C:\Cygwin\bin\cygsmi-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygsmi-2.dll" v0.0 ts=2003/12/13 0:57
  118k 2007/06/27 C:\Cygwin\bin\cygssh2-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygssh2-1.dll" v0.0 ts=2007/6/27 6:56
  231k 2006/10/04 C:\Cygwin\bin\cygssl-0.9.7.dll - os=4.0 img=1.0 sys=4.0
                  "cygssl-0.9.7.dll" v0.0 ts=2006/10/4 13:12
  219k 2007/10/19 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=2007/10/19 12:45
    5k 2007/02/21 C:\Cygwin\bin\cygstunnel.dll - os=4.0 img=1.0 sys=4.0
                  "cygstunnel.dll" v0.0 ts=2007/2/21 17:27
  140k 2007/09/19 C:\Cygwin\bin\cygsvn_client-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygsvn_client-1-0.dll" v0.0 ts=2007/9/19 23:15
   32k 2007/09/19 C:\Cygwin\bin\cygsvn_delta-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygsvn_delta-1-0.dll" v0.0 ts=2007/9/19 23:11
   26k 2007/09/19 C:\Cygwin\bin\cygsvn_diff-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygsvn_diff-1-0.dll" v0.0 ts=2007/9/19 23:14
   14k 2007/09/19 C:\Cygwin\bin\cygsvn_fs-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygsvn_fs-1-0.dll" v0.0 ts=2007/9/19 23:12
  128k 2007/09/19 C:\Cygwin\bin\cygsvn_fs_base-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygsvn_fs_base-1-0.dll" v0.0 ts=2007/9/19 23:12
   87k 2007/09/19 C:\Cygwin\bin\cygsvn_fs_fs-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygsvn_fs_fs-1-0.dll" v0.0 ts=2007/9/19 23:11
   11k 2007/09/19 C:\Cygwin\bin\cygsvn_ra-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygsvn_ra-1-0.dll" v0.0 ts=2007/9/19 23:15
   93k 2007/09/19 C:\Cygwin\bin\cygsvn_ra_dav-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygsvn_ra_dav-1-0.dll" v0.0 ts=2007/9/19 23:14
   20k 2007/09/19 C:\Cygwin\bin\cygsvn_ra_local-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygsvn_ra_local-1-0.dll" v0.0 ts=2007/9/19 23:12
   61k 2007/09/19 C:\Cygwin\bin\cygsvn_ra_svn-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygsvn_ra_svn-1-0.dll" v0.0 ts=2007/9/19 23:13
  110k 2007/09/19 C:\Cygwin\bin\cygsvn_repos-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygsvn_repos-1-0.dll" v0.0 ts=2007/9/19 23:12
  159k 2007/09/19 C:\Cygwin\bin\cygsvn_subr-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygsvn_subr-1-0.dll" v0.0 ts=2007/9/19 23:11
   28k 2007/09/19 C:\Cygwin\bin\cygsvn_swig_perl-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygsvn_swig_perl-1-0.dll" v0.0 ts=2007/9/19 23:19
   30k 2007/09/19 C:\Cygwin\bin\cygsvn_swig_py-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygsvn_swig_py-1-0.dll" v0.0 ts=2007/9/19 23:17
   41k 2007/09/19 C:\Cygwin\bin\cygsvn_swig_ruby-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygsvn_swig_ruby-1-0.dll" v0.0 ts=2007/9/19 23:21
  175k 2007/09/19 C:\Cygwin\bin\cygsvn_wc-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygsvn_wc-1-0.dll" v0.0 ts=2007/9/19 23:14
   65k 2005/08/21 C:\Cygwin\bin\cygtasn1-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygtasn1-2.dll" v0.0 ts=2005/8/21 15:20
  312k 2006/11/10 C:\Cygwin\bin\cygtiff-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygtiff-5.dll" v0.0 ts=2006/11/10 8:09
  282k 2003/08/11 C:\Cygwin\bin\cygtiff4.dll - os=4.0 img=1.0 sys=4.0
                  "cygtiff4.dll" v0.0 ts=2003/8/11 3:32
   27k 2005/10/23 C:\Cygwin\bin\cygungif-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygungif-4.dll" v0.0 ts=2005/10/23 21:11
   41k 2007/03/31 C:\Cygwin\bin\cygusb0.dll - os=4.0 img=1.0 sys=4.0
                  "cygusb0.dll" v0.0 ts=2007/3/31 21:00
  150k 2007/07/30 C:\Cygwin\bin\cygvorbis-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygvorbis-0.dll" v0.0 ts=2007/7/30 17:25
  982k 2007/07/30 C:\Cygwin\bin\cygvorbisenc-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygvorbisenc-2.dll" v0.0 ts=2007/7/30 17:25
   25k 2007/07/30 C:\Cygwin\bin\cygvorbisfile-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygvorbisfile-3.dll" v0.0 ts=2007/7/30 17:25
  697k 2006/11/05 C:\Cygwin\bin\cygWand-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygWand-10.dll" v0.0 ts=2006/11/5 14:41
  314k 2005/08/10 C:\Cygwin\bin\cygwmf-0-2-7.dll - os=4.0 img=1.0 sys=4.0
                  "cygwmf-0-2-7.dll" v0.0 ts=2005/8/10 14:54
  150k 2005/08/10 C:\Cygwin\bin\cygwmflite-0-2-7.dll - os=4.0 img=1.0 sys=4.0
                  "cygwmflite-0-2-7.dll" v0.0 ts=2005/8/10 14:53
   35k 2006/07/14 C:\Cygwin\bin\cygxdelta-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygxdelta-2.dll" v0.0 ts=2006/7/14 14:48
 1069k 2007/05/22 C:\Cygwin\bin\cygxml2-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygxml2-2.dll" v0.0 ts=2007/5/22 7:49
   48k 2006/11/18 C:\Cygwin\bin\cygXpm-noX-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygXpm-noX-4.dll" v0.0 ts=2006/11/18 8:32
   65k 2006/10/16 C:\Cygwin\bin\cygz.dll - os=4.0 img=1.0 sys=4.0
                  "cygz.dll" v0.0 ts=2006/10/16 2:10
 1829k 2007/12/14 C:\Cygwin\bin\cygwin1.dll - os=4.0 img=1.0 sys=4.0
                  "cygwin1.dll" v0.0 ts=2007/12/14 18:22
    Cygwin DLL version info:
        DLL version: 1.5.25
        DLL epoch: 19
        DLL bad signal mask: 19005
        DLL old termios: 5
        DLL malloc env: 28
        API major: 0
        API minor: 156
        Shared data: 4
        DLL identifier: cygwin1
        Mount registry: 2
        Cygnus registry name: Cygnus Solutions
        Cygwin registry name: Cygwin
        Program options name: Program Options
        Cygwin mount registry name: mounts v2
        Cygdrive flags: cygdrive flags
        Cygdrive prefix: cygdrive prefix
        Cygdrive default prefix: 
        Build date: Fri Dec 14 19:21:07 CET 2007
        CVS tag: cr-0x5f1
        Shared id: cygwin1S4

   26k 2005/09/21 C:\Cygwin\usr\X11R6\bin\cygDtPrint-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygDtPrint-1.dll" v0.0 ts=2005/9/22 0:31
   20k 2005/10/27 C:\Cygwin\usr\X11R6\bin\cygfontenc-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygfontenc-1.dll" v0.0 ts=2005/10/26 20:14
  282k 2003/10/28 C:\Cygwin\usr\X11R6\bin\cygfreetype-9.dll - os=4.0 img=1.0 sys=4.0
                  "cygfreetype-9.dll" v0.0 ts=2003/10/18 7:44
   34k 2005/10/27 C:\Cygwin\usr\X11R6\bin\cygFS-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygFS-6.dll" v0.0 ts=2005/10/26 18:52
  357k 2005/10/27 C:\Cygwin\usr\X11R6\bin\cygGL-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygGL-1.dll" v0.0 ts=2005/10/26 19:30
  441k 2005/10/27 C:\Cygwin\usr\X11R6\bin\cygGLU-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygGLU-1.dll" v0.0 ts=2005/10/26 19:48
  140k 2004/08/06 C:\Cygwin\usr\X11R6\bin\cygglut-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygglut-3.dll" v0.0 ts=2004/8/6 15:43
   74k 2005/10/27 C:\Cygwin\usr\X11R6\bin\cygICE-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygICE-6.dll" v0.0 ts=2005/10/26 18:11
   74k 2005/09/21 C:\Cygwin\usr\X11R6\bin\cygMrm-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygMrm-2.dll" v0.0 ts=2005/9/22 0:30
    8k 2005/10/27 C:\Cygwin\usr\X11R6\bin\cygoldX-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygoldX-6.dll" v0.0 ts=2005/10/26 18:09
 1662k 2005/10/27 C:\Cygwin\usr\X11R6\bin\cygOSMesa-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygOSMesa-4.dll" v0.0 ts=2005/10/26 19:32
   28k 2005/10/27 C:\Cygwin\usr\X11R6\bin\cygSM-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygSM-6.dll" v0.0 ts=2005/10/26 18:12
   63k 2005/09/21 C:\Cygwin\usr\X11R6\bin\cygUil-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygUil-2.dll" v0.0 ts=2005/9/22 0:31
  884k 2005/10/27 C:\Cygwin\usr\X11R6\bin\cygX11-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygX11-6.dll" v0.0 ts=2005/10/26 18:07
    8k 2005/10/27 C:\Cygwin\usr\X11R6\bin\cygXau-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXau-6.dll" v0.0 ts=2005/10/26 17:31
  250k 2005/10/27 C:\Cygwin\usr\X11R6\bin\cygXaw-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXaw-6.dll" v0.0 ts=2005/10/26 18:33
  354k 2005/10/27 C:\Cygwin\usr\X11R6\bin\cygXaw-7.dll - os=4.0 img=1.0 sys=4.0
                  "cygXaw-7.dll" v0.0 ts=2005/10/26 18:39
  360k 2005/10/27 C:\Cygwin\usr\X11R6\bin\cygXaw-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygXaw-8.dll" v0.0 ts=2005/10/26 18:45
    7k 2005/10/27 C:\Cygwin\usr\X11R6\bin\cygXcomposite-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXcomposite-1.dll" v0.0 ts=2005/10/26 20:04
   30k 2005/10/27 C:\Cygwin\usr\X11R6\bin\cygXcursor-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXcursor-1.dll" v0.0 ts=2005/10/26 20:03
    8k 2005/10/27 C:\Cygwin\usr\X11R6\bin\cygXdamage-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXdamage-1.dll" v0.0 ts=2005/10/26 20:02
   16k 2005/10/27 C:\Cygwin\usr\X11R6\bin\cygXdmcp-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXdmcp-6.dll" v0.0 ts=2005/10/26 17:34
    7k 2005/10/27 C:\Cygwin\usr\X11R6\bin\cygXevie-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXevie-1.dll" v0.0 ts=2005/10/26 20:01
   50k 2005/10/27 C:\Cygwin\usr\X11R6\bin\cygXext-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXext-6.dll" v0.0 ts=2005/10/26 18:14
   15k 2005/10/27 C:\Cygwin\usr\X11R6\bin\cygXfixes-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygXfixes-3.dll" v0.0 ts=2005/10/26 20:02
   56k 2004/03/11 C:\Cygwin\usr\X11R6\bin\cygXft-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXft-1.dll" v0.0 ts=2003/11/18 1:42
   63k 2004/03/23 C:\Cygwin\usr\X11R6\bin\cygXft-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygXft-2.dll" v0.0 ts=2004/3/23 22:20
   26k 2005/10/27 C:\Cygwin\usr\X11R6\bin\cygXi-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXi-6.dll" v0.0 ts=2005/10/26 18:48
  121k 2005/10/27 C:\Cygwin\usr\X11R6\bin\cygxkbfile-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygxkbfile-1.dll" v0.0 ts=2005/10/26 18:54
   11k 2005/10/27 C:\Cygwin\usr\X11R6\bin\cygxkbui-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygxkbui-1.dll" v0.0 ts=2005/10/26 18:54
 1185k 2005/09/21 C:\Cygwin\usr\X11R6\bin\cygXm-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygXm-2.dll" v0.0 ts=2005/9/22 0:27
   74k 2005/10/27 C:\Cygwin\usr\X11R6\bin\cygXmu-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXmu-6.dll" v0.0 ts=2005/10/26 18:22
   10k 2005/10/27 C:\Cygwin\usr\X11R6\bin\cygXmuu-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXmuu-1.dll" v0.0 ts=2005/10/26 18:23
   26k 2005/10/27 C:\Cygwin\usr\X11R6\bin\cygXp-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXp-6.dll" v0.0 ts=2005/10/26 18:27
   54k 2005/10/27 C:\Cygwin\usr\X11R6\bin\cygXpm-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygXpm-4.dll" v0.0 ts=2005/10/26 18:26
   10k 2005/10/27 C:\Cygwin\usr\X11R6\bin\cygXrandr-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygXrandr-2.dll" v0.0 ts=2005/10/26 19:58
   30k 2005/10/27 C:\Cygwin\usr\X11R6\bin\cygXrender-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXrender-1.dll" v0.0 ts=2005/10/26 19:52
    7k 2005/10/27 C:\Cygwin\usr\X11R6\bin\cygXRes-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXRes-1.dll" v0.0 ts=2005/10/26 20:00
   38k 2005/10/27 C:\Cygwin\usr\X11R6\bin\cygxrx-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygxrx-6.dll" v0.0 ts=2005/10/26 21:13
   24k 2005/10/27 C:\Cygwin\usr\X11R6\bin\cygxrxnest-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygxrxnest-6.dll" v0.0 ts=2005/10/26 21:14
  283k 2005/10/27 C:\Cygwin\usr\X11R6\bin\cygXt-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXt-6.dll" v0.0 ts=2005/10/26 18:19
   27k 2005/10/27 C:\Cygwin\usr\X11R6\bin\cygXTrap-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXTrap-6.dll" v0.0 ts=2005/10/26 20:00
   17k 2005/10/27 C:\Cygwin\usr\X11R6\bin\cygXtst-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXtst-6.dll" v0.0 ts=2005/10/26 18:49

Potential app conflicts:

Logitech Process Monitor service
Detected: HKLM Registry Key.


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

Service             : cygserver
Display name        : Cygwin: cygserver
Current State       : Running
Controls Accepted   : Stop
Command             : /usr/sbin/cygserver
stdin path          : /dev/null
stdout path         : /var/log/cygserver.log
stderr path         : /var/log/cygserver.log
Process Type        : Own Process
Startup             : Automatic
Account             : LocalSystem

Service             : httpd
Display name        : Cygwin: apache 2
Current State       : Stopped
Command             : /usr/sbin/httpd2 -DNO_DETACH
stdin path          : /dev/null
stdout path         : /var/log/httpd.log
stderr path         : /var/log/httpd.log
Special flags       : --shutdown 
Environment         : CYGWIN="server" 
Process Type        : Own Process
Startup             : Manual
Dependencies        : cygserver
Account             : LocalSystem


Cygwin Package Information
Last downloaded files to: C:\Documents and Settings\ant\Desktop
Last downloaded files from: ftp://sunsite.dk/projects/cygwinports

Package                 Version
_update-info-dir        00571-1
alternatives            1.3.29a-1
apache2                 2.2.6-1
apache2-devel           2.2.6-1
apr1                    1.2.11-1
aprutil1                1.2.10-1
ash                     20040127-3
atk                     1.10.3-1
autoconf                4-1
autoconf2.1             2.13-3
autoconf2.5             2.61-1
automake                2-1
automake1.10            1.10-1
automake1.4             1.4p6-4
automake1.5             1.5-2
automake1.6             1.6.3-3
automake1.7             1.7.9-3
automake1.8             1.8.5-3
automake1.9             1.9.6-2
base-files              3.7-1
base-passwd             2.2-1
bash                    3.2.25-17
bash-completion         20060301-2
bashdb                  3.1_0.09-1
binutils                20060817-1
bison                   2.3-1
boost                   1.33.1-3
boost-devel             1.33.1-3
byacc                   1.9-1
bzip2                   1.0.3-2
c-client                2002e-3
cabextract              1.1-1
catgets                 1.0-1
ccache                  2.4-1
clisp                   2.41-2
cmake                   2.4.7-2
cocom                   0.995-1
cogito                  0.18.2-1
coreutils               6.9-5
cpio                    2.9-1
cppunit                 1.12.0-1
cron                    4.1-6
crypt                   1.1-1
ctags                   5.7-1
curl                    7.16.3-1
curl-devel              7.16.3-1
cvs                     1.11.22-1
cvsps                   2.1-1
cvsutils                0.2.3-1
cygport                 0.2.10-1
cygrunsrv               1.17-1
cygutils                1.3.2-1
cygwin                  1.5.25-7
cygwin-doc              1.4-4
db4.3                   4.3.28-1
ddd                     3.3.9-1
dejagnu                 20021217-2
diffstat                1.45-1
diffutils               2.8.7-1
distcc                  2.18.3-1
dmalloc                 5.4.2-2
docbook-xml412          4.1.2-1
docbook-xsl             1.69.1-1
e2fsprogs               1.35-3
editrights              1.01-2
exif                    0.6.15-1
expat                   1.95.8-2
expect                  20030128-1
file                    4.21-1
findutils               4.3.11-1
flex                    2.5.4a-3
fltk                    1.1.8r5648-1
fontconfig              2.4.1-5
freeglut                2.2.0-1
freetype2               2.3.4-2
gawk                    3.1.6-1
gcc                     3.4.4-3
gcc-core                3.4.4-3
gcc-g++                 3.4.4-3
gcc-java                3.4.4-3
gcc-mingw-core          20050522-1
gcc-mingw-g++           20050522-1
gcc-mingw-java          20050522-1
gdb                     20060706-2
gdbm                    1.8.3-8
gettext                 0.15-1
gettext-devel           0.15-1
ghostscript             8.50-1
ghostscript-base        8.50-1
ghostscript-x11         8.50-1
git                     1.5.3.5-1
glib                    1.2.10-3
glib-devel              1.2.10-3
glib2                   2.10.3-1
glib2-devel             2.10.3-1
glib2-runtime           2.10.3-1
gmp                     4.2.1-1
gnome-common            2.12.0-1
gnutls-devel            1.0.25-2
gperf                   3.0.3-1
GraphicsMagick          1.0.6-1
grep                    2.5.1a-4
groff                   1.18.1-2
gtk+                    1.2.10-2
gtk+-devel              1.2.10-2
gtk-doc                 1.5-1
gtk2-x11                2.6.10-1
gtk2-x11-devel          2.6.10-1
gtk2-x11-doc            2.6.10-1
gtk2-x11-runtime        2.6.10-1
guile                   1.8.2-1
guile-devel             1.8.2-1
gzip                    1.3.12-2
ImageMagick             6.3.0.1-2
imlib                   1.9.14-3
indent                  2.2.9-2
inetutils               1.3.2-37
intltool                0.35.0-1
ioperm                  0.4-1
jasper                  1.701.0-1
jbigkit                 1.6-1
jikes                   1.22-1
jpeg                    6b-12
lcms                    1.14-1
less                    382-1
lesstif                 0.94.4-1
libapr1                 1.2.11-1
libaprutil1             1.2.10-1
libbind-devel           9.4.1_p1-1
libbind9_30             9.4.1_p1-1
libboost                1.33.1-3
libbz2-devel            1.0.3-2
libbz2_1                1.0.3-2
libcharset1             1.11-1
libcurl3                7.15.4-2
libcurl4                7.16.3-1
libdb4.1                4.1.25-1
libdb4.2                4.2.52-1
libdb4.2-devel          4.2.52-1
libdb4.3                4.3.28-1
libdb4.3-devel          4.3.28-1
libdns32                9.4.1_p1-1
libecpg-devel           8.1.4-2
libecpg5                8.1.4-2
libexif                 0.6.16-1
libexif12               0.6.16-1
libexpat0               1.95.8-2
libfcgi-devel           2.4.0-2
libfcgi0                2.4.0-2
libfontconfig-devel     2.4.1-5
libfontconfig1          2.4.1-5
libfreetype2-devel      2.3.4-2
libfreetype26           2.3.4-2
libgcrypt               1.2.1-1
libgdbm                 1.8.0-5
libgdbm-devel           1.8.3-8
libgdbm3                1.8.3-3
libgdbm4                1.8.3-8
libgettextpo0           0.15-1
libggi2-devel           2.2.1-1
libggimisc2-devel       2.2.1-1
libggiwmh0-devel        0.3.1-1
libgii1-devel           1.0.1-1
libgmp3                 4.2.1-1
libgnutls11             1.0.25-2
libgpg-error            1.1-1
libGraphicsMagick-devel 1.0.6-1
libGraphicsMagick0      1.0.6-1
libguile12              1.6.7-4
libguile17              1.8.2-1
libiconv                1.11-1
libiconv2               1.11-1
libintl                 0.10.38-3
libintl1                0.10.40-1
libintl2                0.12.1-3
libintl3                0.14.5-1
libintl8                0.15-1
libisc32                9.4.1_p1-1
libisccfg30             9.4.1_p1-1
libjbig1                1.5-3
libjbig2                1.6-1
libjpeg-devel           6b-12
libjpeg62               6b-12
libkpathsea3            2.0.2-15
libkpathsea4            3.0.0-3
libltdl3                1.5.23a-2
libMagick-devel         6.3.0.1-2
libMagick10             6.3.0.1-2
libncurses-devel        5.5-3
libncurses5             5.2-1
libncurses6             5.2-8
libncurses7             5.3-4
libncurses8             5.5-3
libneon25               0.25.5-1
libneon26               0.26.4-1
libnetpbm-devel         10.33-1
libogg-devel            1.1.3-1
libogg0                 1.1.3-1
libopencdk8             0.5.7-1
libpcre0                7.2-1
libpgtypes2             8.1.4-2
libpng12                1.2.12-1
libpng12-devel          1.2.12-1
libpopt0                1.6.4-4
libpq-devel             8.1.4-2
libpq4                  8.0.7-1
libreadline4            4.1-2
libreadline5            4.3-5
libreadline6            5.2.7-9
libsmi                  0.4.2-1
libssh2-devel           0.15-1
libssh2_1               0.15-1
libtasn1                0.2.15-1
libtiff-devel           3.8.2-3
libtiff4                3.6.0-5
libtiff5                3.8.2-3
libtool1.5              1.5.23a-2
libungif                4.1.4-1
libungif4               4.1.4-1
libusb-win32            0.1.12.1-2
libvorbis-devel         1.2.0-1
libvorbis0              1.2.0-1
libvorbisenc2           1.2.0-1
libvorbisfile3          1.2.0-1
libwmf                  0.2.8.4-1
libxdelta2              1.1.3-3
libXft                  2.1.6-1
libXft-devel            2.1.6-1
libXft1                 1.0.0-1
libXft2                 2.1.6-1
libxml2                 2.6.28-2
libxml2-devel           2.6.28-2
libXpm-noX_4            3.5.6-1
login                   1.9-7
m4                      1.4.10-1
make                    3.81-1
man                     1.6e-1
mingw-runtime           3.13-1
minires                 1.01-1
minires-devel           1.01-1
mktemp                  1.5-4
mlcscope                14.1.8-2
monotone                0.38-1
mtd                     20050419-1
multitail               5.2.0-1
nasm                    2.00-2
ncurses                 5.5-3
neon                    0.26.4-1
netcat                  1.10-2
ocaml                   3.08.1-1
opencdk                 0.5.7-1
openjade                1.3.3-1
OpenSP                  1.5.1-1
openssh                 4.7p1-2
openssl                 0.9.8g-1
openssl-devel           0.9.8g-1
openssl097              0.9.7l-1
pango                   1.8.1-1
pango-runtime           1.8.1-1
patch                   2.5.8-9
patchutils              0.2.31-1
pcre                    7.2-1
pcre-devel              7.2-1
perl                    5.8.8-4
perl-Error              0.17010-1
perl-ExtUtils-Depends   0.205-1
perl-ExtUtils-PkgConfig 1.07-1
perl-Image-Magick       6.3.0.1-2
perl-libwin32           0.27-1
perl_manpages           5.8.8-4
pine                    4.58-1
ping                    1.0-1
pkg-config              0.21-1
pkgconfig               0.17.2-3
popt                    1.6.4-4
postgresql              8.1.4-2
postgresql-client       8.1.4-2
postgresql-contrib      8.1.4-2
postgresql-devel        8.1.4-2
postgresql-doc          8.1.4-2
postgresql-plperl       8.1.4-2
postgresql-plpython     8.1.4-2
python                  2.5.1-2
qt3                     3.3.4-2
qt3-devel               3.3.4-2
quilt                   0.46-1
rcs                     5.7-4
readline                5.2.7-9
rebase                  2.4.3-1
ruby                    1.8.6-1
run                     1.1.10-1
sed                     4.1.5-2
sharutils               4.7-1
shutdown                1.7-1
splint                  3.1.1-2
stunnel                 4.20-2
subversion              1.4.5-2
subversion-apache2      1.4.5-2
subversion-devel        1.4.5-2
subversion-perl         1.4.5-2
subversion-python       1.4.5-2
subversion-ruby         1.4.5-2
swig                    1.3.29-2
tar                     1.19-1
tcltk                   20060202-1
tcm                     2.20-1
tcp_wrappers            7.6-2
tcsh                    6.15.00-4
termcap                 20050421-1
terminfo                5.5_20061104-1
tetex-devel             3.0.0-3
texinfo                 4.8a-1
time                    1.7-1
tnef                    1.4.3-1
tzcode                  2007h-2
unzip                   5.52-2
util-linux              2.12r-2
uw-imap                 2002e-3
uw-imap-imapd           2002e-3
uw-imap-util            2002e-3
vim                     7.1-1
w32api                  3.10-1
wget                    1.10.2-2
which                   1.7-1
whois                   4.7.24-1
X-startup-scripts       1.0.11-1
xdelta                  1.1.3-3
xdelta-devel            1.1.3-3
xerces-c-devel          2.5.0-1
XFree86-lib-compat      4.3.0-2
xorg-x11-base           6.8.99.901-1
xorg-x11-bin            6.8.99.901-1
xorg-x11-bin-dlls       6.8.99.901-1
xorg-x11-bin-lndir      6.8.99.901-1
xorg-x11-devel          6.8.99.901-1
xorg-x11-etc            6.8.99.901-1
xorg-x11-fenc           6.8.99.901-1
xorg-x11-fnts           6.8.99.901-1
xorg-x11-libs-data      6.8.99.901-1
xorg-x11-xwin           6.8.99.901-1
xterm                   229-1
zip                     2.32-2
zlib                    1.2.3-2
Use -h to see help about each section

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

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

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

* Re: inetutils 1.5 / ftpd problem: 426 Data connection: No buffer  space available.
  2008-04-28  6:12 antony baxter
@ 2008-04-28  7:15 ` Charles Wilson
  2008-04-28  9:11   ` Corinna Vinschen
  0 siblings, 1 reply; 20+ messages in thread
From: Charles Wilson @ 2008-04-28  7:15 UTC (permalink / raw)
  To: cygwin

antony baxter wrote:

> ftp> get BCUpdateXP.exe
> 'EPSV': command not understood.
> local: BCUpdateXP.exe remote: BCUpdateXP.exe
> 227 Entering Passive Mode (192,168,1,99,4,110)
> 150 Opening BINARY mode data connection for 'BCUpdateXP.exe' (226020663 bytes).
>   0% |
>                        |     0       0.00 KB/s    --:-- ETA
> 426 Data connection: No buffer space available.

This means that very first call to the cygwin1.dll function 'write(int 
networkSocketFd, const void *buf, size_t nbyte)' failed for some reason: 
ENOBUFS is not one of the valid error codes for write(), so it's set to 
that by something internal to cygwin's implementation of write().

e.g. smells like a cygwin (or windows) bug -- cygwin is unable to create 
a Mutex or an Event for managing the socket communications (e.g. 
CreateMutex or CreateEvent in net.cc: (handler_socket::init_events) failed)

I'm wondering if you have different versions of cygwin on the two 
machines -- not that it should matter, but if so then the answer may be 
simple.  Can you send -- as attachments, not cut-n-paste -- the result 
of 'cygcheck -s -v -r' on each of the two cygwin machines?

--
Chuck


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

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

* inetutils 1.5 / ftpd problem: 426 Data connection: No buffer space available.
@ 2008-04-28  6:12 antony baxter
  2008-04-28  7:15 ` Charles Wilson
  0 siblings, 1 reply; 20+ messages in thread
From: antony baxter @ 2008-04-28  6:12 UTC (permalink / raw)
  To: cygwin

Hi,

Problem Description: 2 PCs, both up to date Cygwin DLL, one running
inetutils 1.5, the other running inetutils 1.3.2, plus a third
computer (probably not important, but MacOSX).

The PC with inetutils 1.5 has a largish (215MB) file on it, which I
want to get from the OSX computer:

ant@mac (.../ant/Downloads) % ftp xp-ant1
Connected to xp-ant1.
220-
220- Welcome to xp-ant1...
220 xp-ant1 FTP server (GNU inetutils 1.5) ready.
331 Password required for ant.
230- Fanfare!!!
230- You are successfully logged in to this server!!!
230 User ant logged in.
Remote system type is UNIX.
Using binary mode to transfer files.
ftp> cd /mnt/downloads
250 CWD command successful.
ftp> bin
200 Type set to I.
ftp> get BCUpdateXP.exe
'EPSV': command not understood.
local: BCUpdateXP.exe remote: BCUpdateXP.exe
227 Entering Passive Mode (192,168,1,99,4,110)
150 Opening BINARY mode data connection for 'BCUpdateXP.exe' (226020663 bytes).
  0% |
                       |     0       0.00 KB/s    --:-- ETA
426 Data connection: No buffer space available.


I copied the file over to the other PC running inetutils 1.3.2, and
then ftp-ing in from my Mac and getting it worked fine:

...
220 xp-ant2 FTP server (GNU inetutils 1.3.2) ready.
...
ftp> get BCUpdateXP.exe
'EPSV': command not understood.
local: BCUpdateXP.exe remote: BCUpdateXP.exe
227 Entering Passive Mode (192,168,1,187,5,22)
150 Opening BINARY mode data connection for 'BCUpdateXP.exe' (226020663 bytes).
100% |****************************************************************************************|
  215 MB    9.80 MB/s    00:00 ETA
226 Transfer complete.
226020663 bytes received in 00:22 (9.78 MB/s)


Had a read through the docs but couldn't see anything that would
specifically address this; I'm not using tcp-wrappers as I'm in a
secure environment, the inetutils 1.5 ftp server machine is XP SP2
running in VMware (as is the other running 1.3.2), its a fresh
install.

Can anyone else reproduce this? I can easily downgrade the server to
1.3.2 so no great problem, but it would be good to solve this.

Thanks

Ant.q

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

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

end of thread, other threads:[~2008-05-07 15:16 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-04-30  7:38 inetutils 1.5 / ftpd problem: 426 Data connection: No buffer space available antony baxter
2008-04-30  8:01 ` Charles Wilson
2008-04-30 10:59   ` Corinna Vinschen
2008-05-01  5:57     ` Charles Wilson
2008-05-01  7:56       ` Corinna Vinschen
2008-05-07 12:00       ` Corinna Vinschen
  -- strict thread matches above, loose matches on Subject: below --
2008-05-07 15:16 antony baxter
2008-05-07 15:19 ` Corinna Vinschen
2008-04-30 10:11 antony baxter
2008-04-30  5:59 antony baxter
2008-04-29  7:31 antony baxter
2008-04-29 17:32 ` Charles Wilson
2008-04-30  4:41   ` Charles Wilson
2008-04-28  8:46 antony baxter
2008-04-28  6:12 antony baxter
2008-04-28  7:15 ` Charles Wilson
2008-04-28  9:11   ` Corinna Vinschen
2008-04-29  0:27     ` Charles Wilson
2008-04-29  3:55       ` Charles Wilson
2008-04-29  9:56         ` 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).