Re: Hate to say it, but...I've got the (dreadded) PID problem

2003-03-23 Thread Pierre A. Humblet
At 02:46 AM 3/23/2003 -, Elfyn McBratney wrote: >Hate to say it, but...I've got the (dreadded) PID problem Do you mean e.g. http://cygwin.com/ml/cygwin/2003-03/msg01350.html >Hello everyone, > >I haven't been here in a while as my main computer died and I was >practically Cygwin'less. I have

Re: Added setup.exe to User's Guide

2003-03-23 Thread Pierre A. Humblet
On Sun, Mar 23, 2003 at 10:39:40AM -0600, Joshua Daniel Franklin wrote: > I put a several people's comments inline here. Nice work, Joshua, thanks. I would still make the "Install For" explanation more direct. Something like: The Install For options of All Users or Just Me should always be All U

Re: groups and permissions...

2003-03-23 Thread Pierre A. Humblet
On Mon, Mar 24, 2003 at 12:23:46PM +0900, melchior wrote: > Hi there guys... > > i'm cross posting, and i'm sorry to those of you who also subscribe to > ssh-l. just hoping someone here might be able to lend a hand. thanks. > > so, i want to run ssh under cygwin on a win x

cygcheck calling id.exe with nontsec

2003-03-24 Thread Pierre A. Humblet
cygcheck calling id.exe with CYGWIN=nontsec has a problem... > id uid=11054(PHumblet) gid=12655(Clearusers) groups=4(AEngineering), 12655(Clearusers),10513(Domain Users),11005(Engineering), 544(Administrators),545(Users) ~> CYGWIN=nontsec id uid=11054(PHumblet) gid=12655(Clearusers) groups

Re: cygcheck calling id.exe with nontsec

2003-03-24 Thread Pierre A. Humblet
On Mon, Mar 24, 2003 at 08:22:20PM -0500, Christopher Faylor wrote: > On Mon, Mar 24, 2003 at 07:37:05PM -0500, Pierre A. Humblet wrote: > >cygcheck calling id.exe with CYGWIN=nontsec has a problem... > > At the risk of sounding ungrateful, can I point you at > http://cy

Re: Aliases no longer defined?

2003-03-31 Thread Pierre A. Humblet
On Mon, Mar 31, 2003 at 08:19:28PM -0500, Peter Davis wrote: > On Mon, 31 Mar 2003 18:15:13 -0500 > Rolf Campbell <[EMAIL PROTECTED]> wrote: > > > Peter Davis wrote: > > > I recently switched from Windows NT4 and Windows 2000 to Windows XP. I > > > installed cygwin freshly on both systems. Now I

Problem with latest CVS on WinME.

2003-04-02 Thread Pierre A. Humblet
With the latest cygwin from CVS on WinME I experience strange problems in bash, both in rxvt and cygwin.bat. I noticed it first yesterday, first time I rebuilt in about a week. >From time to time it looks like bash is running again before a command completes. Below, note the prompt *before* the

Re: Problem with latest CVS on WinME.

2003-04-02 Thread Pierre A. Humblet
I had forgotten to include cygcheck.out, here it is. Pierre Cygwin Win95/NT Configuration Diagnostics Current System Time: Thu Apr 03 00:00:29 2003 Windows ME Ver 4.90 Build 3000 Path: c:\HOME\Pierre\bin\share c:\HOME\Pierre\bin\cygwin c:\progra~1\cygwin\usr\local\bin

[ANNOUNCEMENT] Updated: exim-4.14-1

2003-04-03 Thread Pierre A. Humblet
I have updated the version of exim (a Mail Transfer Agent) to 4.14-1 This version contains 34 new features over the current 4.12, but no major changes. For details see

Re: su questions

2003-04-03 Thread Pierre A. Humblet
On Thu, Apr 03, 2003 at 12:50:06PM -0500, Igor Pechtchanski wrote: > There is no working implementation of 'su' under Cygwin. Use sshd and > "ssh -l name localhost" to switch user contexts. FWIW, su works under the limited conditions outlined below and on Win9X/ME. It is possible to create "Wi

Re: su questions

2003-04-03 Thread Pierre A. Humblet
On Thu, Apr 03, 2003 at 03:32:04PM -0300, Rodrigo Serra wrote: > > I try to use sshd and whe run "ssh localhost" whit rsa authentication the > output of the command is: > > $ ssh localhost > Last login: Thu Apr 3 15:20:24 2003 from s1.rmserra.com.ar > Fanfare!!! > You are successfully logged in t

Re: Postinstall failure: file not found

2003-04-03 Thread Pierre A. Humblet
On Thu, Apr 03, 2003 at 09:14:14PM -0500, Igor Pechtchanski wrote: > > Since this is happening on a clean install, I can only assume that there > is something wrong with the mkpasswd invocation... But I'd be very > interested in Pierre's and Corinna's opinion on this. Igor, what's your reading o

Re: Postinstall failure: file not found

