Re: The C locale

2009-09-23 Thread Thorsten Kampe
* Lapo Luchini (Wed, 23 Sep 2009 07:11:48 +0200) > > Thorsten Kampe wrote: > > * Lapo Luchini (Tue, 22 Sep 2009 18:26:32 +0200) > >> But cmd.exe isn't even capable of printing the Euro sign (no cygwin > >> involved, I mean the plain Windows Prompt), I guess there's no hope to > >> ever seeing in t

Re: how to let cygwin does not mount /bin /usr/bin automaticlly?

2009-09-23 Thread Fergus
That is great. Thanks for your patient. I have another question. Can the first field of fstab use relative path. I expect to make the cygwin portable, that is, i need to move it to somewhere esle without changing the fstab every time. If you are using Cygwin in portable mode (presumably on a sti

Re: [1.7] rename/renameat error

2009-09-23 Thread Corinna Vinschen
On Sep 22 21:02, Eric Blake wrote: > Eric Blake byu.net> writes: > > > > > > Cygwin 1.7 is > > > > > detecting this situation (which is a step up from 1.5 which did the > rename > > > > > anyways), but sets errno to EBUSY instead of EINVAL. > > > > > > > > Thanks for catching. Feel free to fix

Re: The C locale

2009-09-23 Thread Lapo Luchini
Thorsten Kampe wrote: >> I created a file "aà€私.txt" in WinExplorer, and then: >> >> 23/09/2009 06.58 0 aà??.txt >>1 File(s) 0 bytes > > Works for me, too. Maybe not only the codepage but also the GUI locale > settings are involved. This is on Windows

Rsync and Alternate Data Streams

2009-09-23 Thread Andreas Heinlein
Hello, no, I do *not* want to transfer ADS with rsync, that would be an FAQ ;-) But I have setup rsyncd on a windows host using cygwin. This machine hosts files with ADS which are created by Antivirus software and change frequently. I do not need to save these ADS, but somehow they seem to lead r

Is this a known problem with getenv() ?

2009-09-23 Thread John Emmas
I first started using cygwin almost exactly a year ago. Because of other pressures I put it on the back burner (about 6 months ago) at which point, it was current. However, I haven't upgraded for about 6 months. This morning I needed to compile an app that uses the C call, getenv("PATH"); Let'

Re: [1.7] Invalid UTF8 while creating a file -> cannot delete?

2009-09-23 Thread Andy Koppe
2009/9/22 Corinna Vinschen: >> >> Therefore, when converting a UTF-16 Windows filename to the current >> >> charset, 0xDC?? words should be treated like any other UTF-16 word >> >> that can't be represented in the current charset: it should be encoded >> >> as a ^N sequence. (I started writing thi

Re: [1.7] Invalid UTF8 while creating a file -> cannot delete?

2009-09-23 Thread Corinna Vinschen
On Sep 22 19:07, Corinna Vinschen wrote: > On Sep 22 17:12, Andy Koppe wrote: > > True, but that's an implementation issue rather than a design issue, > > i.e. the ^N conversion needs to do the UTF-8 conversion itself rather > > than invoke the __utf8 functions. Shall I look into creating a patch?

Re: The C locale

2009-09-23 Thread Andy Koppe
2009/9/23 Lapo Luchini: >> Works for me, too. Maybe not only the codepage but also the GUI locale >> settings are involved. This is on Windows 7. > > Oh, that's interesting, it may be they improved the console in Win7? > Did you see only the euro or also the Japanese character? > > Uh, nope. I stil

Re: Rsync and Alternate Data Streams

2009-09-23 Thread Corinna Vinschen
On Sep 23 13:34, Andreas Heinlein wrote: > Hello, > > no, I do *not* want to transfer ADS with rsync, that would be an FAQ ;-) > > But I have setup rsyncd on a windows host using cygwin. This machine > hosts files with ADS which are created by Antivirus software and change > frequently. I do not

