Windowser server 2012 standard , warning FAST_CWD after microsoft update kb5003697 even with latest cygwin64

2021-06-21 Thread Luca Consales via Cygwin
Hello,
step to reproduce

install windows server 2012 standard ( NOT R2  i see no problem with R2 )
install latest cygwin 64 bit from cygwin site

you can run some program like ls.exe or other from command promtp with no
warning

C:\cygwin64\bin\ls.exe

update microsoft windows , after installing june 2021 security update
kb5003697

every cygwin command that you run from command prompt you have this warning

Cygwin WARNING:  Couldn't compute FAST_CWD pointer.  This typically occurs
if you're using  an older Cygwin version on a newer Windows.  Please update
to the latest  available Cygwin version from https://cygwin.com/.  If the
problem persists,  please see https://cygwin.com/problems.html

i see no warning with other microsoft windows version and no problem with
cygwin 32 bit .

if i uninstall

kb5003697

and reboot we have no more warning but we can't install this security fix

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


Re: No error messages printed out within Windows Command Prompt when shared libraries are not found

2017-10-19 Thread Luca

Sorry, I have just realized that the issue happens only when I use the "Windows 
Command Prompt" run by Total Commander (www.ghisler.com), while I correctly get 
the notification when using the "Windows Command Prompt" run from the Start 
Menu. This issue is actually related to Total Commander, so I am reporting it 
on the Total Commander forum.
--
Problem reports:   http://cygwin.com/problems.html
FAQ:   http://cygwin.com/faq/
Documentation: http://cygwin.com/docs.html
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple



No error messages printed out within Windows Command Prompt when shared libraries are not found

2017-10-17 Thread Luca
On Linux, if I run a program compiled with 'gcc' without the proper shared 
libraries in path I get the following error message:

> error while loading shared libraries: libxxx.so: cannot open shared object 
> file: No such file or directory

This is expected.

The same happens when running a program compiled with Cygwin on Windows, either 
using 'gcc' or 'x86_64-w64-mingw32-gcc', but only if I run the program within 
the Cygwin Terminal.

If I run the program within the Windows Command Prompt, I do not get any error 
messages (the program simply does not do anything).

Below are the instructions to reproduce the issue.


File 'foo.h':

#ifndef foo_h__
#define foo_h__
extern void foo(void);
#endif  // foo_h__


File 'foo.c':

#include 
void foo(void)
{
puts("Hello, I'm a shared library");
}


File 'main.c':

#include 
#include "foo.h"
int main(void)
{
puts("This is a shared library test...");
foo();
return 0;
}


Build object file 'foo.o':
x86_64-w64-mingw32-gcc -c foo.c

Build shared library 'libfoo.dll':
x86_64-w64-mingw32-gcc -shared -o libfoo.dll foo.o

Build executable 'foo.exe':
x86_64-w64-mingw32-gcc -o foo.exe main.c libfoo.dll

Rename shared library 'libfoo.dll':
mv libfoo.dll liberror.dll

If you run 'foo.exe' within the Cygwin Terminal you get the error message, if 
you run it within the Windows Command Prompt you do not get any messages 
printed out.
--
Problem reports:   http://cygwin.com/problems.html
FAQ:   http://cygwin.com/faq/
Documentation: http://cygwin.com/docs.html
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple



gcc does not execute - why ?

2010-01-13 Thread Luca Bottura
I have a puzzling behaviour trying to run gcc (and the other gnu 
compilers) right after installing cygwing 1.7.1 on Pentium running XP, 
and adding gcc (using the gcc installer helper for the selection of 
packages in setup). The command


gcc-3 test.c

is executed but has no effect. No object, no executable, no message. 
Checking after the command the content of $? I get an exit code 1.


echo $?
1

Asking for compilation with -pass-exit-codes I get an highest exit code 127

gcc-3 -pass-exit-codes test.c
echo $?
127

I have apparently all the programs in place, i.e.

/lib/gcc/i686-pc-cygwin/3.4.4/cc1.exe
/lib/gcc/i686-pc-cygwin/3.4.4/f771.exe (I wish to compile with g77 as well)
/lib/gcc/i686-pc-cygwin/3.4.4/collect2.exe