2003-04-04 Thread Pierre A. Humblet
Rudiyanto Gunawan wrote: > > Ok, here is what I got > > bash-2.05b$ /usr/bin/sh -c /etc/postinstall/passwd-grp.sh.done > /etc/postinstall/passwd-grp.sh.done: not found > > I don't have /etc/passwd. After mkpasswd and mkgroup, > getfacl /etc gave me: > bash-2.05b$ /usr/bin/getfacl /etc > # file: /

Re: su questions

2003-04-04 Thread Pierre A. Humblet
Rodrigo Serra wrote: > > Pierre, > > The cygwin environment is binmode ntsec tty. This following string is > extracted from cygwin1.dll "1.3.22-dontuse-21". Windows is "Windows.NET > Server 2003" RC2. > > This happen only when try to use no password authentication. > OK, It may have to do with

Re: Postinstall failure: file not found

2003-04-04 Thread Pierre A. Humblet
OK, I've got it: /> sh -c sayhi hi /> sh -c /sayhi /sayhi: not found With strace I saw that sh uses stat (which won't show rxw rights in this case) and it behaves differently for absolute paths. Possible fixes: 1) cd to /etc/postinstall before running the scripts and use relative paths 2) Put my

Re: Postinstall failure: file not found

2003-04-04 Thread Pierre A. Humblet
On Fri, Apr 04, 2003 at 10:18:40AM -0500, Pierre A. Humblet wrote: > OK, I've got it: > > /> sh -c sayhi > hi > /> sh -c /sayhi > /sayhi: not found > > With strace I saw that sh uses stat (which won't show rxw rights > in this case) and it behaves di

Re: Postinstall failure: file not found

2003-04-04 Thread Pierre A. Humblet
On Fri, Apr 04, 2003 at 10:17:41AM -0500, Pierre A. Humblet wrote: > > Possible fixes: > > 1) cd to /etc/postinstall before running the scripts and use relative paths > > 2) Put my 2nd ntsec patch in setup (I have asked Rudiyanto to test it) > > 3) Run the postinstall scr

Re: su questions

2003-04-04 Thread Pierre A. Humblet
to enable this privilege? Pierre > -Mensaje original- > De: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] En nombre de > Pierre A. Humblet > Enviado el: Viernes, 04 de Abril de 2003 11:40 a.m. > Para: Rodrigo Serra > CC: [EMAIL PROTECTED] > Asunto: Re: su questions >

Re: su questions

2003-04-04 Thread Pierre A. Humblet
Rodrigo Serra wrote: > > Pierre > > I create a new user named init, and assigned privileges "Act as part of the > operating system", "Create a token object", "Log on as service", and > "Replace a process level token" and the ssh and su with no password prompt > work!!! > > I not understand what

Ash ntsec woes [was: Re: Postinstall failure: file not found]

2003-04-04 Thread Pierre A. Humblet
Here is how sh behaves when executing a script with strange permissions /> cat sayhi echo hi /> getfacl sayhi # file: sayhi # owner: AdministratorS # group: Users user::--- user:PHumblet:rwx group::--- mask:rwx other:--- /> sh -c sayhi<== OK hi /> sh -c /sayhi <== Does not rea

Re: group ownership of files

2003-06-06 Thread Pierre A. Humblet
kiwhan chung wrote: > Igor, > Thank you for replying. Appending ' mkgroup -d' output did not help at > all. I think I need to explain a bit. The group and mkpasswd files are > modified by me in vain attempt to get the group ownership sync. It > obviously did not solve my problem. You can see

Re: Sparse file criteria malfunction - binutils produces sparse .exe & .dll files

2003-06-06 Thread Pierre A. Humblet
On Thu, 5 Jun 2003, Max Bowsher wrote: > I threw together a horrible C program to ask Windows whether a file was > sparse. .exe and .dll files made with a 1.5.0 Cygwin are. I haven't posted > the test program, because it is too messy. #include #include main(int argc, char * argv[]) { D

Re: Sparse file criteria malfunction - binutils produces sparse .exe & .dll files

2003-06-06 Thread Pierre A. Humblet
Christopher Faylor wrote: > There has been very little actual data provided here Here is some data, using the program from http://cygwin.com/ml/cygwin/2003-06/msg00321.html I remade the executables in an old version of inetutils. The numbers below show that only the larger ones are sparse (so

Re: Sparse file performance

2003-06-06 Thread Pierre A. Humblet
Rolf Campbell wrote: > I created a 3Meg, 6Meg, 10Meg and 40Meg file using cp /dev/zero. > I then copied each file using windows explorer (and then verified > that the sparse bit was gone). > > Then I ran 'time cat filename > /dev/null' (i ran it a few times > to make sure the file was cached).

Re: getting cron to work -> status too large for sendmail?

2003-05-27 Thread Pierre A. Humblet
On Tue, May 27, 2003 at 04:08:34PM -0700, linda w (cyg) wrote: > > Perhaps one problem might be that in addition to the normal WinXP env vars that would > be defined for a user, I started cron from one of my cygwin shell windows, so it > would > have inherited all of the env vars from personal lo

Re: New setup: User not found? /cygdrive/h as default home director y?

2003-06-03 Thread Pierre A. Humblet
On Mon, Jun 02, 2003 at 02:07:11PM -0400, Hans Deragon (LMC) wrote: > Greetings. > > > Long time user of cygwin. Got a new job and off course, first thing I do is > install it. However, I am encounting a problem I never had in previous > installations. The installation was successfull, but