Re: Is this a known problem with getenv() ?

2009-09-23 Thread Corinna Vinschen
On Sep 23 12:46, John Emmas wrote: > I first started using cygwin almost exactly a year ago. Because of other > pressures I put it on the back burner (about 6 months ago) at which point, > it was current. However, I haven't upgraded for about 6 months. > > This morning I needed to compile an app

Re: Rsync and Alternate Data Streams

2009-09-23 Thread Andreas Heinlein
Corinna Vinschen schrieb: > On Sep 23 13:34, Andreas Heinlein wrote: > >> Hello, >> >> no, I do *not* want to transfer ADS with rsync, that would be an FAQ ;-) >> >> But I have setup rsyncd on a windows host using cygwin. This machine >> hosts files with ADS which are created by Antivirus softwa

Re: [1.7] Invalid UTF8 while creating a file -> cannot delete?

2009-09-23 Thread Andy Koppe
2009/9/23 Corinna Vinschen: > I have a local patch ready to use the ANSI codepage by default in the > "C" locale.  It appears to work nicely and has the additional positive > side effect to simplify the code in a few places. > > If I only new that eastern language users could happily live with > th

Re: Rsync and Alternate Data Streams

2009-09-23 Thread Dave Korn
Andreas Heinlein wrote: > thanks for your reply. It turned out I had not checked closely enough. I > found out it has nothing to do with ADS, but with file ownership. Some > of the files in question have UID and GID 4294967295 (aka 2^32-1), > though they are owned by a valid Domain User. Rsync on

Re: Rsync and Alternate Data Streams

2009-09-23 Thread Corinna Vinschen
On Sep 23 14:25, Andreas Heinlein wrote: > thanks for your reply. It turned out I had not checked closely enough. I > found out it has nothing to do with ADS, but with file ownership. Some > of the files in question have UID and GID 4294967295 (aka 2^32-1), > though they are owned by a valid Domain

Re: [1.7] Invalid UTF8 while creating a file -> cannot delete?

2009-09-23 Thread Corinna Vinschen
On Sep 23 13:34, Andy Koppe wrote: > 2009/9/23 Corinna Vinschen: > > I have a local patch ready to use the ANSI codepage by default in the > > "C" locale.  It appears to work nicely and has the additional positive > > side effect to simplify the code in a few places. > > > > If I only new that east

Re: Is this a known problem with getenv() ?

2009-09-23 Thread John Emmas
- Original Message - From: "Corinna Vinschen" I can't reproduce this behaviour. Maybe the cygcheck output as described here Problem reports: http://cygwin.com/problems.html would help to figure out what's wrong on your machine. Many

Re: [1.7] Invalid UTF8 while creating a file -> cannot delete?

2009-09-23 Thread Corinna Vinschen
On Sep 23 14:43, Corinna Vinschen wrote: > On Sep 23 13:34, Andy Koppe wrote: > > 2009/9/23 Corinna Vinschen: > > > I have a local patch ready to use the ANSI codepage by default in the > > > "C" locale.  It appears to work nicely and has the additional positive > > > side effect to simplify the co

Re: how to let cygwin does not mount /bin /usr/bin automaticlly?

2009-09-23 Thread Christopher Faylor
On Wed, Sep 23, 2009 at 12:37:58PM +0800, "???" wrote: >> The entry that you used in your previous mail was not correctly formatted. >> >> It should be something like: >> >> f:/cygwin_1.7/usr/bin /usr/bin ntfs binary 0 0 > >That is great. Thanks for your patient. >I have another questio

Re: [1.7] rename/renameat error

2009-09-23 Thread Christopher Faylor
On Wed, Sep 23, 2009 at 11:22:09AM +0200, Corinna Vinschen wrote: >On Sep 22 21:02, Eric Blake wrote: >>Eric Blake byu.net> writes: >> >>Cygwin 1.7 is detecting this situation (which is a step up from 1.5 >>which did the >>rename >>anyways), but sets errno to EBUSY instead of EINVAL. >