and /lib/gcc/i686-pc-cygwin/3.4.4/ is in the path of the programs for 
the gcc front-end (checked with -print-search-dirs).


I am at loss... Any hint of what may be wrong in the installation ?

Many thanks, Luca

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



cydwin not starting - cygreadline6.dll missing

2009-02-05 Thread Luca . Maltagliati
Dear all,

sorry for the very newbie question.
I installed cydwin (I have windows XP (SP3)) with the setup.exe, adding
only the openssh to the basic.
However The application has failed to start because cygreadline6.dll was
not found.
Searching the package list gave me back zero results and google didn't
help either.

Where can I look for it? Or which mistake did I make in the installing?

Thanks in advance, cheers

--
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/



Re: pygtk installs only in python2.4?

2007-04-26 Thread Luca Masini

Jason Tishler wrote:

This is a general problem with Python, not with pygtk in particular.



The simplest solution is for the pygtk maintainer to build against the
latest Python and release a new package.
  


I had the same problem after upgrading cygwin.
Python is automagically upgraded to 2.5 so it does not
work anymore with this, now obsolete, package.
The setup installer is not smart enough in this case.
:-((

Is the maintainer reading this list ?

If not... I can volunteer to do the package against 2.5
(I have some vacation in the next day, so I will have some time)

Luca.


--
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/



vim patch

2007-04-14 Thread Luca Masini

The attached patch should solve the problem with symbolic links.
For ex. when editing /etc/hosts we get the warning
  E303: Unable to open swap file for hosts, recovery impossible

See also
  http://cygwin.com/ml/cygwin/2006-06/msg00279.html
  http://www.mail-archive.com/[EMAIL PROTECTED]/msg02519.html

The patch is against vim-7.0.223-1-src.tar.bz2

Regards.

Luca.


diff --recursive --unified vim-7.0.223-1/src/window.c vim-7.0.223-1-patched/src/window.c
--- vim-7.0.223-1/src/window.c	2007-03-27 17:46:56.0 +0200
+++ vim-7.0.223-1-patched/src/window.c	2007-04-15 03:30:44.056467200 +0200
@@ -5874,6 +5874,9 @@
 #if defined(MACOS_CLASSIC) || defined(OS2) || defined(MSDOS) || defined(MSWIN)
 slash_adjust(buf);
 #endif
+#if defined(__CYGWIN__)
+cygwin_conv_to_posix_path( buf, buf );
+#endif
 return retval;
 }
 

--
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/

gdb not working with $?=123

2007-04-10 Thread Luca Masini

Hi,

gdb does not works.
When I run it nothing happens and $? is 123
I just tried to re-install it and googled but with no luck until now.

Regards.

Luca.

--
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/



Re: gdb not working with $?=123

2007-04-10 Thread Luca Masini

Brian Dessent wrote:

Try this:

PATH=/usr/bin:$(cygpath -S) gdb --help

If gdb works with this minimal PATH then try selectively adding the
other components back in and see when it fails.  If the above still
doesn't work then you may have to resort to strace to see why gdb can't
initialize.
  

Also with the minimal PATH did not worked.
With
strace gdb
I got a message saying that tk84.dll was not a valid windows image.
I reinstalled the tcltk package and now gdb is working.

Thank you very much for your help.

Luca.


--
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/



cygwin memory leak problems: possible solution

2007-02-23 Thread Luca Trevisani

Hi, I encountered memory leaks problems compiling a large code under cygwin.
I tried both under winxp and win2k with same result: the memory resources of
the system started slowly falling down, up to the end of the process with
error messages like fork: resource temporarily unavailable.

I found many discussions on this topic on the cygwin mailing list, such as:
http://cygwin.com/ml/cygwin/2003-08/msg00328.html
http://www.cygwin.com/ml/cygwin/2006-06/msg00366.html
so I think it is a known problem many people face, but I could not find any
solution to the problem.

After many tries, I found the solution: in my case the problem was the
zonealarm firewall. Since zonealarm is widely used, I suspect the same issue
affects the pc of many others. Unfortunately it is not enough to turn off or
disable zonealarm to avoid the problem. It is needed to uninstall it, and to
be sure it is better to follow the full list of things to do to be sure to
completely uninstall zonealarm as reported on:
http://www.nohold.net/noHoldCust25/Prod_1/Articles55646/CompleteUninstallNonNT.html

I have tried many other free firewall programs and did not encounter this
issue anymore, you can try for instance: Ashampoo Firewall, Comodo Firewall,
PC Tools Firewall, Sygate Personal Firewall etc...

If the solution is confirmed by other users facing this issue, I think it
should be included in the cygwin FAQ. The incompatibility is in fact very
difficult to detect, because it remains even if the zonealarm firewall is
disabled.

Bye,
Luca 



--
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/



Re: svn on cygwin related problem.

2007-02-12 Thread Luca Cappa

Hello,

I think I spotted a bug which happen on the subversion package provided
for cygwin.
I encountered the following problem while exporting the content of my
Subversion repository.

In the repository, I have a directory T which contains another file called
X.exe and a directory called X. When I export the content of the whole
repository (svn export --force svn://localhost/trunk/PathToDirectoryT),
the follwoing happens:

-the X.exe file gets exported correctly;
-when the the X directory would get exported, svn outputs the following
error: svn: 'X' exists and is not a directory

It does not happen if I manually export first the X directory, and then
the X.exe file, like:
svn export --force svn://localhost/trunk/PathToT/X
svn export --force svn://localhost/trunk/PathToT/X.exe

but the error happens if I export the X.exe file before the directory,
i.e.:
svn export --force svn://localhost/trunk/PathToT/X.exe
svn export --force svn://localhost/trunk/PathToT/X
svn: 'Programmer' exists and is not a directory

which is the sequence of operations when the whole repository is exported.
Is this a bug?

I am using Windows XP Professional, NTFS fs in both the server and the
client computers.

A useful link for the confirmation that it is a bug on the
[EMAIL PROTECTED] mailing list:
http://subversion.tigris.org/servlets/ReadMsg?list=usersmsgNo=61651 or
http://svn.haxx.se/users/archive-2007-02/0194.shtml

O.S. : Windows XP SP2, NTFS filesystem

Subversion: svn --version reports svn, version 1.4.2 (r22196) compiled
Dec  2 2006, 14:28:55

Cygwin: Subversion package up to date to 31/1/2007.

Greetings,
Luca




--
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/



svn on cygwin related problem.

2007-02-06 Thread Luca Cappa

Hello all,

I am using the svn package provided by cygwin (svn --help reports version  
1.4.2 (r22196) compiled Dec  2 2006, 14:28:55), and I encountered the  
following problem while exporting the content of my Subversion repository.


In the repository, I have a directory T which contains another file called  
X.exe and a directory called X. When I export the content of the whole  
repository (svn export --force svn://localhost/trunk/PathToDirectoryT),  
the follwoing happens:


-the X.exe file gets exported correctly;
-when the the X directory would get exported, svn outputs the following  
error: svn: 'X' exists and is not a directory


It does not happen if I manually export first the X directory, and then  
the X.exe file, like:

svn export --force svn://localhost/trunk/PathToT/X
svn export --force svn://localhost/trunk/PathToT/X.exe

but the error happens if I export the X.exe file before the directory,  
i.e.:

svn export --force svn://localhost/trunk/PathToT/X.exe
svn export --force svn://localhost/trunk/PathToT/X
svn: 'Programmer' exists and is not a directory

which is the sequence of operations when the whole repository is exported.  
Is this a bug? Should I report it to cygwin or to tigri's subversion?


I am using Windows XP Professional, NTFS fs in both the server and the  
client computers.
Notice that the problem does not happen when the same sequence of actions  
are executed with the native win32 client provided by Tigris, so it should  
be a cygwin related problem only.


Greetings,
Luca


--
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/



Re: 1.5.20: Occasional crash at address 0x6100365f (cygthread::stub() in cygthre

2006-08-17 Thread Luca Gautero
Is your keyboard symbol correctly set at the 
startxwin.sh
log?



--
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/



strptime error when setting a different TimeZone with export TZ=UTC

2005-06-24 Thread Luca Wullschleger
Hi everybody. I have a very specific problem and I'm looking for someone
giving me a solution.
 
When I set the TZ environment varialbe TZ to UTC and try to execute date
I get the right date in UTC format:

 begin
$ date
Fri Jun 24 20:13:05 WEDT 2005
$ export TZ=UTC
$ date
Fri Jun 24 18:03:00 UTC 2005
 end
 
But if I try to execute the peace of code written in C here below, I have a
very strange behaviour.

 begin
$ ./test_time
Timezone:   WEST-1WEDT-2,M3.5.0/2,M10.5.0/3

TS =1097712000
LOCAL : Thu Oct 14 02:00:00 2004
UTC :   Thu Oct 14 00:00:00 2004

Trying with '13/Oct/2004:17:00:00 -0700' - 1097712000
ts =1097704800
LOCAL : Thu Oct 14 00:00:00 2004
UTC :   Wed Oct 13 22:00:00 2004

$ export TZ=UTC
$ ./test_time
Timezone:   UTC

TS =1097712000
LOCAL : Thu Oct 14 00:00:00 2004
UTC :   Thu Oct 14 00:00:00 2004

Trying with '13/Oct/2004:17:00:00 -0700' - 1097712000
ts =25199
LOCAL : Thu Jan  1 06:59:59 1970   -- problem
UTC :   Thu Jan  1 06:59:59 1970   -- problem
 end

As you can see the problem is in in the last 2 lines..
I would like to be able to parse the date in UTC, but it seams that either
the strptime or the mktime function do not like the modification of the TZ
environment variable.

I also tried to printout the broken-down date structure try and it seams to
be correct, so I suppose that the problem is with the mktime() function. I
know this mktime() function uses some timezone settings from somewhere.

I executed this peace of code on a Linux machine and the behaviour is right.
It seams that the problem only occurs within Cygwin.

I tried everything, google searched it, but I found nothing interesting.

Any idea?

Thanks a lot for the help... 

Luca

Email: [EMAIL PROTECTED]



 file test_time.c

#include stdlib.h
#include stdio.h
#include zlib.h
#include time.h

/** Main method.
 */
int main(int argc, char **argv) {

tzset();
printf(Timezone:   %s\n\n,getenv(TZ));

time_t ts = 1097712000;  /* 13/Oct/2004:17:30:00 */
printf(TS =%i\n,(int)ts);
printf(LOCAL : %s, asctime(localtime(ts)));
printf(UTC :   %s, asctime(gmtime(ts)));

printf(\nTrying with '13/Oct/2004:17:00:00 -0700' -
1097712000\n);
struct tm try;
time_t ts2;
char date[30] = 13/Oct/2004:17:30:00;
char timezone[4] = -07;

if ((char *)strptime(date,%d/%b/%Y:%T,try) == NULL) {
printf(Error with strptime\n);
return 1;
}
ts2 = mktime(try) - atoi(timezone)*3600;
printf(ts =%i\n,(int)ts2);
printf(LOCAL : %s, asctime(localtime(ts2))); 
printf(UTC :   %s, asctime(gmtime(ts2)));

return (0);
}




--
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/



RE: strptime error when setting a different TimeZone with export TZ=UTC

2005-06-24 Thread Luca Wullschleger
Hi Brian, thanks a lot for your answer. In fact it works initializing the
try struct to {0}.

As you said, I was lucky that until now I never found the problem.
Remain the question why setting the TZ variable make this problem coming
out.

By the way, thanks a lot for the support !!!

Luca 



 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] On Behalf Of Brian Dessent
 Sent: vendredi, 24. juin 2005 21:37
 To: cygwin@cygwin.com
 Subject: Re: strptime error when setting a different TimeZone 
 with export TZ=UTC
 
 Luca Wullschleger wrote:
 
  Hi everybody. I have a very specific problem and I'm looking for 
  someone giving me a solution.
 
 I'm afriad this is operator error on your part.
 
  struct tm try;
 
 Here 'try' starts out as a regular automatic variable, with 
 all of its fields set to arbitrary (undefined) values.
 
  if ((char *)strptime(date,%d/%b/%Y:%T,try) == NULL) {
 
 Here you call strptime() to fill in the values of 'try', 
 however the strptime function has the semantics that it will 
 only fill in the members of struct tm that it is asked to 
 parse.  This means that after the call, some of the members 
 still have undefined values. 
 Specifically, the members tm_wday, tm_yday, and tm_isdst will 
 contain garbage.
 
  ts2 = mktime(try) - atoi(timezone)*3600;
 
 And here you pass this value of 'try' that still has 
 uninitialized values to mktime(), the result of which will be 
 undefined as well.  I think you were just lucky that it 
 worked in the case where TZ was not set, but in general once 
 you encounter the situation where you pass uninitialized data 
 to a function, all bets are off because your program is invalid C.
 
 If you change the line above to struct tm try = { 0 }; or 
 otherwise initialize it somehow, then I think you will get 
 the desired functionality.
 
 Brian
 
 --
 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/
 
 


--
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/



Re: nfs server config

2005-02-12 Thread Luca
but doesn't work!!!
the mount log tell me the is a problem..
there isn't access to the partition!!
and in another cygwin installation i don't have this time of error...
- Original Message - 
From: Larry Hall [EMAIL PROTECTED]
To: Luca Andreoli [EMAIL PROTECTED]; cygwin-apps@cygwin.com
Sent: Friday, February 11, 2005 11:25 PM
Subject: Re: nfs server config


At 04:44 PM 2/11/2005, you wrote:
and we i use the command
nfs-server-config
i have this problem
$ nfs-server-config
Installing portmap as 'Cygwin portmap'
Installing mountd as 'Cygwin mountd'
Installing nfsd as 'Cygwin nfsd'
mount(1) command did not return SYSTEM mount(s).
It looks like you have installed Cygwin for a single user.
Cygwin mount points will not be available to programs installed
as Windows services. This will keep portmap, mountd, and nfsd
from running as Windows services.
In order for portmap, mountd and nfsd to function properly,
you should establish global mount points using the /bin/mount
utility. You can change user-specific Cygwin mount points to
global mount points using the following command:
   eval mount -f -s -b C:/cygwin/bin /usr/bin;
mount -f -s -b C:/cygwin/lib /usr/lib;
mount -f -s -b C:/cygwin /;
mount -s -b --change-cygdrive-prefix /cygdrive;
You current mount -m  listing is:
mount -f -s -b C:/cygwin/bin /usr/bin
mount -f -s -b C:/cygwin/lib /usr/lib
mount -f -s -b C:/cygwin /
mount -s -b --change-cygdrive-prefix /cygdrive
pls help me

Hm, seems I remember this as an old bug but I couldn't google up a 
reference
to it.  If mount -m shows you the above listing, you can ignore the
warning.  It's erroneous.

--
Larry Hall  http://www.rfk.com
RFK Partners, Inc.  (508) 893-9779 - RFK Office
838 Washington Street   (508) 893-9889 - FAX
Holliston, MA 01746




Re: nfs server config

2005-02-12 Thread Luca
but doesn't work!!!
the mount log tell me the is a problem..
there isn't access to the partition!!
and in another cygwin installation i don't have this time of error...
- Original Message - 
From: Larry Hall [EMAIL PROTECTED]
To: Luca Andreoli [EMAIL PROTECTED]; cygwin-apps@cygwin.com
Sent: Friday, February 11, 2005 11:25 PM
Subject: Re: nfs server config


At 04:44 PM 2/11/2005, you wrote:
and we i use the command
nfs-server-config
i have this problem
$ nfs-server-config
Installing portmap as 'Cygwin portmap'
Installing mountd as 'Cygwin mountd'
Installing nfsd as 'Cygwin nfsd'
mount(1) command did not return SYSTEM mount(s).
It looks like you have installed Cygwin for a single user.
Cygwin mount points will not be available to programs installed
as Windows services. This will keep portmap, mountd, and nfsd
from running as Windows services.
In order for portmap, mountd and nfsd to function properly,
you should establish global mount points using the /bin/mount
utility. You can change user-specific Cygwin mount points to
global mount points using the following command:
   eval mount -f -s -b C:/cygwin/bin /usr/bin;
mount -f -s -b C:/cygwin/lib /usr/lib;
mount -f -s -b C:/cygwin /;
mount -s -b --change-cygdrive-prefix /cygdrive;
You current mount -m  listing is:
mount -f -s -b C:/cygwin/bin /usr/bin
mount -f -s -b C:/cygwin/lib /usr/lib
mount -f -s -b C:/cygwin /
mount -s -b --change-cygdrive-prefix /cygdrive
pls help me

Hm, seems I remember this as an old bug but I couldn't google up a 
reference
to it.  If mount -m shows you the above listing, you can ignore the
warning.  It's erroneous.

--
Larry Hall  http://www.rfk.com
RFK Partners, Inc.  (508) 893-9779 - RFK Office
838 Washington Street   (508) 893-9889 - FAX
Holliston, MA 01746


--
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/


nfs server config

2005-02-11 Thread Luca Andreoli
hi 
i have this configuration
$ cygcheck.exe -cd
Cygwin Package Information
Package  Version
_update-info-dir 00231-1
ash  20040127-1
base-files   3.2-1
base-passwd  2.1-1
bash 2.05b-16
bzip21.0.2-6
coreutils5.2.1-5
cygrunsrv1.0-1
cygutils 1.2.6-1
cygwin   1.5.12-1
cygwin-doc   1.4-1
diffutils2.8.7-1
editrights   1.01-1
findutils20041227-1
gawk 3.1.4-3
gdbm 1.8.3-7
grep 2.5-1
groff1.18.1-2
gzip 1.3.5-1
less 381-1
libbz2_1 1.0.2-6
libcharset1  1.9.2-1
libgdbm  1.8.0-5
libgdbm-devel1.8.3-7
libgdbm3 1.8.3-3
libgdbm4 1.8.3-7
libiconv 1.9.2-1
libiconv21.9.2-1
libintl1 0.10.40-1
libintl2 0.12.1-3
libintl3 0.14.1-1
libncurses5  5.2-1
libncurses6  5.2-8
libncurses7  5.3-4
libncurses8  5.4-1
libpcre  4.1-1
libpcre0 4.5-1
libpopt0 1.6.4-4
libreadline4 4.1-2
libreadline5 4.3-5
libreadline6 5.0-1
login1.9-7
man  1.5o1-1
mktemp   1.5-3
ncurses  5.4-1
nfs-server   2.2.47-2
readline 5.0-1
sed  4.1.3-1
sunrpc   4.0-2
tar  1.13.25-5
termcap  20021106-2
terminfo 5.4_20041009-1
texinfo  4.7-2
unzip5.50-5
vim  6.3-1
which1.6-1
zip  2.3-6
zlib 1.2.2-1

and we i use the command 
 nfs-server-config

i have this problem
$ nfs-server-config
Installing portmap as 'Cygwin portmap'
Installing mountd as 'Cygwin mountd'
Installing nfsd as 'Cygwin nfsd'

mount(1) command did not return SYSTEM mount(s).

It looks like you have installed Cygwin for a single user.
Cygwin mount points will not be available to programs installed
as Windows services. This will keep portmap, mountd, and nfsd
from running as Windows services.

In order for portmap, mountd and nfsd to function properly,
you should establish global mount points using the /bin/mount
utility. You can change user-specific Cygwin mount points to
global mount points using the following command:

eval mount -f -s -b C:/cygwin/bin /usr/bin;
mount -f -s -b C:/cygwin/lib /usr/lib;
mount -f -s -b C:/cygwin /;
mount -s -b --change-cygdrive-prefix /cygdrive;

You current mount -m  listing is:

mount -f -s -b C:/cygwin/bin /usr/bin
mount -f -s -b C:/cygwin/lib /usr/lib
mount -f -s -b C:/cygwin /
mount -s -b --change-cygdrive-prefix /cygdrive


pls help me
bye
luca




How do I get older cygwin version 1.5.5?

2005-01-18 Thread luca . spinacci
Thank,
L. Spinacci


--
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/



Info...

2005-01-12 Thread luca . spinacci

I need cygwin version 1.5.5 with PostGreSQL (v. 7.3.4-2)...
Where can I find that version?
Thank you.
Luca.


--
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/