Re: Problems on accessing Windows network resources.

2003-06-08 Thread Pierre A. Humblet
At 03:09 PM 6/8/2003 -0400, Igor Pechtchanski wrote: >Takashi, > >If you log in without a password: according to the second paragraph of >, you >cannot access network shares that require authentication from a >passwordless login session

Re: exim - failed to read delivery status

2003-06-08 Thread Pierre A. Humblet
At 03:41 AM 6/9/2003 +0400, CoolCold wrote: >Hello cygwin, > >I've just installed cygwin(CYGWIN_NT-5.2 workstation 1.3.22(0.78/3/2)) >Trying to use exim but have such errors: >2003-06-09 03:32:58 HG6S2Y-00029S-OQ <= [EMAIL PROTECTED] H=(127.0.0.1) [127.0.0.1] P=esmtp S=680 [EMAIL PROTECTED] >2003-0

Re: exim - failed to read delivery status

2003-06-08 Thread Pierre A. Humblet
At 06:52 AM 6/9/2003 +0400, CoolCold wrote: Hello CoolCold >>>PAH> Can you telnet and/or ssh into the box? >>>sshd works > >PAH> What about telnet (inetd)? How do you know sshd works? Can you telnet into the box as a normal user? >PAH> Edit the /etc/passwd file. The second field is the passwor

Re: exim - failed to read delivery status

2003-06-08 Thread Pierre A. Humblet
At 07:49 AM 6/9/2003 +0400, CoolCold wrote: >Hello Pierre, >> >PAH> How do you know sshd works? >PAH> Can you telnet into the box as a normal user? > >[EMAIL PROTECTED] ~ >$ ssh [EMAIL PROTECTED] >[EMAIL PROTECTED]'s password: >[EMAIL PROTECTED] ~ >$ id >uid=1004(gars) gid=513(None) groups=513(None

Re: latest version of vi messes up bash for me

2003-06-09 Thread Pierre A. Humblet
On Tue, Jun 10, 2003 at 03:57:32AM +0200, Stephen Biggs wrote: > Maybe it is relevant to say that I am invoking cygwin by the shortcut of: > C:\WINDOWS\COMMAND.COM /E:4096 /c C:\cygwin\bin\login steve > with the /etc/passwd file entries: > user::400:401:user:/home/user:/bin/bash > steve::502:10

Re: mutt/exim DNS problems?

2003-06-18 Thread Pierre A. Humblet
Lester Ingber wrote: > > Olaf: > > I tried your test: > echo test | exim [EMAIL PROTECTED] Lester, Could you try to turn debug on, including the resolver? echo test | exim -d+resolver [EMAIL PROTECTED] That will produce quite a bit of output. Pierre -- Unsubscribe info: http://cygwin.c

Re: mutt/exim DNS problems?