Re: how to let cygwin does not mount /bin /usr/bin automaticlly?

2009-09-23 Thread ︶ㄣ無名氏
> That's one of those "Why not just try it" questions but the answer is > "no".  How could that possibly work? Thanks. I have tried it. I think it is possible. The relative path can be convented the absolute path according to where cygwin1.dll lives. -- Problem reports: http://cygwin.com/p

Automatisation of deployement of home-made package, and file permissions

2009-09-23 Thread Nicolas Charles
Hello, I'm trying to automate the deployement of applications on computers, so I created a package (let's call it mypackage-3.0) So I created a mypackage-3.0.tar.bz2 with all the necessary files, and a /etc/postinstall/mypackage.sh script to set up files permissions. I added the package in a

Fw: Permission denied (publickey,password,keyboard-interactive).

2009-09-23 Thread Dave M
Dave, I checked that readme file. Um, I am not sure what it is telling me, it is not really laid out step by step. I think it would be more useful if I read it from the bottom to the top. But still, I THINK I did everything it suggested. I had run ssh-host-config before, today I ran ssh-user-

RE: Automatisation of deployement of home-made package, and file permissions

2009-09-23 Thread Thrall, Bryan
Nicolas Charles wrote on Wednesday, September 23, 2009 9:55 AM: > I'm trying to automate the deployement of applications on computers, so > I created a package (let's call it mypackage-3.0) > So I created a mypackage-3.0.tar.bz2 with all the necessary files, and a > /etc/postinstall/mypackage.sh sc

Re: The C locale

2009-09-23 Thread Mark J. Reed
If I switch the console font to Lucida, I can see the Euro sign, too (even on XP Pro). But mixing and matching with Cygwin doesn't work well H:\>echo € | c:\cygwin\bin\od -t x1 000 3f 20 0d 0a (the Cygwin process saw the Euro sign as a question mark) but H:\>c:\cygwin\bin\echo € | c:\cygwi

puttycyg, emacsw32 and cygwin

2009-09-23 Thread Bryan Karsh
Hi guys, I updated Cygwin, and now puttycyg doesn't work. I suspect I have two copies of cygwin1.dll floating around, or maybe some environmental conflicts. I know that puttycyg doesn't work out of the box with 1.7, but I was using a modified version shown here: http://code.google.com/p/puttycyg/i

Re: Fw: Permission denied (publickey,password,keyboard-interactive).

2009-09-23 Thread Larry Hall (Cygwin)
On 09/23/2009 11:01 AM, Dave M wrote: Dave, I checked that readme file. Um, I am not sure what it is telling me, it is not really laid out step by step. I think it would be more useful if I read it from the bottom to the top. But still, I THINK I did everything it suggested. I had run ssh-host-

Re: Fw: Permission denied (publickey,password,keyboard-interactive).

2009-09-23 Thread Bryan Karsh
Hi, I had a question about this statement: "Since your user is a domain user, you need to use the '-d' flag indicated above in both commands." I am a domain user, and when I try to use the -d flag, cygwin just hangs. I'm not sure why..? On Wed, Sep 23, 2009 at 8:28 AM, Larry Hall (Cygwin) wro

Re: Fw: Permission denied (publickey,password,keyboard-interactive).

2009-09-23 Thread Larry Hall (Cygwin)
Thanks! On 09/23/2009 11:34 AM, Bryan Karsh wrote: Hi, I had a question about this statement: "Since your user is a domain user, you need to use the '-d' flag indicated above in both commands." I am a domain user, and when I try to use the -d flag,

Re: Fw: Permission denied (publickey,password,keyboard-interactive).

2009-09-23 Thread Andrew Schulman
> I had a question about this statement: > > "Since your user is a domain user, you need to use the '-d' flag > indicated above in > both commands." > > I am a domain user, and when I try to use the -d flag, cygwin just > hangs. I'm not sure why..? If your domain has a lot of users, then mkpassw

