RE: you people rock

2002-10-02 Thread Harig, Mark A.
Two things to keep in mind when looking for Cygwin versions of packages: 1. When selecting packages to download using setup.exe, there is a 'View' button which cycles through three different views of the package list: o Category - this allows you to search for packages th

RE: help installing: no ls command

2002-10-02 Thread Harig, Mark A.
1. Check to make sure that 'ls.exe' is on your computer. Use windows explorer to look in usr/bin in your Cygwin directory. 2. See http://cygwin.com/packages/ for a search function. Searching for 'ls.exe' will tell you that it is in the 'fileutils' package. Re-check your list of packages in set

RE: GnuWorld

2002-10-02 Thread Harig, Mark A.
Have you attempted to follow the steps in the INSTALL text file? If so, what sort of problems are you having? > -Original Message- > From: Cosmin Marcu [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, October 02, 2002 6:53 AM > To: [EMAIL PROTECTED] > Subject: GnuWorld > > > Hello. > I ha

RE: cygwin crontab

2002-10-04 Thread Harig, Mark A.
After installing the service (using the '-I' option), you need to start the service using the '-S' option. Debug one problem at a time. Instead of trying to get your perl script to work via 'cron', try to get the 'date' command to work, for example: * * * * * /usr/bin/date >> /tmp/date.txt

RE: I have no name

2002-10-04 Thread Harig, Mark A.
Try installing the 'base-files' and 'base-passwd' packages using setup.exe. Among other things, these will set up your password/group entries and create a /etc/profile that defines some environment variables for you. These two packages are listed in the 'Base' category. > -Original Message-

RE: cygwin crontab

2002-10-04 Thread Harig, Mark A.
$ chmod 1777 /var/cron $ chmod 1777 /var/cron/tabs > -Original Message- > From: Smithesh Ramachandran [mailto:[EMAIL PROTECTED]] > Sent: Friday, October 04, 2002 5:06 PM > To: Harig, Mark A.; [EMAIL PROTECTED] > Subject: RE: cygwin crontab > > > Hi, &g

RE: cygwin crontab

2002-10-04 Thread Harig, Mark A.
rt it. > -Original Message- > From: Harig, Mark A. > Sent: Friday, October 04, 2002 5:34 PM > To: Smithesh Ramachandran; [EMAIL PROTECTED] > Subject: RE: cygwin crontab > > > It's also important to get the permissions of the /var/cron/ and > /var/cron/tabs/ > dire

RE: cygwin crontab -- IT WORKS ....

2002-10-04 Thread Harig, Mark A.
You'll likely also want to install the Cygwin ssmtp package so that cron can send you email when it has problems or other information to report. > -Original Message- > From: Smithesh Ramachandran [mailto:[EMAIL PROTECTED]] > Sent: Friday, October 04, 2002 5:38 PM >

RE: Executing Perl from the Cygwin command line

2002-10-04 Thread Harig, Mark A.
What is the setting of your PATH environment variable? $ echo $PATH Does it include the directory that contains your perl binaries? You can set your PATH (and other bash shell environment variables) in your .profile (aka, ~/.profile) so that it will be set each time you start a bash shell.

RE: crontab: no changes made

2002-10-07 Thread Harig, Mark A.
I am guessing that you are running Windows NT. This problem appears on Windows NT, but not on Windows 2000. It has been a problem for a long time (over a year?). I don't know what the solution to the problem is, but a quick way to get around it is to edit your /var/cron/tabs/ file directly. >

RE: crontab: no changes made

2002-10-07 Thread Harig, Mark A.
Also, be careful not to change the ownership of the file /var/cron/tab/. SYSTEM needs to be the group owner, otherwise the cron daemon will not accept it. > -Original Message- > From: Uwe Mayer [mailto:[EMAIL PROTECTED]] > Sent: Saturday, October 05, 2002 8:28 AM > To: [EMAIL PROTECTED]

RE: Porting software from Red Hat Linux to Cygwin

2002-10-07 Thread Harig, Mark A.
Consider using ssh and sftp instead of rsh and ftp. > -Original Message- > From: Gregg C Levine [mailto:[EMAIL PROTECTED]] > Sent: Friday, October 04, 2002 8:16 PM > To: [EMAIL PROTECTED] > Subject: Porting software from Red Hat Linux to Cygwin > > > Hello from Gregg C Levine > Obviousl

RE: 1.3.12-4: editing /etc/passwd causes ssh to fail

2002-10-08 Thread Harig, Mark A.
I have seen this problem also, on Windows NT4 SP6. I had the same solution -- back out my changes. I haven't had time to investigate what is causing the problem but it starting occurring in one of the recent releases of ssh in which privilege separation was added. > -Original Message- >

RE: 1.3.12-4: editing /etc/passwd causes ssh to fail

2002-10-08 Thread Harig, Mark A.
> rest of the password file and the mount via which it is > accessed by your > ssh server? > > Randall Schulz > Mountain View, CA USA > > > At 13:39 2002-10-08, Harig, Mark A. wrote: > >I have seen this problem also, on Windows NT4 SP6. I had the same >

RE: sshd problems

2002-10-10 Thread Harig, Mark A.
What are your mount points? $ mount What is your cygdrive prefix? $ mount -p If your cygdrive prefix is not '/', then consider changing it to '/': $ mount -c / > -Original Message- > From: David Monk [mailto:[EMAIL PROTECTED]] > Sent: Thursday, October 10, 2002 10:29 AM > To: [

RE: sshd problems

2002-10-10 Thread Harig, Mark A.
host key > sshd: no hostkeys available -- exiting. > > This is a pretty much default installation of cygwin, > installed yesterday. I > did add a few packages, such as bzip2, ncftp, openssh, vim > and wget, maybe a > few others. But, otherwise, this is a default installation w

RE: crontab fails to change crontab file: "no changes made to crontab"

2002-10-10 Thread Harig, Mark A.
Somehow, the cron.sh script did not get run during your installation. Here is what it does: #!/bin/sh set -x if [ ! -d /var/cron ] then mkdir -p /var/cron fi chmod 1777 /var/cron if [ ! -d /var/cron/tabs ] then mkdir /var/cron/tabs fi chmod 1777 /var/cron/tabs > -Original Message---

RE: sshd problems

2002-10-10 Thread Harig, Mark A.
According to /usr/doc/Cygwin/openssh-3.4p1-5.README: >The new ssh-host-config script also adds the /var/empty directory >needed by privilege separation. When creating the /var/empty directory >by yourself, please note that in contrast to the README.privsep document >the owner sshould not be "roo

RE: crontab fails to change crontab file: "no changes made to crontab"

2002-10-10 Thread Harig, Mark A.
Is this assumption correct? > -Original Message- > From: Steve Holden [mailto:[EMAIL PROTECTED]] > Sent: Thursday, October 10, 2002 2:48 PM > To: Harig, Mark A.; [EMAIL PROTECTED] > Subject: Re: crontab fails to change crontab file: "no changes made to > crontab" &g

RE: sshd problems

2002-10-10 Thread Harig, Mark A.
> -Original Message- > From: David Monk [mailto:[EMAIL PROTECTED]] > Sent: Thursday, October 10, 2002 2:53 PM > To: Harig, Mark A.; Len Giambrone > Cc: [EMAIL PROTECTED] > Subject: Re: sshd problems > > > From the default installation, then ssh-host-config

RE: sshd problems

2002-10-10 Thread Harig, Mark A.
> -Original Message- > From: David Monk [mailto:[EMAIL PROTECTED]] > Sent: Thursday, October 10, 2002 3:05 PM > To: [EMAIL PROTECTED] > Subject: Re: sshd problems > > > A further update on this issue. If I do some forcing, ie. > using an alternate > key and chowning /var/empty to mysel

RE: sshd problems

2002-10-10 Thread Harig, Mark A.
ave the > proper cygwin mount points available. This may be the root of > the issue. How > can this be fixed? > > David > > - Original Message - > From: "David Monk" <[EMAIL PROTECTED]> > To: "Harig, Mark A." <[EMAIL PROTECTED]>; &

RE: Problem with cygwin 1.3.13 and ssh

2002-10-14 Thread Harig, Mark A.
What are the permissions of your home directory?: ls -l /home/ What are the permissions of your .ssh directory?: ls -l /home//.ssh What filesystem are you running on your disk, NTFS or FAT/FAT32? What is the value of your CYGWIN environment variable?: echo $CYGWIN Did you reboot after upgradin

RE: How do I run shell?

2002-10-16 Thread Harig, Mark A.
One of the (implicit, unstated) rules of using 'setup.exe' is that you run it in a directory other than the directory in which you will install the files. try this (read the entire reply before starting): 1. create a directory, say c:\cygwin-setup 2. download (or copy) setup.exe to that d

RE: cygwin cron

2002-10-23 Thread Harig, Mark A.
>From /usr/doc/Cygwin/cron.README: 3.0.1-5: Crontab now changes group membership to be SYSTEM on the crontab files and sets the permissions to 640. That should allow cron to work immediately with the crontab files created by crontab. Note that this requires that /etc/group has been crea

RE: lex yacc looking

2002-10-23 Thread Harig, Mark A.
two options for you to try: 1. If your Makefiles use macros, such as LEX=lex or YACC=yacc (which are predefined in GNU make), then you can override them from the command line and avoid changing your Makefiles, for example: $ make LEX=flex YACC=bison 2. If your Makefiles do NOT use ma

RE: scheduling jobs

2002-10-23 Thread Harig, Mark A.
You're going to have to work through this in stages: 1. You need to get the bash shell working (yes, things can be done without it, but something basic is not set up properly at this point). 2. Yes, cron can be made to work just as you have been using it in the unix environment. You'll wan

RE: cygwin 1.3.13, gcc 3.2 (no output) and gcc 2.95-3 (output but no permission to execute)

2002-10-23 Thread Harig, Mark A.
Also, run a sanity check to make sure that you are running the cygwin and gcc versions that you think are running. $ uname -r $ gcc --version > -Original Message- > From: Willis, Matthew [mailto:Matthew.Willis@;CIBC.ca] > Sent: Wednesday, October 23, 2002 5:00 PM > To: '[EMAIL PROTECT

RE: Screen for cygwin

2002-10-24 Thread Harig, Mark A.
picked up by the 'screen' maintainers so it's not an orphan. > -Original Message- > From: Igor Pechtchanski [mailto:pechtcha@;cs.nyu.edu] > Sent: Thursday, October 24, 2002 2:37 PM > To: Robinow, David > Cc: Harig, Mark A.; [EMAIL PROTECTED] > Subject: RE: S

RE: Screen for cygwin

2002-10-24 Thread Harig, Mark A.
When running ssh to a ssh service on a Cygwin machine via a slow connection. > -Original Message- > From: Robinow, David [mailto:drobinow@;dayton.adroit.com] > Sent: Thursday, October 24, 2002 12:47 PM > To: [EMAIL PROTECTED] > Subject: RE: Screen for cygwin > > > > From: Rafael Kitover

RE: passwd-group post install scripts

2002-10-24 Thread Harig, Mark A.
Also, you might want to group the Winnt/Win2k/xp tests at the top of the batch file, and then throw away the windows 95/98/ME tests, and let the batch file simply fall through to that code if the Winnt/Win2k/xp tests fail. > -Original Message- > From: Vince Hoffman [mailto:Vince.Hoffman@;u

RE: scheduling jobs

2002-10-24 Thread Harig, Mark A.
> -Original Message- > From: Karen McLaughlin [mailto:k.mclaughlin@;umassp.edu] > Sent: Wednesday, October 23, 2002 7:10 PM > To: Harig, Mark A.; Karen McLaughlin; [EMAIL PROTECTED] > Subject: RE: scheduling jobs > > > i think i used the wrong term when i s

RE: passwd-group post install scripts

2002-10-24 Thread Harig, Mark A.
There was a discussion about the ordering of '-u -d ' options to 'mkpasswd' back around August 13-16. You may want to review them. >On Fri, 13 Sep 2002, Igor wrote: >> It may be that the order of arguments matters, and that the correct way to >> specify the username and the domain would be >>

RE: What's going on here with directory contents?

2002-10-24 Thread Harig, Mark A.
Cygwin creates a mount point from /bin -> /usr/bin. Run the 'mount' command (no options needed) to see your Cygwin mount points. DOS/Windows has no knowledge of these. > -Original Message- > From: CBFalconer [mailto:cbfalconer@;yahoo.com] > Sent: Thursday, October 24, 2002 11:41 AM > To:

RE: sdiff related.....

2002-10-24 Thread Harig, Mark A.
Consider downloading and installing the 'patch' utility in the 'Utils' category. 'patch --help', 'info patch', or 'man patch' at your shell prompt will give you instructions on how to use it. > -Original Message- > From: dheeraj seth [mailto:seth_dheeraj@;hotmail.com] > Sent: Thursday, Oc

RE: Setup.exe and accessability

2002-10-25 Thread Harig, Mark A.
both are needed (of course). a detailed command-line interface would allow for the creation of automated tests for this most-visible of Cygwin programs. > -Original Message- > From: Igor Pechtchanski [mailto:pechtcha@;cs.nyu.edu] > Sent: Friday, October 25, 2002 12:04 PM > To: [EMAIL PROT

RE: 'Command not found'

2002-10-25 Thread Harig, Mark A.
please run setup.exe again. you will find the compiler and other development tools in the 'devel' category. Also, try clicking on the 'View' button (or type [Alt]-[v]). This will cycle through the possible views of the lists. One is a simple alphabetical list. Searching through it, you can find

RE: Thankyouverymuch

2002-10-25 Thread Harig, Mark A.
. > -Original Message- > From: TS [mailto:Anntieckkwarijahrt@;gmx.net] > Sent: Friday, October 25, 2002 1:43 PM > To: Harig, Mark A. > Subject: AW: Thankyouverymuch > > > Thankyouverymuch: > > now he is gcc-compiling. > > But even without warning

RE: problems setting permissions for sshd

2002-10-28 Thread Harig, Mark A.
1. What filesystem are you running on your disk(s): NTFS or FAT32? 2. What value do you have the environment variable CYGWIN set to in your Control Panel's System applet? 3. What version of Cygwin are you running? $ uname -r 4. What version of ssh are you running? $ ssh -V >

RE: ls -l after chmod

2002-10-28 Thread Harig, Mark A.
1. What filesystem are you running on your disk: NTFS or FAT32? 2. What value(s) did you set the 'Cygwin' to in the Control Panel's System applet? > -Original Message- > From: Alex Vinokur [mailto:alexvn@;come.to] > Sent: Monday, October 28, 2002 11:11 AM > To: [EMAIL PROTECTED] > Sub

RE: ls -l after chmod

2002-10-28 Thread Harig, Mark A.
Correction to #2, below. It should have read: 2. What value(s) did you set the 'CYGWIN' environment variable to in the Control Panel's System applet? > -Original Message----- > From: Harig, Mark A. > Sent: Monday, October 28, 2002 12:31 PM > To: Alex Vinokur;

RE: ls takes a long time.

2002-10-28 Thread Harig, Mark A.
1. What is the value of your 'PATH' environment variable? $ echo $PATH 2. What version of 'ls' are you running? $ ls --version > -Original Message- > From: Pavel Rozenboim [mailto:pavelr@;coresma.com] > Sent: Monday, October 28, 2002 12:25 PM > To: Cygwin (E-mail) > Subject: ls

RE: ls takes a long time.

2002-10-28 Thread Harig, Mark A.
2002 12:37 PM > To: Harig, Mark A. > Subject: RE: ls takes a long time. > > > > > > -Original Message- > > From: Harig, Mark A. [mailto:maharig@;idirect.net] > > Sent: Mon, October 28, 2002 7:41 PM > > To: Pavel Rozenboim; Cygwin (E-mail) > &

RE: ls -l after chmod

2002-10-28 Thread Harig, Mark A.
ut NTFS, 'chmod' won't work. > -Original Message- > From: Alex Vinokur [mailto:alexvn@;come.to] > Sent: Monday, October 28, 2002 2:26 PM > To: [EMAIL PROTECTED] > Subject: Re: ls -l after chmod > > > > > "Harig, Mark A." <[EM

RE: ls -l after chmod

2002-10-28 Thread Harig, Mark A.
nned to be set by default. 4. Start a new shell window. Inspect the value of CYGWIN ('echo $CYGWIN'). > -Original Message- > From: Alex Vinokur [mailto:alexvn@;come.to] > Sent: Monday, October 28, 2002 2:27 PM > To: [EMAIL PROTECTED] > Subject: Re: ls -l after chmod > &

RE: Quick Question

2002-10-28 Thread Harig, Mark A.
www.cygwin.com www.cygwin.com/packages http://cygwin.com/cygwin-ug-net/cygwin-ug-net.html > -Original Message- > From: Dr. Wong [mailto:medrecord2001@;yahoo.com] > Sent: Monday, October 28, 2002 3:00 PM > To: [EMAIL PROTECTED] > Subject: Quick Question > > > > How can I get the detailin

RE: problems setting permissions for sshd

2002-10-29 Thread Harig, Mark A.
> > 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:545:,S-1-5-32-545:: > domusers:*:513:513:,S-1-5-32-513:: > try changing 'admin' t

RE: problems setting permissions for sshd

2002-10-29 Thread Harig, Mark A.
9, 2002 10:59 AM > To: [EMAIL PROTECTED] > Subject: Re: problems setting permissions for sshd > > > On Tue, Oct 29, 2002 at 10:59:12AM -0500, Harig, Mark A. wrote: > > > > > > > > My /etc/group (I modified it): > > > > > > all:

RE: how to set "To:" and "Subject:" with ssmtp

2002-10-29 Thread Harig, Mark A.
Also, once 'ssmtp' has been set up properly, 'mutt' can be used like traditional UNIX 'mail'. It has been working for well over a year now (thanks to Corrina Vinschen). > -Original Message- > From: Polley Christopher W [mailto:PolleyChristopherW@;JohnDeere.com] > Sent: Tuesday, October 29

RE: ls takes a long time.

2002-10-29 Thread Harig, Mark A.
- > From: Pavel Rozenboim [mailto:pavelr@;coresma.com] > Sent: Tuesday, October 29, 2002 2:33 AM > To: [EMAIL PROTECTED] > Subject: RE: ls takes a long time. > > > > > > -Original Message- > > From: Harig, Mark A. [mailto:maharig@;idirect.net] > &

RE: undefined reference continues

2002-10-30 Thread Harig, Mark A.
As requested at http://cygwin.com/bugs.html, please include the output of 'cygcheck -s -v -r' (as an attachment). This will provide anyone looking at your question with information such as which version of Cygwin you are running and which version of gcc you have installed. > -Original Messag

RE: Trouble with fresh install of Cygwin

2002-10-30 Thread Harig, Mark A.
> > I've just installed Cygwin from the Web onto a Windows NT 4.0 > machine. I chose the defaults plus the "man" package. On > logging in, some things do not work: > > "man cmd" gives (for cmd = anything) > "/usr/bin/tbl: not found > /usr/bin/groff: not found" > > Both programs are installed,

RE: Question about the ls command

2002-10-30 Thread Harig, Mark A.
See also, 'ls --help' and 'info ls' (this requires that the 'info' package be installed). > > The 'man' command is your friend. If you run "man ls" you will > find many options for controlling the output of ls, including > --full-time, which is probably what you need. > > -- Cliff > -- Unsubs

RE: make is missing

2002-10-30 Thread Harig, Mark A.
> -Original Message- > From: Keen Wayne A Contr AFRL/MNGG [mailto:keenwa@;eglin.af.mil] > Sent: Wednesday, October 30, 2002 10:38 AM > To: '[EMAIL PROTECTED]' > Subject: RE: make is missing > > > This brings up a point that has not been brought up in a day > or two. If you > run across

RE: MAKE - problem with small/capital letters in filenames

2002-10-30 Thread Harig, Mark A.
> -Original Message- > From: Graff_Zoltan [mailto:zotyo@;z1.fszek.hu] > Sent: Tuesday, October 29, 2002 6:05 AM > To: [EMAIL PROTECTED] > Subject: MAKE - problem with small/capital letters in filenames > > > Hi! > > I've got a simple makefile. It works well under DOS (with DJGPP) and >

RE: sshd install troubles

2002-10-30 Thread Harig, Mark A.
> > I tried setting permissions on the above files to 666, which > works but > then I get a problem with permissions on /var/empty. I've > tried dozens > of combinations of users, groups, and permissions on /var/empty to no > avail. Plus, it seems like a Really Bad Idea to have those > fil

RE: sshd install troubles

2002-10-30 Thread Harig, Mark A.
> > (btw, I might suggest cygrunsrv as a package dependency for openssh. > I'd be glad to submit a patch, but it seems like a bit of > overkill to do so) > It's not a dependency if you only want to run an ssh client. But if it is added as a dependency, then it would make sense to add it for '

RE: sshd install troubles

2002-10-30 Thread Harig, Mark A.
> -Original Message- > From: Jason Dufair [mailto:jase@;dufair.org] > Sent: Wednesday, October 30, 2002 4:09 PM > To: [EMAIL PROTECTED] > Subject: sshd install troubles > > > Hi all - > > I've installed Cygwin and sshd at least a half dozen times, > but for some > reason, I'm having

RE: sshd install troubles

2002-10-30 Thread Harig, Mark A.
Thanks for the clarification! > -Original Message- > From: Igor Pechtchanski [mailto:pechtcha@;cs.nyu.edu] > Sent: Wednesday, October 30, 2002 5:04 PM > To: Harig, Mark A. > Cc: Jason Dufair; [EMAIL PROTECTED] > Subject: RE: sshd install troubles > > > On Wed,

RE: sshd install troubles

2002-10-30 Thread Harig, Mark A.
yu.edu] > Sent: Wednesday, October 30, 2002 5:19 PM > To: Harig, Mark A. > Cc: [EMAIL PROTECTED] > Subject: RE: sshd install troubles > > > No problem, sorry if I sounded harsh... > Igor > -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug rep

RE: RE: MAKE - problem with small/capital letters in filenames

2002-10-31 Thread Harig, Mark A.
try: %.D: %.C or %.d: %.C > -Original Message- > From: Graff_Zoltan [mailto:zotyo@;z1.fszek.hu] > Sent: Thursday, October 31, 2002 5:24 AM > To: Harig, Mark A. > Subject: Re: RE: MAKE - problem with small/capital letters in > filenames > > > > $ l

RE: undefined reference continues

2002-10-31 Thread Harig, Mark A.
For future reference, please provide this information as an attachment. It makes the email archives more searchable because there will be fewer false matches. > > This is a more detailed info from cygwin. > $ cygcheck -s -v -r |more > > Cygwin Win95/NT Configuration Diagnostics > Current System

RE: RE: MAKE - problem with small/capital letters in filenames

2002-10-31 Thread Harig, Mark A.
Eventually, a gratefully accepted patch to the User's Manual (or FAQ) will be submitted that includes Igor Pechtchanski's detailed explanation, and we'll be able to simply point questioners to it with a URL. > > Zoltan Graff > > Please keep replies on-list. Thanks. > > Zoltan, > > In the Windo

RE: Environment windows not opening

2002-10-31 Thread Harig, Mark A.
As requested at http://cygwin.com/bugs.html, please include the output of 'cygcheck -s -v -r' (as an attachment). This will provide anyone looking at your question with information that might help them to troubleshoot your problem. > -Original Message- > From: [EMAIL PROTECTED] [mailto:j

RE: Problems with gcc 3.2.

2002-11-04 Thread Harig, Mark A.
As requested at http://cygwin.com/bugs.html: o In your description, show how to reproduce the problem, including a test case, if possible. o At least include the cygwin release number you are using, and give the operating system and its version number, e.g., "cygwin v1.3.13 under NT 4.0".

RE: 1.3.13: problem using ntohs() in asm/bytorder.h in gcc 3.2.

2002-11-04 Thread Harig, Mark A.
Please include a small source-code sample, and the complete 'gcc' command that you are running, along with the output. You might also consider running 'gcc' with the '-v' (verbose) option, for example: $ gcc -v sample.c The more information you provide, the more likely it is that someone will

RE: how to get openssh-3.4 working on w2k?

2002-11-05 Thread Harig, Mark A.
As requested at http://cygwin.com/bugs.html: o Please describe how to reproduce the problem, including a test case, if possible. (For example, you could run 'ssh -v ip_address' and include the output.) o Please include at least the version number of the Cygwin release you are using along wi

RE: Antwort: RE: how to get openssh-3.4 working on w2k?

2002-11-05 Thread Harig, Mark A.
ssh regenerate it to fix the warning message that you are getting. > -Original Message- > From: [EMAIL PROTECTED] [mailto:Ralf.Weber@;bgt.de] > Sent: Tuesday, November 05, 2002 11:42 AM > To: Harig, Mark A. > Subject: Antwort: RE: how to get openssh-3.4 working on w2k? >

RE: Can cron run ssh commands?

2002-11-05 Thread Harig, Mark A.
Try adding '-v' to your ssh command in your cron job. This assumes that you have cron's integration with email working. If you don't have the 'ssmtp' package installed (via setup.exe), then you'll want to do that so that any output is emailed to you. See: /usr/doc/Cygwin/ cr

RE: Can cron run ssh commands?

2002-11-05 Thread Harig, Mark A.
Of course, a simpler alternative to setting up 'ssmtp' with cron would be to write your cron job to redirect the output of 'ssh -v ...' to a file. > -Original Message----- > From: Harig, Mark A. > Sent: Tuesday, November 05, 2002 3:40 PM > To: [EMAIL PROTECT

RE: Is RSA authentication on SSH still broken?

2002-11-05 Thread Harig, Mark A.
I am able to use SSH with public/private-key files. ssh is working on Cygwin, both as a client and as a server, at least on Win2K. # Cygwin version: $ uname -r 1.3.14(0.62/3/2) # Windows version: $ uname -s CYGWIN_NT-5.0 # ssh version $ ssh -V OpenSSH_3.4p1, SSH protocols 1.5/2.0, OpenSSL 0x0090

RE: Is RSA authentication on SSH still broken?

2002-11-05 Thread Harig, Mark A.
Also, if checking your file/directory permissions does not solve your problem, then please consider the bug-reporting guidelines for Cygwin - As requested at http://cygwin.com/bugs.html: o Please describe how to reproduce the problem, including a test case, if possible. o Please include at lea

RE: Complete newbie to cygwin

2002-11-06 Thread Harig, Mark A.
Try: 1. Delete your previous installation directories 2. During your initial installation, don't select additional packages beyond those that are installed by default, that is, install the smallest number of packages possible to get a working Cygwin environment. 3. Add

RE: gcc error on cygwin

2002-11-06 Thread Harig, Mark A.
As requested at http://cygwin.com/bugs.html: o Please describe how to reproduce the problem, including a test case, if possible. o Please include at least the version number of the Cygwin release you are using along with the operating system name and its version number, for example, "cy

RE: Bash problem

2002-11-06 Thread Harig, Mark A.
As requested at http://cygwin.com/bugs.html: o Please describe how to reproduce the problem, including a test case, if possible. o Please include at least the version number of the Cygwin release you are using along with the operating system name and its version number, for example, "cy

FW: Can cron run ssh commands?

2002-11-06 Thread Harig, Mark A.
com] > Sent: Wednesday, November 06, 2002 1:17 PM > To: Harig, Mark A. > Subject: Re: Can cron run ssh commands? > > > Thanks for the reply, > > I don't have ssmtp set up yet, so I took your suggestion and > tried redirecting > "env" and "ss

RE: Process does not respond to signals on read() of win32 handle.

2002-11-06 Thread Harig, Mark A.
As requested at http://cygwin.com/bugs.html: o Please describe how to reproduce the problem, including a test case, if possible. o Please include at least the version number of the Cygwin release you are using along with the operating system name and its version number, for example, "cy

RE: Cygwin-ssh under Windows 2000 + NTFS

2002-11-06 Thread Harig, Mark A.
As requested at http://cygwin.com/bugs.html: o Please describe how to reproduce the problem, including a test case, if possible. o Please include at least the version number of the Cygwin release you are using along with the operating system name and its version number, for example, "cy

FW: Process does not respond to signals on read() of win32 handle.

2002-11-06 Thread Harig, Mark A.
dspring.com] > Sent: Wednesday, November 06, 2002 4:20 PM > To: Harig, Mark A. > Subject: RE: Process does not respond to signals on read() of win32 > handle. > > > Hi Mark, > > I am running Cygwin on Windows 2000. Here is the output of uname -a > > CYGWIN_NT-5.0 R

RE: bash-2.05b6 shell script fails

2002-11-06 Thread Harig, Mark A.
It appears to be a problem with command substitution. The following script fails also: #!/bin/bash foo=foo1 # simple assignment worked? bar=`echo` # command-substitution worked? When run in bash-2.05b6, the following results: $ uname -r 1.3.14(0.62/3/2) $ ./bug.sh ./bug.sh: line 5: command-subs

RE: Is RSA authentication on SSH still broken?

2002-11-06 Thread Harig, Mark A.
> > chmod 755 $HOME/.ssh > chmod 644 $HOME/.ssh/authorized_keys* > > I had $HOME set to 700 and authorized_keys* to 600 before and that > somehow broke RSA authentication - it is odd that stricter permissions > would cause that. I suppose this is because the SYSTEM or > sshd user need > to read

RE: gcc (as.exe) install error

2002-11-06 Thread Harig, Mark A.
As requested at http://cygwin.com/bugs.html: o Please describe how to reproduce the problem, including a test case, if possible. o Please include at least the version number of the Cygwin release you are using along with the operating system name and its version number, for example, "cy

RE: Process does not respond to signals on read() of win32 handle

2002-11-06 Thread Harig, Mark A.
Did you pass "/dev/com" or "/dev/com0"? (Hmm. What is this 'redback' you speak of? :) > -Original Message- > From: [EMAIL PROTECTED] [mailto:sanjayl@;mindspring.com] > Sent: Wednesday, November 06, 2002 7:09 PM > To: [EMAIL PROTECTED] > Cc: [EMAIL PROTECTED] > Subject: Re: Process does n

RE: NO huge packages, please!

2002-11-07 Thread Harig, Mark A.
If you are having problems with your slow connection breaking in the middle of a download, then you might try using the 'wget' utility to download packages, and then use 'setup.exe' with the 'Install from Local Directory' option for installation. > -Original Message- > From: Rodrigo Medina

RE: bash 2.05b-7 and command line tab completion

2002-11-07 Thread Harig, Mark A.
I can't tell whether this bug (tab-completion adding a space when it is used for the first word after the prompt) is Cygwin-specific, or if it was added with bash 2.05. My two versions of bash running on Linux are 2.04. Neither of them have this bug. Does someone have another (non-Cygwin) bash 2

RE: Is RSA authentication on SSH still broken?

2002-11-07 Thread Harig, Mark A.
Thank you for the clarification! This presents an interesting situation. Users who run 'ssh-keygen' (either directly, or indirectly using 'ssh-host-config'), find that they are not able to run ssh because of the permissions of ~/.ssh/ (and, later, ~/.ssh/authorized_keys*), even though their permis

RE: gcc error on cygwin

2002-11-07 Thread Harig, Mark A.
/check.exe. gdb should start automatically. > -Original Message- > From: Ajitha [mailto:aji@;sscu.iisc.ernet.in] > Sent: Thursday, November 07, 2002 11:54 AM > To: Harig, Mark A. > Cc: [EMAIL PROTECTED] > Subject: RE: gcc error on cygwin > > > > Hi, >

RE: NO huge packages, please!

2002-11-07 Thread Harig, Mark A.
s at /webserver/ftp, so I then > instruct setup to > pull from ftp://www.fruitbat.org/pub/cygwin. Works pretty > well for me, > no manual fudging required. > > > Randall Schulz > > Mountain View, CA USA > > > > > > At 08:01 2002-11-07, Harig, Mark A.

RE: [ANNOUNCEMENT] Updated: binutils-20021107-1

2002-11-07 Thread Harig, Mark A.
> > I got a segfault in my program. > Same program I've been working on today. > Segfault and signal 11. > Signal 11 occurred immediatly after startup. > Before I go into any details, I just upgraded to binutils-20021107-1. Before sending email, please gather details. As requested at http://cyg

RE: Is RSA authentication on SSH still broken?

2002-11-07 Thread Harig, Mark A.
> > First, the directory permission doesn't restrict the access for SYSTEM > due to the standard "Bypass traverse checking" setting on NT. > So setting > the .ssh permissions to 0700 is perfectly fine. > I must be missing a piece of information. Setting the permissions of ~/.ssh to 700 causes

RE: Is RSA authentication on SSH still broken?

2002-11-08 Thread Harig, Mark A.
> > On Thu, Nov 07, 2002 at 06:54:48PM -0500, Harig, Mark A. wrote: > > I must be missing a piece of information. Setting the > > permissions of ~/.ssh to 700 causes ssh to require me > > to enter a password, that is, the encryption-key processing > > is failin

RE: Is RSA authentication on SSH still broken?

2002-11-11 Thread Harig, Mark A.
> >chmod 700 ~ && \ > ^^^ > This is your problem. By setting home and .ssh to 700 you > disallow sshd to > stat() ~/.ssh. Cygwin has two chances to retrieve > information about a file > or directory, by either calling FindFileFirst() or by trying > to open the > file a

RE: Is RSA authentication on SSH still broken?

2002-11-11 Thread Harig, Mark A.
> > Harig, Mark A. <[EMAIL PROTECTED]> wrote: > > OK. So, it appears that Cygwin users > > of openssh have one of two options: > > > > 1. chmod 700 ~ > >chgrp 18 ~/.ssh > >chmod 750 ~/.ssh > > > > or > > > > 2. chm

RE: Access Denied (XP Home SP1, cygwin-1.3.15

2002-11-11 Thread Harig, Mark A.
try: After creating temp.txt in Cygwin: $ ls -l temp.txt The permissions of this file will depend upon your setting of 'umask'. For me, this yields: $ umask 0022 So, my permissions are set to 'rw-r--r--'. Because you are creating a text file, execution permission should not be on

RE: Native Xemacs

2002-11-12 Thread Harig, Mark A.
See http://www.cygwin.com/packages/ for a list of packages. > -Original Message- > From: J. Scott Edwards [mailto:sedwards@;xmission.com] > Sent: Tuesday, November 12, 2002 2:53 PM > To: '[EMAIL PROTECTED]' > Subject: Native Xemacs > > > > I just installed XEmacs and I installed it for

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

2002-11-13 Thread Harig, Mark A.
If it is an option, you might consider running the Windows 'convert' utility to change your filesystem from FAT32 to NTFS. Your operating system (Win2K) support NTFS, of course. > -Original Message- > From: Scott W Brim [mailto:sbrim@;cisco.com] > Sent: Tuesday, November 12, 2002 12:11 PM

RE: NEWBIE: Problem with $Home being set to /usr/bin/%USERPROFILE%

2002-11-14 Thread Harig, Mark A.
In the future, please include the output of 'cygcheck' as an attachment. When the text is included in the message it causes many false matches when the mailing list archives are searched. > > FYI, I have included the output from cygcheck -s below. > -- Unsubscribe info: http://cygwin.com/

RE: NEWBIE: Problem with $Home being set to /usr/bin/%USERPROFILE%

2002-11-14 Thread Harig, Mark A.
> > Just after upgrading to 1.3.15, when starting a Cygwin > session, for some > reason Bash is assigned to the home directory /usr/bin/%USERPROFILE% > Originally this was /home/Administrator/ I can not figure > out what caused > this to change, and how to go about changing this back. Any > s

RE: SSHD on NT4...

2002-11-15 Thread Harig, Mark A.
> > > What is the output of "ls -l /etc/ssh*" and "ls -l > /usr/sbin/sshd.exe"? > > Please check the rwx attributes of /etc, /usr and /usr/sbin > directories. > > These are all "drwxrwxrwx". > The /etc/ssh_host*key files should be set to 600, not 777. None of the other /etc/ssh* configuration

RE: NEWBIE: Problem with $Home being set to /usr/bin/%USERPROFILE%

2002-11-15 Thread Harig, Mark A.
> 2. Have you recently changed the contents of /etc/passwd? > > No > >What are the permissions and ownership of this file? > > -rwx--1 Administ None 658 Sep 16 13:37 /etc/passwd* > Check the last two fields of your entry in /etc/passwd. >What are the permissions and o

  1   2   >