2003-06-18 Thread Pierre A. Humblet
Lester Ingber wrote: > > Pierre: > > Below is the log of the output. > > Thanks. > > lester > OK lester, there are a few interesting pieces of info. You are using the dns server "192.168.111.1" It reports DNS lookup of alumni.caltech.edu (MX) gave NO_DATA DNS lookup of alumni.caltech.edu (A

Re: starting cron

2003-06-22 Thread Pierre A. Humblet
On Sun, Jun 22, 2003 at 05:49:47PM +, [EMAIL PROTECTED] wrote: > hello: > > cron diagnostic did not find any problems. but cron still does not work in my > machine. > I am attaching the cron diagnostic files as suggested. d:\cygwin\bin\id.exe output (nontsec) UID: 400(ckumar) GID: 401(mkpas

Re: unable to autologin to 2003

2003-06-27 Thread Pierre A. Humblet
On Thu, Jun 26, 2003 at 03:20:30PM -0700, Bruce Dobrin wrote: > I hope this isn't a stupid question. I configure cygwin with a script which > installs all passwd, hosts.equiv, inetd etc. I have hundreds of > machines configured this way on which all is well. I just installed 2003 > server,

Re: ls.exe slow down in cygwin 1.3.13

2003-07-02 Thread Pierre A. Humblet
At 02:24 PM 6/30/2003 +0800, Carlo Florendo wrote: >Last November 2002, I've upgraded cygwin and encountered a variation in the behaviour of ls. ls, when invoked as "ls -l" takes a >bit longer to execute than the previous cygwin version. (I've attached the output of cygehck.) I haven't upgraded

Re: Permission problems with recent Cygwin

2003-07-15 Thread Pierre A. Humblet
On Wed, Jul 16, 2003 at 11:37:19AM +1000, [EMAIL PROTECTED] wrote: > On some recent installs of Cygwin (from a snapshot of a mirror site > about a week ago), we've started getting some odd problems. Re-running > setup pointing it at a fresh setup and mirror does not fix the problems > (naturally e

Re: Permission problems with recent Cygwin

2003-07-23 Thread Pierre A. Humblet
gt; > This is all on my machine, where I can always read /etc/profile > even when it is this mode: > > -rwx--+ 1 robs Domain U 640 Sep 17 2002 /etc/profile > > On Joal's machine, where this mode prevents users from reading the > file (as if it were a real Uni

Re: Problem with cygwin 1.3.13 and ssh

2002-10-14 Thread Pierre A. Humblet
Roland Schwingel wrote: > > Hi... > > I just updated to 1.3.13 and encountered a problem with permissions > My homeaccount resides on a Linux box and is shared with Samba. Try turning smbntsec on in CYGWIN Pierre -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug report

Re: window problem with cygwin-3-13?

2002-10-15 Thread Pierre A. Humblet
At 01:58 PM 10/15/2002 -0400, Christopher Faylor wrote: >On Tue, Oct 15, 2002 at 05:18:16AM -0400, Lester Ingber wrote: >>Under cygwin-3-13, ispell does not respond to keystrokes >>The window seems to freeze. Under 3-12, it works as expected. > >so this will probably require more debugging on yo

Re: window problem with cygwin-3-13?

2002-10-16 Thread Pierre A. Humblet
Christopher Faylor wrote: > I'm generating a new snapshot which should fix this. I've downloaded > ispell from franken.de and verified that it was previously broken but > seems to work now. I should probably incorporate this test into the > cygwin test suite. > > PLEASE TRY THE SNAPSHOT and ve

Re: cannot build Exim-4.10-2 with embedded perl-5.8.0-1

2002-10-16 Thread Pierre A. Humblet
[EMAIL PROTECTED] wrote: > > > EXIM_PERL=/usr/src/perl-5.8.0-1/buildperl/perl.o Try EXIM_PERL=perl.o It's complaining about not finding exim defined functions defined in perl.c > /usr/src/exim-4.10-2/build-CYGWIN-i386/exim.c:2375: undefined > reference to `_init_perl' > expand.o: In function

Re: ispell & cygwin

2002-10-16 Thread Pierre A. Humblet
Yes Victor, ispell is broken with the 1.3.13-2 cygwin1.dll but there is already a fix available: http://cygwin.com/ml/cygwin/2002-10/msg00862.html http://cygwin.com/snapshots/ Pierre Victor Stepanov wrote: > > Pierre, > > Did you tried to use your ispell binarys with latest cygwin dll and lib

Re: vs and use of diff

2002-10-18 Thread Pierre A. Humblet
On Fri, 18 Oct 2002, CBFalconer wrote: > I have some makefiles used with DJGPP which perform regression and > portability tests on my software. They check things by doing a > run and then executing "diff -q" between the captured run and a > saved version. > > They don't work. The saved versions h

Re: latest cvs fork problems

2002-10-19 Thread Pierre A. Humblet
Jason Tishler wrote $ tail -1 /var/spool/exim/log/mainlog 2002-10-18 16:18:23 daemon: fork of queue-runner process failed: Resource temporarily unavailable $ ps -ef exim 6481096 ? 16:18:22 /usr/local/bin/exim-4.10-1 That's probably a privately compiled exim. Does it use special l

Re: Cygwin Here power toy

2002-10-20 Thread Pierre A. Humblet
On Sun, Oct 20, 2002 at 06:54:07PM +0200, Gerrit P. Haase wrote: > But I get to see two bash processes with different PID's in the > Taskmanager. However, 'ps -e' shows only one... See http://sources.redhat.com/ml/cygwin/2002-03/msg00791.html Pierre -- Unsubscribe info: http://cygwin.com/

Re: Problems with most recent snapshot

2002-10-20 Thread Pierre A. Humblet
At 11:01 AM 10/20/2002 -0400, Christopher Faylor wrote: >I've noticed a strange hanging problem with the most recent 2002-10-19 >and 2002-10-20 snapshots. Chris, On WinME I didn't noticed anything special yesterday (from cvs). Motivated by your e-mail I just updated cvs and rebuilt. Things seem

Re: Problems with 'I have no name'

2002-10-21 Thread Pierre A. Humblet
On Mon, Oct 21, 2002 at 11:15:59AM -0700, Matt Perry wrote: > I also thought that this was strange. Here is my entry in /etc/passwd: > > perrym3:unused_by_nt/2000/xp:81217:10513:Perry, Matt {Info~Pleasanton},U-RNUMDMA > S\perrym3,S-1-5-21-2116170847-193796598-433219294-71217://RPBMF106/perrym3$:

Re: cygwin cron

2002-10-21 Thread Pierre A. Humblet
On Mon, Oct 21, 2002 at 08:21:08PM -0400, Igor Pechtchanski wrote: > > The fact that scp works for you from the command line doesn't necessarily > mean it will work from cron. Ssh and scp look in $HOME/.ssh for public /usr/doc/cygwin/openssh: "Please note that OpenSSH does never use the value of

YA in the "try a snapshot" series (was Re: latest cvs fork problems)

2002-10-21 Thread Pierre A. Humblet
WinMe, dll built from cvs last night. /obj: uname -a CYGWIN_ME-4.90 HPN5170X 1.3.14(0.62/3/2) 2002-10-20 21:59 i686 unknown 3 crashes observed, first two under rxvt, windows went away too fast to read message. Last one was in console. /obj: make C:\PROGRAM FILES\CYGWIN\BIN\SH.EXE: *** 1. unable

Re: Invalid arugment and IO Error with bunzip2

2002-10-22 Thread Pierre A. Humblet
On Tue, Oct 22, 2002 at 02:15:22PM -0400, William A. Hoffman wrote: > > I don't understand it that well myself, but as you pointed out, it is not > the same thing, but a different thing. And, the default does not work. > The -d adds the current user and setup does not. However, it logs you > i

Re: exim 4.10-2: exim.conf Permissions

2002-10-24 Thread Pierre A. Humblet
Youssef Eldakar wrote: > > The exim 4.10-2 package sets /etc/exim.conf to mode 777. Attempting to start > exim (`exim -bd`) fails with the error: > > 'Exim configuration file /etc/exim.conf has the wrong owner, group, or mode' > > The fix is to set /etc/exim.conf to mode 755. Could you explain

Re: Problem with rsh

2002-10-25 Thread Pierre A. Humblet
On Fri, Oct 25, 2002 at 01:45:02PM -0700, Andrew DeFaria wrote: > I've run into a major problem using rsh. Note that I've been using rsh > successfully for a while and many people here depend on being able to > rsh into the server. However now I get: > > $ rsh server id > server.mydomain.com: Pe

Re: Problem with rsh

2002-10-25 Thread Pierre A. Humblet
On Fri, Oct 25, 2002 at 03:23:11PM -0700, Andrew DeFaria wrote: > David Rothenberger wrote: > > >Check your /etc/passwd file and make sure there is no entry in the > >password field (the second field). You want something like this: > > > >someuser::11150:... > > > >and not something like thi

Re: problems setting permissions for sshd

2002-10-29 Thread Pierre A. Humblet
On Tue, Oct 29, 2002 at 10:59:12AM -0500, Harig, Mark A. wrote: > > > > > My /etc/group (I modified it): > > > > all:*:0:0:,S-1-1-0:: > > SYSTEM:*:18:18:,S-1-5-18:: > > admin:*:544:544:,S-1-5-32-544:: > > domadmin:*:512:512:,S-1-5-32-512:: > > guests:*:546:546:,S-1-5-32-546:: > > users:*:545:5

Re: problems setting permissions for sshd

2002-10-29 Thread Pierre A. Humblet
On Tue, Oct 29, 2002 at 06:31:59PM +0100, Marcos Lorenzo wrote: > Pierre A. Humblet <[EMAIL PROTECTED]> wrote [10:59am -0500] > >PAH > On Tue, Oct 29, 2002 at 10:59:12AM -0500, Harig, Mark A. wrote: >PAH > > >PAH > > > >PAH > > >

Re: Trouble with fresh install of Cygwin

2002-10-31 Thread Pierre A. Humblet
On Thu, Oct 31, 2002 at 08:31:41AM -0800, Joshua Daniel Franklin wrote: > > But the other problem persists. Could it be something about permissions? I > > have > > installed cygwin as a non-admin user (I don't have admin rights on my working > Try running "man -d " It will output line(s) suc

Re: 1.3.14 Permission denied while doing a touch on MVFS

2002-10-31 Thread Pierre A. Humblet
On Thu, Oct 31, 2002 at 03:22:18PM -0800, Andrew DeFaria wrote: > I just installed 1.3.14 and am now experiencing problems with permission > denied when doing a touch but only when working on Clearcase's MVFS file > system (i.e. a dynamic view). AFAICT I do have ntsec set and a proper > /etc/pas

Re: ]Should ntsec & autotools work under XP prof ?

2002-11-03 Thread Pierre A. Humblet
On Sun, Nov 03, 2002 at 09:10:47AM -0800, amores perros wrote: > That is, has anyone seen these three all work together ? > i) installation & use as a normal user > ii) ntsec > iii) autotools > I ran the cygwin setup as my normal user, and when prompted, > gave it credentials for an admini