Re: puttycyg, emacsw32 and cygwin

2009-09-23 Thread Christopher Faylor
On Wed, Sep 23, 2009 at 08:25:53AM -0700, Bryan Karsh wrote: >Hi guys, > >I updated Cygwin, and now puttycyg doesn't work. I suspect I have two >copies of cygwin1.dll floating around, or maybe some environmental >conflicts. I know that puttycyg doesn't work out of the box with 1.7, >but I was using

Re: Fw: Permission denied (publickey,password,keyboard-interactive).

2009-09-23 Thread Dave M
Andrew, Is this another thread with the same subject? The only users I am testing with are local users on a server. I did not do the -d command, becuase I don't really need it to read domain accounts. Sorry if I am interrupting a conversation with another poster. Dave M - Original Mes

Re: Fw: Permission denied (publickey,password,keyboard-interactive).

2009-09-23 Thread Bryan Karsh
Sorry -- that was me. I had started a different thread within the thread. I apologize! On Wed, Sep 23, 2009 at 8:52 AM, Dave M wrote: > Andrew, >  Is this another thread with the same subject? >  The only users I am testing with are local users on a server. I did not do > the -d command, becuase

[ANNOUNCEMENT] New package: socat

2009-09-23 Thread Andrew Schulman
The socat package is now available in the Cygwin distribution. Version 1.7.1.1-1 is current, and version 2.0.0b3-1 (a beta release of socat version 2) is in test. socat (socket cat) is a relay for bidirectional data transfer between two independent data channels. Each of these data channels may b

Re: Fw: Permission denied (publickey,password,keyboard-interactive).

2009-09-23 Thread Dave M
Brian, I never saw that, is there a way to get archives of this list for recent mail? Why would my subscription to this list be sending me part of the mail sent to this list? Have there been any other posts about my problem besides Dave K's? Dave M - Original Message From: Bryan K

[1.7] "clear" missing?

2009-09-23 Thread Gustavo Seabra
Hi, I just finished a new install of cygwin-1.7. It seems to be working fine now, but the "clear" command seems to be missing: $ clear bash: clear: command not found Is this expected? Was I supposed to check some special package during installation? Thanks, Gustavo Seabra. -- Problem reports:

Re: [1.7] "clear" missing?

2009-09-23 Thread Larry Hall (Cygwin)
On 09/23/2009 12:40 PM, Gustavo Seabra wrote: Hi, I just finished a new install of cygwin-1.7. It seems to be working fine now, but the "clear" command seems to be missing: $ clear bash: clear: command not found Is this expected? Was I supposed to check some special package during installation

Re: [1.7] "clear" missing?

2009-09-23 Thread Andy Koppe
2009/9/23 Larry Hall: > On 09/23/2009 12:40 PM, Gustavo Seabra wrote: >> >> Hi, >> >> I just finished a new install of cygwin-1.7. It seems to be working >> fine now, but the "clear" command seems to be missing: >> >> $ clear >> bash: clear: command not found >> >> Is this expected? Was I supposed

Re: Fw: Permission denied (publickey,password,keyboard-interactive).

2009-09-23 Thread Andrew Schulman
> Brian, > I never saw that, is there a way to get archives of this list for recent > mail? http://cygwin.com/ml/cygwin/2009-09/threads.html http://news.gmane.org/gmane.os.cygwin -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentati

Re: [1.7] "clear" missing?

2009-09-23 Thread Gustavo Seabra
On Wed, Sep 23, 2009 at 1:44 PM, Larry Hall (Cygwin) wrote: > On 09/23/2009 12:40 PM, Gustavo Seabra wrote: >> >> Hi, >> >> I just finished a new install of cygwin-1.7. It seems to be working >> fine now, but the "clear" command seems to be missing: >> >> $ clear >> bash: clear: command not found

Re: [1.7] "clear" missing?

