PLease upload: bzr-0.8.2-1 [new upstream]

2006-06-21 Thread Jari Aalto
Here is bzr update: wget\ http://cygwin.cante.net/bzr/bzr-0.8.2-1.tar.bz2.sig \ http://cygwin.cante.net/bzr/bzr-0.8.2-1.tar.bz2 \ http://cygwin.cante.net/bzr/bzr-0.8.2-1-src.tar.bz2.sig \ http://cygwin.cante.net/bzr/bzr-0.8.2-1-src.tar.bz2 \

Re: setup - duplicating cygwin

2006-06-21 Thread Jim Easton
Hi Corinna, On Jun 20 02:58, Jim Easton wrote: Question: is /proc implemented and I just haven't figured out how to install it? Did you try $ cd /proc $ ls -l before asking? Oh Dear! I tried: cd /cygdrive/c/cygwin cd proc For which I received the message: bash: cd: proc:

Re: Thread Injection + Cygwin problems

2006-06-21 Thread Kaveh Goudarzi
Hi, The problem may be due to the fact that the injected thread doesn't have a cygtls area. If the thread is injected prior to the completion of cygwin's initialization or if it somehow bypasses the DLL_THREAD_ATTACH phase of the initialization (which was one problem that I had to deal with in

Re: checkdir: cannot create extraction directory

2006-06-21 Thread bh77
$ cygcheck unzip Found: C:\cygwin\bin\unzip.exe C:/cygwin/bin/unzip.exe C:\cygwin\bin\cygwin1.dll C:\WINDOWS\system32\ADVAPI32.DLL C:\WINDOWS\system32\ntdll.dll C:\WINDOWS\system32\KERNEL32.dll C:\WINDOWS\system32\RPCRT4.dll -- View this message in context:

Re: find dir expr1 -o expr2 does not work

2006-06-21 Thread cristi petrisor
I am trying to make a tar with files that are in a directory and checks some condition The problem i encountered is next : find common -type f give the following output. (which is good) common/VERSION common/gui/svcConsole/src/com/ibm/storage/svc/console/rcmap/RcMapCreateOptionsStep.java find

RE: Problems with NFS server

2006-06-21 Thread Nicolas Boudin
Hello, - If I'm understanding you correctly, it seems like your server.map didn't get created properly. For the administrator uid and gid entries, there should definitely be a mapping of id '0' to the appropriate cygwin system administrator uid/gid. You can find these using 'id -u

Re: Problem creating device files

2006-06-21 Thread Corinna Vinschen
On Jun 21 10:47, Nicolas Boudin wrote: Hello, I get strange results when trying to create device files with this program: #include sys/stat.h int main (void) { int major, minor; dev_t dev; major = 5; minor = 1; dev = (major 8) | minor;

RE: Problem creating device files

2006-06-21 Thread Nicolas Boudin
You are making invalid assumptions. Have a look into /usr/include/cygwin/types.h and /usr/include/sys/sysmacros.h and see the light. After that, make a mental note: Never create a device number other than by using the makedev macro OK, thank you. :) Now that I am enlightened I will

find dir expr1 -o expr2 does not work

2006-06-21 Thread root
Hi, I posted my request for help, but the client i used truncated the message. I post it again for your attention. By the way find common -type f -o -type l -print does not works either. I think the -o flag is returning false. I am trying to make a tar with files that are in a directory and

ssh password-less cmds to Windows 2003 don't return any output

2006-06-21 Thread John McNulty
Hello, I've been testing executing command via password-less SSH (public key) logins from MacOSX and OpenVMS clients to a Redhat EL AS 4 server, and a WinXP Home system (with Cygwin's OpenSSH). All works ok and I can issue test commands like: $ ssh [EMAIL PROTECTED] ipconfig and see the

Re: loop through folders

2006-06-21 Thread smanna
Igor Peshansky-2 wrote: P.S. For a non-Cygwin question, this is getting an awful lot of replies. Thanks for your help guys, sorry for the out-of-scope question. Newbie mistake :S -- View this message in context: http://www.nabble.com/loop-through-folders-t1814116.html#a4972239 Sent

Re: find dir expr1 -o expr2 does not work

2006-06-21 Thread Eric Blake
Hi, I posted my request for help, but the client i used truncated the message. I post it again for your attention. I've now seen substantially the same message content three times. By the way find common -type f -o -type l -print does not works either. It does what it was told, but is the

RE: Re: window resizing not updating COLUMNS and LINES