Re: /etc/group not being read

2002-11-05 Thread Pierre A. Humblet
On Tue, Nov 05, 2002 at 01:59:12PM -0500, James D Below wrote: > here are the exact command/files: > > $ id > uid=1084(xxjames) gid=512(Domain Admins) groups=1078(clearcase),512(Domain > Admins),513(Domain Users),1077(ncp),1023(ncppc),1005(NCPSERVE),1006(nice) Was that after or before login into

Re: /etc/group not being read

2002-11-05 Thread Pierre A. Humblet
On Tue, Nov 05, 2002 at 04:30:17PM -0500, James D Below wrote: > After seeing permissions and ownerships not updating properly. I stopped > the sshd service and started it back up. > > After that, the group permissions were correctly being assigned. Great. > Should I have had to restart the ssh

Re: FAT32, "lock count exceeded", mutt etc.

2002-11-12 Thread Pierre A. Humblet
On Tue, Nov 12, 2002 at 12:10:40PM -0500, Scott W Brim wrote: > Looking through the mail archives I can't tell what the recommended fix > is for running mutt/fetchmail/procmail and all on a FAT32 partition, wrt > file locking problems. There was plenty of discussion last summer but I > can't find

Re: .rhosts on W2K w/o ntsec

2002-11-16 Thread Pierre A. Humblet
On Fri, Nov 15, 2002 at 10:37:42PM +0100, Christian Mueller wrote: > Hi, > > after updating to the latest version of Cygwin (1.3.15-1) including > all other modules, rshd wouldn't accept my .rhosts file anymore > because it's owned by the wrong owner. The error message is > "permission denied (