2009-09-23 Thread Gustavo Seabra
On Wed, Sep 23, 2009 at 1:52 PM, Gustavo Seabra wrote: > On Wed, Sep 23, 2009 at 1:44 PM, Larry Hall (Cygwin) > wrote: >> On 09/23/2009 12:40 PM, Gustavo Seabra wrote: >>> >>> Hi, >>> >>> I just finished a new install of cygwin-1.7. It seems to be working >>> fine now, but the "clear" command see

Re: Is this a known problem with getenv() ?

2009-09-23 Thread John Emmas
- Original Message - From: "John Emmas" I might just try experimenting with a very simple program and see if I still get the error I partially tracked down the problem, although I don't quite know how to solve it. If I write this simple console app:- #include #include int main ()

Re: Fw: Permission denied (publickey,password,keyboard-interactive).

2009-09-23 Thread Dave M
Larry, I started with the just running the script and it didn't work. I have only been trying chmod and the other stuff in my previous post since then. Will I get more help if I uninstall everything and try it again? I am just trying to get sftp to work. I'll run mkpasswd -d je28...@tjan

Re: puttycyg, emacsw32 and cygwin

2009-09-23 Thread Dave Korn
Christopher Faylor wrote: > On Wed, Sep 23, 2009 at 08:25:53AM -0700, Bryan Karsh wrote: >> Hi guys, >> >> I updated Cygwin, and now puttycyg doesn't work. I suspect I have two >> copies of cygwin1.dll floating around, or maybe some environmental >> conflicts. I know that puttycyg doesn't work out

Re: [1.7] "clear" missing?

2009-09-23 Thread Larry Hall (Cygwin)
On 09/23/2009 12:52 PM, Gustavo Seabra wrote: On Wed, Sep 23, 2009 at 1:44 PM, Larry Hall (Cygwin) wrote: ^ . Thanks. On 09/23/2009 12:40 PM, Gustavo Seabra wrote: Hi, I just finished a new install of cygwin-1.7. It seems

RE: Permission denied (publickey,password,keyboard-interactive).

2009-09-23 Thread Dave M
Larry, I can't get the mkpasswd command see my domain account, I get: $ mkpasswd -d -u je28...@tjanus.cap>> /etc/passwd mkpasswd (272): [2221] The user name could not be found. je28...@s-exsyslog01 ~ $ mkpasswd -d -u janusdev\je28004>> /etc/passwd mkpasswd (272): [2221] The user name could no

Re: puttycyg, emacsw32 and cygwin

2009-09-23 Thread Andrew Schulman
> On Wed, Sep 23, 2009 at 08:25:53AM -0700, Bryan Karsh wrote: > >Hi guys, > > > >I updated Cygwin, and now puttycyg doesn't work. I suspect I have two > >copies of cygwin1.dll floating around, or maybe some environmental > >conflicts. I know that puttycyg doesn't work out of the box with 1.7, > >b

Re: Fw: Permission denied (publickey,password,keyboard-interactive).

2009-09-23 Thread Andrew Schulman
> Brian, > I never saw that, is there a way to get archives of this list for recent > mail? I'm also seeing some delays in list mail delivery today. -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com

Re: Fw: Permission denied (publickey,password,keyboard-interactive).

2009-09-23 Thread Larry Hall (Cygwin)
. Thanks. On 09/23/2009 12:56 PM, Dave M wrote: Larry, I started with the just running the script and it didn't work. I have only been trying chmod and the other stuff in my previous post since then. Will I get more help if I uninstall everything and

Re: Permission denied (publickey,password,keyboard-interactive).

2009-09-23 Thread Larry Hall (Cygwin)
On 09/23/2009 01:10 PM, Dave M wrote: I can't get the mkpasswd command see my domain account, I get: $ mkpasswd -d -uje28...@tjanus.cap>> /etc/passwd mkpasswd (272): [2221] The user name could not be found. Your syntax is wrong. Use just 'je28004' if you want that user's domain informati