2006-06-21 Thread Valster Nico-anv009
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of mwoehlke Sent: Thursday, June 01, 2006 1:47 AM To: cygwin@cygwin.com Subject: Re: window resizing not updating COLUMNS and LINES Samuel Thibault wrote: mwoehlke, le Wed 31 May 2006 17:19:15 -0500,

RE: sed: 4.1.5 breaks libtool generation

2006-06-21 Thread Stepp, Charles
It is? -Original Message- From: Christopher Faylor [mailto:[EMAIL PROTECTED] Sent: Saturday, June 17, 2006 12:30 AM To: cygwin@cygwin.com Subject: Re: sed: 4.1.5 breaks libtool generation On Sat, Jun 17, 2006 at 02:24:00PM +1000, Mark Hessling wrote: Given the fact that cygwin runs on a

RE: 1.5.19: tar runs normally from command line but terminates early when run from crontab

2006-06-21 Thread Stepp, Charles
From a Unix viewpoint, running from cron does not set the environment the same as with an interactive session. I have sometimes had to set TERM=vt100 (or whatever) and other environment variables to get things to run from cron. One trick it to capture your environment to a file, edit out what you

RE: ssh password-less cmds to Windows 2003 don't return any output

2006-06-21 Thread Harig, Mark
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of John McNulty Sent: Wednesday, June 21, 2006 7:07 AM To: cygwin@cygwin.com Subject: ssh password-less cmds to Windows 2003 don't return any output Hello, I've been testing executing command via

Re: Thread Injection + Cygwin problems

2006-06-21 Thread Christopher Faylor
On Wed, Jun 21, 2006 at 07:44:15AM +0100, Kaveh Goudarzi wrote: cgf wrote: The problem may be due to the fact that the injected thread doesn't have a cygtls area. If the thread is injected prior to the completion of cygwin's initialization or if it somehow bypasses the DLL_THREAD_ATTACH phase of

Re: find dir expr1 -o expr2 does not work

2006-06-21 Thread Igor Peshansky
On Wed, 21 Jun 2006, root wrote: Hi, I posted my request for help, but the client i used truncated the message. I post it again for your attention. By the way find common -type f -o -type l -print does not works either. I think the -o flag is returning false. I have a nagging suspicion

Problems using 'mkdirhier'

2006-06-21 Thread Angelo Graziosi
Trying to build an application downloaded from the web, the make fails using 'mkdirhier'. I have reproduced this with the following example: As Administrator: - $ cd $ mkdirhier /home/Administrator/foo1/foo2/lib mkdir: cannot create directory `//home': No such

Re: ssh password-less cmds to Windows 2003 don't return any output

2006-06-21 Thread Igor Peshansky
On Wed, 21 Jun 2006, John McNulty wrote: Hello, I've been testing executing command via password-less SSH (public key) logins from MacOSX and OpenVMS clients to a Redhat EL AS 4 server, and a WinXP Home system (with Cygwin's OpenSSH). All works ok and I can issue test commands like: $

Re: checkdir: cannot create extraction directory

2006-06-21 Thread Larry Hall (Cygwin)
bh77 wrote: $ cygcheck unzip Found: C:\cygwin\bin\unzip.exe C:/cygwin/bin/unzip.exe C:\cygwin\bin\cygwin1.dll C:\WINDOWS\system32\ADVAPI32.DLL C:\WINDOWS\system32\ntdll.dll C:\WINDOWS\system32\KERNEL32.dll C:\WINDOWS\system32\RPCRT4.dll OK then. Well, I guess it's

Re: ssh password-less cmds to Windows 2003 don't return any output

2006-06-21 Thread Andrew DeFaria
John McNulty wrote: However I've just installed and configured Cygwin OpenSSH on a Windows 2003 server, and setup password-less logins (via public keys) as before. But when I try and issue a command via ssh from the client I get no command output back at all. The remote command just

RE: Re: window resizing not updating COLUMNS and LINES

2006-06-21 Thread Igor Peshansky
On Wed, 21 Jun 2006, Valster Nico-anv009 wrote: -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of mwoehlke Sent: Thursday, June 01, 2006 1:47 AM To: [EMAIL PROTECTED] http://cygwin.com/acronyms/#PCYMTNQREAIYR. Thanks. [snip] P.S. rxvt behaves

RE: sed: 4.1.5 breaks libtool generation

2006-06-21 Thread Igor Peshansky
http://cygwin.com/acronyms/#TOFU reformatted. On Wed, 21 Jun 2006, Stepp, Charles wrote: -Original Message- From: Christopher Faylor [mailto:[EMAIL PROTECTED] Sent: Saturday, June 17, 2006 12:30 AM To: [EMAIL PROTECTED] http://cygwin.com/acronyms/#PCYMTNQREAIYR. Thanks. Subject:

Re: ssh password-less cmds to Windows 2003 don't return any output

2006-06-21 Thread Corinna Vinschen
On Jun 21 08:29, Andrew DeFaria wrote: The change is necessary since W2K3 tightened up security and permissions on the Local System Account such that sshd would not be able to switch user if it used that account. Instead it offers to create a new account called sshd_server and bestow on it

Re: Problems using 'mkdirhier'

2006-06-21 Thread Igor Peshansky
On Wed, 21 Jun 2006, Angelo Graziosi wrote: Trying to build an application downloaded from the web, the make fails using 'mkdirhier'. I have reproduced this with the following example: As Administrator: - $ cd $ mkdirhier

RE: Problem creating device files

2006-06-21 Thread Sam Robb
On Wed, 2006-06-21 at 11:11 +0200, Nicolas Boudin wrote: You are making invalid assumptions. Have a look into /usr/include/cygwin/types.h and /usr/include/sys/sysmacros.h and see the light. After that, make a mental note: Never create a device number other than by using the makedev

RE: ssh password-less cmds to Windows 2003 don't return any output

2006-06-21 Thread Harig, Mark
-Original Message- From: John McNulty [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 21, 2006 12:48 PM To: Harig, Mark Subject: Re: ssh password-less cmds to Windows 2003 don't return any output On 21/06/06, Harig, Mark [EMAIL PROTECTED] wrote: I do not see this and I do

Re: ssh password-less cmds to Windows 2003 don't return any output

2006-06-21 Thread John McNulty
On 21/06/06, Igor Peshansky [EMAIL PROTECTED] wrote: Cygwin ssh (and basically all terminals except the Windows console) use pipes to emulate ttys (so-called ptys). Some Windows applications don't like these ptys and won't write data to them (and they will certainly not detect them as a

Re: ssh password-less cmds to Windows 2003 don't return any output

2006-06-21 Thread John McNulty
On 21/06/06, John McNulty [EMAIL PROTECTED] wrote: Privilege Separation? Yes Create local user SSHd? Yes Install SSHd as a service? Yes CYGWIN = enter ntsec Whoops, that was from a log from the WinXP install. The correct log includes the bit about the sshd_server. Sorry. -- Unsubscribe

Re: ssh password-less cmds to Windows 2003 don't return any output

2006-06-21 Thread John McNulty
On 21/06/06, Andrew DeFaria [EMAIL PROTECTED] wrote: Are you sure it works at all? Did you check /var/log/sshd.log on the W2K3 server for errors? It might be that the ssh isn't running the command at all rather it's aborting. sshd.log is empty. However from my other replies you can see that

Re: ssh password-less cmds to Windows 2003 don't return any output

2006-06-21 Thread Larry Hall (Cygwin)
John McNulty wrote: On 21/06/06, Igor Peshansky [EMAIL PROTECTED] wrote: Cygwin ssh (and basically all terminals except the Windows console) use pipes to emulate ttys (so-called ptys). Some Windows applications don't like these ptys and won't write data to them (and they will certainly not

Re: ssh password-less cmds to Windows 2003 don't return any output

2006-06-21 Thread John McNulty
On 21/06/06, Larry Hall (Cygwin) [EMAIL PROTECTED] wrote: What does 'ssh [EMAIL PROTECTED] cygcheck ls' say? If I ssh login and then run 'cygcheck ls' then I get... $ cygcheck ls Found: C:\cygwin\bin\ls.exe C:/cygwin/bin/ls.exe C:\cygwin\bin\cygwin1.dll C:\WINDOWS\system32\ADVAPI32.DLL

Re: Thread Injection + Cygwin problems

2006-06-21 Thread Kaveh Goudarzi
Christopher Faylor wrote: On Wed, Jun 21, 2006 at 07:44:15AM +0100, Kaveh Goudarzi wrote: cgf wrote: Sorry. Don't know. I've given you the basic facts but researching this further is not something that I'm interested in doing. Your use is very much a corner case and if it doesn't work then

Re: ssh password-less cmds to Windows 2003 don't return any output

2006-06-21 Thread Robin Walker
--On 21 June 2006 18:50 +0100 John McNulty wrote: However, I just noticed something really else really weird. Repeating the remote 'ls' command in succession _sometimes_ works. # ssh [EMAIL PROTECTED] ls # ssh [EMAIL PROTECTED] ls # ssh [EMAIL PROTECTED] ls bar exit-bad exit-good saved-files

RE: sed: 4.1.5 breaks libtool generation

2006-06-21 Thread Stepp, Charles
By Gawk! You're right! Sed broke one on my little scripts, but there is an easy work around. It isn't really sed so much as white space confusion. -Original Message- From: Igor Peshansky [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 21, 2006 11:47 AM To: Stepp, Charles Cc:

Re: setup - duplicating cygwin

2006-06-21 Thread Shankar Unni
Jim Easton wrote: cd /cygdrive/c/cygwin cd proc For which I received the message: bash: cd: proc: No such file or directory Of course. As you surmised, these two are *NOT* the same. The literal path /proc (and /dev) are treated specially. Unlike on linux, mount is not modifying the kernel

Re: Latest Cygwin Release 5 month old...

2006-06-21 Thread Jim Drash
Not everyone has a spare test machine. I can never remember if we are supposed to top-quote or not. But here goes: If you need a spare test machine you should look into the VMWare Player. It is free and allows you to run a Virtual Machine on your desktop. Saying: I don't have a spare machine,

RE: Latest Cygwin Release 5 month old...

2006-06-21 Thread Charli Li
-Original Message- From: [EMAIL PROTECTED] Sent: Wednesday, June 21, 2006 4:04 PM To: cygwin@cygwin.com Subject: Re: Latest Cygwin Release 5 month old... Not everyone has a spare test machine. I can never remember if we are supposed to top-quote or not. But here goes: If you

Re: Latest Cygwin Release 5 month old...

2006-06-21 Thread Brian Bruns
On Wednesday, June 21, 2006 4:14 PM [EST], Charli Li wrote: VMWare player is only for *PLAYING* VMWare files. In order to set a VM up you gotta get VMWare Desktop or VMWare Server, like I have here on my box. Plus, VMs are much, much slower than normal boxes so it's not really a red herring if

Re: Problems using 'mkdirhier'

2006-06-21 Thread David Arnstein
On Wed, Jun 21, 2006 at 12:05:52PM -0400, Igor Peshansky wrote: Most of the above is irrelevant. This sounds like a bug in mkdirhier, and I also seem to recall that it was mentioned on the Cygwin lists before, with proposed fixes. Apparently, the fixes haven't been incorporated in

Re: Problems using 'mkdirhier'

2006-06-21 Thread Angelo Graziosi
On Wed, 21 Jun 2006, Igor Peshansky wrote: On Wed, 21 Jun 2006, Angelo Graziosi wrote: Trying to build an application downloaded from the web, the make fails using 'mkdirhier'. I have reproduced this with the following example: As Administrator: -

How to create dll in cygwin

2006-06-21 Thread cxf
Hello,everyone: I want to create a dll from source file, how to create dll in cygwin, can anyone give me some tips. Can cygwin create static library(.lib file)? -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html

Re: How to create dll in cygwin

2006-06-21 Thread Larry Hall (Cygwin)
cxf wrote: Hello,everyone: I want to create a dll from source file, how to create dll in cygwin, can anyone give me some tips. Yes, certainly. Please avail yourself of the existing Cygwin resources found at www.cygwin.com. For specific information on building DLLs, see the proper

updwtmpx

2006-06-21 Thread Luis P Caamano
The latest gnome-terminal, which works nicely btw, complaints before first start that it cannot find updwtmpx in cygwin1.dll. I see that it was added back in February but I can't figure out which version includes it. http://article.gmane.org/gmane.os.cygwin.cvs/2345/match=updwtmpx+cygwin

Re: updwtmpx

2006-06-21 Thread Igor Peshansky
On Thu, 22 Jun 2006, Luis P Caamano wrote: The latest gnome-terminal, which works nicely btw, complaints before first start that it cannot find updwtmpx in cygwin1.dll. I see that it was added back in February but I can't figure out which version includes it.

how to create static library in cygwin

2006-06-21 Thread cxf
Hello, everyone: I compile source files, create a dll file cygtspi.dll , an import file libtspi.dll.a and a link file libtspi.la,How can I use the dll in windows(such as using the dll in VC). the cygtspi.dll seems depends on several cygwin's dll. Another question: How can I create the