Re: minires + rblcheck works

2002-11-17 Thread Pierre A. Humblet
On Sat, Nov 16, 2002 at 07:33:18PM -0800, Andrew Lynch wrote: > So I would like to know why is not minires a part of > cygwin? There are numerous packages ported to cygwin > using it, if I go by the cygwin mailing list. Is it > just the lack of someone to package it or is it a > policy issue? He

Re: .rhosts on W2K w/o ntsec

2002-11-18 Thread Pierre A. Humblet
On Mon, Nov 18, 2002 at 10:50:43AM +0100, Christian Mueller wrote: > > Unless, of course, I turn ntsec off again as soon as ruserok() has > completed. The only way to do this would be in /etc/profile. Is this > safe, i.e. will Cygwin see the environment changing and turn off ntsec > for *all* s

Re: ls problem

2002-11-19 Thread Pierre A. Humblet
On Wed, Nov 20, 2002 at 11:48:10AM -0800, Carlo Florendo wrote: > I don't know how to interpret the output of strace so I just included it > here as ls-output.bz2. I hope this helps us see the problem. There is a huge delay accessing F:\cygwin\usr\local\etc\zoneinfo\posixrules, on your F: drive.

Re: ls problem

2002-11-19 Thread Pierre A. Humblet
On Tue, Nov 19, 2002 at 10:56:49PM -0500, Pierre A. Humblet wrote: > On Wed, Nov 20, 2002 at 11:48:10AM -0800, Carlo Florendo wrote: > > I don't know how to interpret the output of strace so I just included it > > here as ls-output.bz2. I hope this helps us see the problem.

Re: ls problem

2002-11-19 Thread Pierre A. Humblet
On Tue, Nov 19, 2002 at 11:18:59PM -0500, Christopher Faylor wrote: > The delay is apparently ls doing things that haven't been straced. I don't > know what could be causing the delay. It would be interesting to see what > the task manager says is happening during this time. Does ls spike the >

Re: sshd: server refused our key

2002-11-23 Thread Pierre A. Humblet
On Fri, Nov 22, 2002 at 09:00:27AM +0100, Manfred Köhler wrote: > Thanks to mention this thread, but this can't fix the problem of windows > shared home directories: Security on shared drive is turned on with CYGWIN=smbntsec That should fix the ls -l display. You may run into another problem: th

Re: cygwin-1.3.16-1

2002-11-23 Thread Pierre A. Humblet
On Sat, Nov 23, 2002 at 11:50:46PM -, [EMAIL PROTECTED] wrote: > Strange consequence of upgrading from cygwin-1.3.15-2 to 1.3.16-1: instead > of starting off in ~ with ~/.bash_profile correctly read, now start in / > with ~/.bash_profile not read. Both /etc/group and /etc/passwd are > unaltered

Re: cygwin-1.3.16-1

2002-11-24 Thread Pierre A. Humblet
At 07:08 AM 11/24/2002 -, [EMAIL PROTECTED] wrote: >Thank you. Here is startup location and the information you requested in >cygwin-1.3.15-2: Thanks Fergus, everything looks perfect. I need some more help: - is your username under Windows really fergus? - could you send me the output of "stra

Re: cygwin-1.3.16-1

2002-11-24 Thread Pierre A. Humblet
Fergus, Thanks for the trace. I see what the problem is and will fix it later today. Pierre -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting: http://cygwin.com/bugs.html Documentation: http://cygwin.com/docs.html FAQ: http://cygw

Re: HOME set to / [Was: cygwin-1.3.16-1]

2002-11-26 Thread Pierre A. Humblet
On Mon, Nov 25, 2002 at 11:26:59AM -0800, Eric Hanchrow wrote: > For what it's worth, I too had this problem on Windows 2000, but I was > able to work around it by putting Is it the case that your passwd file does not contain sids, i.e. wasn't built with mkpasswd, and does not contain either a lin

Re: can't set $USER under 1.3.16-1

2002-11-26 Thread Pierre A. Humblet
On Mon, Nov 25, 2002 at 04:17:59PM -0500, Lester Ingber wrote: > Up until now, through cygwin 1.3.15-2, I have set my $USER in /etc/profile > to a username different from `id -un`, with the same name set in /etc/passwd. > I have had no problems logging in > What else must I do under 1.3.16-1 to se

Re: Cygwin 1.3.17 changes ls -l output

2002-12-03 Thread Pierre A. Humblet
On Tue, Dec 03, 2002 at 07:36:49AM -0500, Jason Tishler wrote: > After upgrading to Cygwin 1.3.17, I noticed the following change in ls > -l output: > > $ ls -ld / > drwxrwxr-x+ 15 Administ Administ 4096 Oct 21 12:07 / > ^ > Was this change intentional? Or, was it a sid