Vim removes write permission when writing file not owned by current user on Samba share

2009-09-23 Thread Nikolai Weibull
Suprise! Another permission problem! This is a problem I’m guessing stems from three different sources: Vim, Cygwin, and Samba. With set backupcopy=auto Vim on Cygwin 1.7 removes write permission when writing a file not owned by the current user on a Samba share. The Samba share has ACL suppo

Cygwin portable bash

2009-09-23 Thread Andy Holt
Hey everyone, I installed cygwin on my laptop (domain andy-laptop), and it works great from here. I installed in a special folder ("My Dropbox") which uses the free dropbox service online to synchronize the folder accross multiple machines (my other machine is andy-desktop). On the desktop mac

RE: sftp on a Windows 2003 server

2009-09-23 Thread Dave M
Larry (or anyone), OK, I uninstalled everything. I can't seem to find any docs that describe how to install sftp on http://cygwin.com/1.7/cygwin-ug-net/cygwin-ug-net.html I am still searching though. What packages do I need for public-key authenticated sftp on an internal network (this wo

Re: sftp on a Windows 2003 server

2009-09-23 Thread Larry Hall (Cygwin)
On 09/23/2009 02:41 PM, Dave M wrote: Larry (or anyone), OK, I uninstalled everything. I can't seem to find any docs that describe how to install sftp on http://cygwin.com/1.7/cygwin-ug-net/cygwin-ug-net.html RIght, that's too specific for the Users Guide. Package-specific documentation is in

Re: sftp on a Windows 2003 server

2009-09-23 Thread Dave M
Larry, OK, I installed the defaults, except for the following: I added zip and unzip I picked the "Install" option for the entire admin group of packages I added openssh I agreed to dependencies (and befoer that it selected more than one package when I clicked on most of these) The env

Re: Re: Cygwin 1.7 message queues - permission denied error still exists

2009-09-23 Thread René Liebscher
Corinna Vinschen schrieb: > On Sep 13 16:32, Christopher Faylor wrote: > >> I just modified the test case from the original report: >> >> > cut here<<< > >> >>> here was the test case which opens 2 queues un same process <<< >> > cut here<<< > >> I

Re: sftp on a Windows 2003 server

2009-09-23 Thread Larry Hall (Cygwin)
On 09/23/2009 03:25 PM, Dave M wrote: Two questions: 1) Should I run the ssh-host-config now or wait until the mkgroup issue is resolved? Since you plan to use a local user for ssh/sftp, you can skip the mkgroup issue for now. 2) Do I need to resolve the mkgroup issue, and if so, how?

Re: sftp on a Windows 2003 server

2009-09-23 Thread Dave M
Larry, Here is the cygcheck -srv output: Cygwin Configuration Diagnostics Current System Time: Wed Sep 23 14:16:36 2009 Windows 2003 Server Ver 5.2 Build 3790 Service Pack 2 Running in Terminal Service session Path:C:\cygwin\usr\local\bin C:\cygwin\bin C:\cygwin\bin C:\cygwin\

Re: sftp on a Windows 2003 server

2009-09-23 Thread Dave M
Here is what happened when I tried to run the script: $ ssh-host-config *** Query: Overwrite existing /etc/ssh_config file? (yes/no) yes *** Info: Creating default /etc/ssh_config file *** Query: Overwrite existing /etc/sshd_config file? (yes/no) yes *** Info: Creating default /etc/sshd_config file

Using bash(cygwin) inside C# program

2009-09-23 Thread amir knippel
Hey everyone, i need to use bash shell "inside" C# program. I want to mimic user typing in interactive mode and running cygwin commands. i created a process that runs bash and redirect stdin,stout and std error but I can’t get tty to work attached is a sample code that starts bash process and redi

Re: sftp on a Windows 2003 server