Re: Cygwin 1.3.17 changes ls -l output

2002-12-03 Thread Pierre A. Humblet
On Tue, Dec 03, 2002 at 10:47:36AM -0500, Jason Tishler wrote: > Pierre, > > Should the "+" be suppressed? Or, should Cygwin behave like other > Unixes (e.g., Solaris, HP-UX, etc.) that support ACLs? > The + can be suppressed by at least 3 ways: - the user should be able to remove the default ent

RE: HOME set to / [Was: cygwin-1.3.16-1]

2002-12-04 Thread Pierre A. Humblet
From: Chris Game > - now how do I get out of this 'None' group > that I'm apparently in, and into 'Users' or even 'Administrators'? Step 1: Type "id" in bash and find what groups you are part of. id will only show the Windows groups that are in /etc/group, so that file has to be

Re: ntsec and remote copy

2002-12-10 Thread Pierre A. Humblet
On Tue, Dec 10, 2002 at 02:02:59PM -, Kris Thielemans wrote: > I have a problem with ntsec I think. > I copied files from a remote disk (a Windows NT server) using the explorer. > These files are then set to the following UID: > > ls -l test.txt > -rwx--1 65535None 1225 De

Defunct process on Win98, Cygwin 1.3.17

2002-12-10 Thread Pierre A. Humblet
I have seen two such events in the last few weeks. pid 375917 is stuck waiting forever. Are there any useful details that I should provide? Pierre 713677 262325 262325 4294253619? 500 11:59:54 /c/PROGRAM FILES/CYGNUS/BIN/EXIM-4.10.13-3 375917 713677 262325 4294591379? 500 11

Re: cygwin 1.3.17-1 gethostbyname() leak

2002-12-10 Thread Pierre A. Humblet
On Wed, Dec 11, 2002 at 06:12:21AM +1100, Noel Gordon wrote: > If it is true that cygwin uses gethostbyname() from wsock32.dll, and > returns the wsock32.dll hostent* result to the application, then it > is perhaps unwise to free() it. Following your tip, we find from ... > In net.cc cygwin take

Re: ntsec and remote copy

2002-12-14 Thread Pierre A. Humblet
On Thu, Dec 12, 2002 at 12:00:51PM -, Kris Thielemans wrote: > Remaining questions: > - is there another way to prevent specific users access to telnet or ftp ? > (or ssh when I get round to installing sshd) ? Edit /etc/passwd and set the shell field to /something/invalid/but/not/empty > - I

Re: Cygrunsrv problem starting service created with --user

2002-12-18 Thread Pierre A. Humblet
On Wed, Dec 18, 2002 at 01:14:02PM -0800, Michael Bourgon wrote: > Howdy. I checked the archives, but didn't see > anything that would shed light on the situation. Did you give the Logon as service privilege, as per the cygrunsrv README? -u, --user Optional user name to start service as. Def

Re: Followup: 1.3.17: sshd closes terminal immediately after establishing connection (1.3.13 ? 1.3.14)

2002-12-19 Thread Pierre A. Humblet
On Thu, Dec 19, 2002 at 11:04:27AM +0100, [EMAIL PROTECTED] wrote: > Hello, everybody, > > I want to followup on this problem. It is still not solved, > but I have found some time to investigate the problem, and > it surely has to do with the cygwin1.dll. Please try strace -o trace sshd -d and th

Re: Grep says file exists and then doesn't "grep" it

2002-12-19 Thread Pierre A. Humblet
At 04:21 PM 12/19/2002 -0500, Mark Blackburn wrote: >If I type: >$ grep -e hello -r . >I get: >grep: .: File exists It's a problem on Win9x only, patch is on the way. Thanks for the report. Pierre -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting:

Re: Grep says file exists and then doesn't "grep" it

2002-12-19 Thread Pierre A. Humblet
At 03:24 PM 12/19/2002 -0800, Randall R Schulz wrote: >Information please! What was the problem? A stupid bug of mine, mixing up variable names, with non-deterministic results. It's surprising that it took so long to emerge, but before the buggy code was put in, grep -r didn't work at all on Win9

Re: Followup: 1.3.17: sshd closes terminal immediately after establishingconnection (1.3.13 ? 1.3.14)

2002-12-20 Thread Pierre A. Humblet
[EMAIL PROTECTED] wrote: > Hello Jurgen,, thanks for the trace you sent me privately. > so I have to run the sshd as a specific user, and I also can > not install sshd as a service. > debug1: permanently_set_uid: 45090/10513 > setuid 45090: Permission denied You also report that the output

Re: problem with sshd with keyfiles only and windows xp

2002-12-20 Thread Pierre A. Humblet
On Sat, Dec 21, 2002 at 12:52:39AM +0100, Hans Sturm wrote: > i installed sshd with host-config as service under SYSTEM account without > pivilege separation. > everything works fine if i use password authentication. > but if i use keyfile authentication i am able to log in but if i do an "id" > i

Infinite loop in rxvt with recent Cygwin

2002-12-20 Thread Pierre A. Humblet
This is on WinME with a Cygwin built from cvs last night. When a program, such as "sleep 10", is ^C interrupted, the shell enters an infinite loop, as if infinitely many RET were input. Pierre -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting: http://cygwi

Re: Infinite loop in rxvt with recent cygwin

2002-12-21 Thread Pierre A. Humblet
On Fri, Dec 20, 2002 at 11:41:22PM -0500, Christopher Faylor wrote: > I've checked in a fix and am generating a new snapshot now. > Thanks Chris, cygwin from cvs works fine on WinME. FYI, I have had another outstanding problem for a long time. Unfortunately it is a lot less specific and I have no

Re: Exim: Format error in spool file

2002-12-21 Thread Pierre A. Humblet
At 01:07 AM 12/22/2002 -0200, Frédéric L. W. Meunier wrote: >I'm trying to run Exim, but with both 4.10 from Cygwin and the >4.11 I compiled I get "Format error in spool file" in the log >when I send an e-mail. Exim works fine on Linux with the same >exim.conf, available at http://pervalidus.port5.

Re: Exim: Format error in spool file

2002-12-21 Thread Pierre A. Humblet
At 01:58 AM 12/22/2002 -0200, Frédéric L. W. Meunier wrote: >> 2) Looking at the source code, this error message should include >> the name of a file. Have you looked at that file? >> Send it me as an attachment if you don't see anything obvious. > >Attached (very small files). It looks like your

Re: permission denied for NTFS network shares

2002-12-22 Thread Pierre A. Humblet
Genady Veytsman wrote > Are you saying that there is no way whatsoever to have RSH without > passwords? I need it for running scripts/programs on different NT > machines. Interactive behaviour (login/password) will not allow that > since you can't hardcode your passwords in scripts. If you are th

small tty problem? Re: Updated: cygwin-1.3.18-1

2002-12-25 Thread Pierre A. Humblet
I was going to send this message about the latest cvs, but I just verified it applies as well to 1.3.18 WinME, latest everything, CYGWIN undefined When I ssh localhost and use "less" or "mutt", the final "q" appears before the next shell prompt. This is 100% reproducible with rxvt, I have also s

Re: small tty problem? Re: Updated: cygwin-1.3.18-1

2002-12-27 Thread Pierre A. Humblet
On Thu, Dec 26, 2002 at 09:47:59PM -0500, Christopher Faylor wrote: > >^ note "q" before the prompt. > > Interesting problem. Should be fixed in current cvs. Thanks Chris, looks fine here. But there is something similar... WinME, latest everything, Cygwin from cvs, CYGWIN undefined try.sh is

Re: Domain user cannot login

2002-12-28 Thread Pierre A. Humblet
On Sat, Dec 28, 2002 at 11:41:42PM +0100, a12 wrote: > Hi gurus, > > I installed cygwin incl. openssh and it runs OK for a local > user 'sysaccount'. > For a domain user 'magr40' I updated /etc/passwd: > mkpasswd -d -u magr40 >> /etc/passwd > and fetched all group id's: > mkgroup -d > group.domain

Re: Hard links broken?

2002-12-30 Thread Pierre A. Humblet
On Sun, Dec 29, 2002 at 10:13:48PM -0600, Nicolas Williams wrote: > > Yes, NTFS, on XP. Er, no! That's the problem! I'd never bothered > checking (it's a single user laptop, used mostly for mutt/vim [and > Cygwin])), but the c: drive is FAT32 while the d: drive is NTFS (the > install disks give

[ANNOUNCEMENT] Updated: exim-4.12-1

2002-12-31 Thread Pierre A. Humblet
I've updated the version of exim to 4.12 (exim is a Mail Transfer Agent, like sendmail). 4.12 is the first stable release since the current 4.10. It contains 54 backward compatible changes to exim proper, see ftp://ftp.csx.cam.ac.uk/pub/software/email/exim/ChangeLogs/NewStuff-4.11 There are al

Re: Heads up: *possible* bug in cygwin

2003-01-01 Thread Pierre A. Humblet
> On Wed, Jan 01, 2003 at 10:05:10AM +, Steven O'Brien wrote: > >In glib-1.2.10, gutils.c: g_get_any_init (void), the current user > >details are obtained from /etc/passwd. This code is called as part of > >glib initialisation, whether the app wants this data or not. It uses > >sysconf (_SC_GE

tzset and TZ

2003-01-01 Thread Pierre A. Humblet
On Cygwin calling tzset() and localtime() will set TZ in the environment (if it isn't set), while calling tzsetwall() will always set TZ. As far as I can tell this is both non standard and unnecessary. Am I wrong? Is it now a feature? Or is it "patch gratefully accepted"? Pierre -- Unsubscr

Re: Heads up: *possible* bug in cygwin

2003-01-01 Thread Pierre A. Humblet
On Wed, Jan 01, 2003 at 02:48:54PM -0500, Christopher Faylor wrote: > > I've uploaded a new snapshot which should correctly calculate the buffer > size for overflow conditions and returns a large number for > _SC_GETPW_R_SIZE_MAX Chris, I don't understand your changes in getpwuid_r32. The uid an

  1   2   3   4   5   6   >