2009-09-23 Thread Larry Hall (Cygwin)
Dave, . Please. It's really not polite to include the email address of others in the body of your reply. It just opens them up to more spam. On 09/23/2009 04:23 PM, Dave M wrote: Then I wrote: On 09/23/2009 03:25 PM, Dave M wrote: Two quest

Re: sftp on a Windows 2003 server

2009-09-23 Thread Larry Hall (Cygwin)
Again, . On 09/23/2009 04:47 PM, Dave M wrote: Here is what happened when I tried to run the script: $ ssh-host-config *** Query: Overwrite existing /etc/ssh_config file? (yes/no) yes *** Info: Creating default /etc/ssh_config file *** Query: Overwrite

Re: sftp on a Windows 2003 server

2009-09-23 Thread Dave M
Larry, I am SO sorry, I didn't even see that there was an address in the original message. Dave M --- On Wed, 9/23/09, Larry Hall (Cygwin) wrote: > From: Larry Hall (Cygwin) > Subject: Re: sftp on a Windows 2003 server > To: cygwin@cygwin.com > Date: Wednesday, September 23, 2009, 3:06 PM >

Re: Using bash(cygwin) inside C# program

2009-09-23 Thread Dave Korn
amir knippel wrote: > i created a process that runs bash and redirect stdin,stout and std error > but I can’t get tty to work attached is a sample code that starts bash > process and redirect the input/output. > the problem is that i don't have tty device. if i try to run tty command or > stty com

Re: [1.7] Invalid UTF8 while creating a file -> cannot delete?

2009-09-23 Thread Ross Smith
Corinna Vinschen wrote: However, if we default to UTF-8 for a subset of languages anyway, it gets even more interesting to ask, why not for all languages? Isn't it better in the long run to have the same default for all Cygwin installations? I'm really wondering if we shouldn't simply default

Re: sftp on a Windows 2003 server

2009-09-23 Thread Larry Hall (Cygwin)
On 09/23/2009 05:15 PM, Dave M wrote: I am SO sorry, I didn't even see that there was an address in the original message. While I trust your sentiment is genuine, it would carry more weight if your reply didn't twice quote the email address I'm using and once quote the list's... -- Larry Ha

Re: sftp on a Windows 2003 server

2009-09-23 Thread Dave M
Larry, OK, I checked my web mail and I don't see that option. I am not sure which e-mail addresses are a problem. One looks like an invalid address (yours) and the other is the list address. Either way, I'll delete them manually from now on. It wasn't my intention to make anyone's life hard

Re: sftp on a Windows 2003 server

2009-09-23 Thread Larry Hall (Cygwin)
On 09/23/2009 05:44 PM, Dave M wrote: Larry, OK, I checked my web mail and I don't see that option. Yeah, that's a common oversight for web email clients... I am not sure which e-mail addresses are a problem. One looks like an invalid address (yours) and the other is the list address. In ge

Re: sftp on a Windows 2003 server

2009-09-23 Thread Dave M
Larry, Before I ran setup, I exited from all Cygwin docs, apps, etc. I deleted everything, files, folders, users, registry entries, anything I could think of. I rebooted the server. I ran setup and the only thing I enabled was openssh. This is the results I got when I logged onto hte bash s

Re: sftp on a Windows 2003 server

2009-09-23 Thread Larry Hall (Cygwin)
On 09/23/2009 06:28 PM, Dave M wrote: *** Warning: The file /etc/passwd is not readable by all. *** Warning: Please run 'chmod +r /etc/passwd'. *** Warning: The file /etc/group is not readable by all. *** Warning: Please run 'chmod +r /etc/group'. *** ERROR: Problem with LocalSystem or Adminstrat

Re: Is this a known problem with getenv() ?

2009-09-23 Thread John Emmas
Regarding my problem (extra entries being added to my path when I run a program under X11) I've tracked the problem down a bit further and I've realised that it isn't a problem with getenv(). In actual fact, the problem seems to be caused by startxwin.bat and xterm, which both seem to be contribu