autoexpect appears to be missing

2003-03-24 Thread Scott Prive
Hello, I appear to be missing the "autoexpect" command, yet I have latest full versions of: expect tcltk dejagnu (plus source) I searched for this problem in the Documentation page, list archives, FAQ, and manpage. Do I need to install something else? thanks, (please include me on

port of "watch"?

2002-10-07 Thread Scott Prive
Is anyone aware of a port of "watch" to Cygwin? For the curious, watch is a standard (?) tool on Linux which re-executes a command at 2 second intervals (configurable). ex: watch "ls -l" This is more convenient than looping code on the shell. On Linux, this is part of procps: [root@redhat roo

RE: port of "watch"?

2002-10-07 Thread Scott Prive
PM > To: Scott Prive > Cc: [EMAIL PROTECTED] > Subject: Re: port of "watch"? > > > On Mon, 7 Oct 2002, Scott Prive wrote: > > > Is anyone aware of a port of "watch" to Cygwin? > > > > For the curious, watch is a standard (?) tool on Lin

ssh service staring problem "bad owner /var/empty" but not fixed

2002-10-09 Thread Scott Prive
Hello, I understand the problem I am about to ask is not uncommon, and I have made considerable effort to look for the answers in the archive... On an up-to-date (today) Cygwin install, sshd refuses to start (the MS Management console gives a useless error). On other systems, I have installed

RE: ssh service staring problem "bad owner /var/empty" but not fixed

2002-10-09 Thread Scott Prive
ject. There might be enough demand for a Cygwin book; I'd buy one in a heartbeat. With problems like this you get the complexity UNIX is known for, with NT's lack of decent error reporting. When you're DONE, of course, you get powerful UNIX tools, with Win2K's good points (good poin

RE: ssh service staring problem "bad owner /var/empty" but not fixed

2002-10-09 Thread Scott Prive
Looks like our problems are somewhat related. I wonder if anyone else has ideas... > -Original Message- > From: Elfyn [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, October 09, 2002 1:44 PM > To: cygml; Scott Prive > Subject: Re: ssh service staring problem "bad owne

RE: ssh service staring problem "bad owner /var/empty" but not fixed

2002-10-09 Thread Scott Prive
TED]] > Sent: Wednesday, October 09, 2002 2:08 PM > To: cygml; Scott Prive > Subject: Re: ssh service staring problem "bad owner > /var/empty" but not > fixed > > > Its pretty funky that this has started happening OOTB (out of > the blue). > have you had a

RE: ssh service staring problem "bad owner /var/empty" but not fixed

2002-10-09 Thread Scott Prive
> -Original Message- > From: Marius Seritan [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, October 09, 2002 2:11 PM > To: Scott Prive; Elfyn; cygml > Subject: Re: ssh service staring problem "bad owner > /var/empty" but not > fixed > > > I am not su

RE: ALMOST RESOLVED: ssh service staring problem "bad owner /var/empty" but not fixed (now password sync issue)

2002-10-09 Thread Scott Prive
hat description, suggestion would be most welcome! :-D Thanks for the cygcheck suggestion. Did you still want me to mail these to you (for your debugging?) -Scott > -Original Message- > From: Elfyn [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, October 09, 2002 2:21 PM > To: cygml

Can sshd server use NT/WIN2K's internal password database?

2002-10-09 Thread Scott Prive
All, 1) Is it possible for sshd to use the NT box's PDC password server? Is there a HOW-TO? I checked the FAQ, and many of the hits I got on Google. 2) If PDC authentication is not possible, can I use the "local NT password database" (created using NT's user tools)? For now, I just manually "

RE: ssh service staring problem "bad owner /var/empty" but not fixed

2002-10-09 Thread Scott Prive
> -Original Message- > From: Igor Pechtchanski [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, October 09, 2002 3:19 PM > To: Scott Prive > Cc: Elfyn; [EMAIL PROTECTED] > Subject: RE: ssh service staring problem "bad owner > /var/empty" but not > fixed

RE: Executing a script that needs DOS path

2002-10-10 Thread Scott Prive
Have you looked for "cygpath" in the archives (also `man cygpath`). cygpath will return a "converted" path. Be sure to use single quotes OR properly escape your input string or you will not get the expected result. I haven't used this myself, which is why I avoid a direct answer, but I've seen

weird Cygwin+CIFS issues (not symlinks...): filename contains garbage & mounting under ssh

2002-10-13 Thread Scott Prive
This question deals with weird, undeletable files under CIFS mounts, and an issue creating drive mounts under ssh. They may be related. Problem #1 - garbage-chars in filename Drive W: mounted using MS' "net use" command. I am operating under a remote ssh login. I am using Cygwin on a Linux CI

Cygwin can't write to CIFS... but cmd.exe *can*

2002-10-14 Thread Scott Prive
If one is authenticated against a remote CIFS share (Linux), should there be a difference in "permissions" between Cygwin and CMD.EXE? Example: After authentication/mount (via net use), I try `echo "foo" >myfile.txt` In the Cygwin shell, this fails and I get a 0-byte file. If I start CMD.EXE f

RE: Cygwin can't write to CIFS... but cmd.exe *can* (more)

2002-10-14 Thread Scott Prive
...of course, when I do this (in either example), I have cd'd to the CIFS share (/cygdrive/w/ in both cases) Also, the share is authenticated as a test account other than who I am in the shell (shell user=Administrator; CIFS authenticated as user 'foo'). I'm wondering if this has anything to d

RE: RESOLVED: Cygwin can't write to CIFS... but cmd.exe *can* (more)

2002-10-14 Thread Scott Prive
e files created on a > share didn't > >inherit the world read permissions of the directories (and > those couldn't > >be set). I wonder if these are related? > > Igor > > > >On Mon, 14 Oct 2002, Scott Prive wrote: > > > > > >

RE: RESOLVED: Cygwin can't write to CIFS... but cmd.exe *can* (more)

2002-10-14 Thread Scott Prive
> > For the archive: Add to NT Environment "nontsec=smb" (no quotes, > > append to your existing CYGWIN value). > > Is this an alternative syntax? I thought it was "nosmbntsec". > > Max. This was the first example I found in the archives, and it worked. It was a discussion leading up to impli

RE: RESOLVED: cygwin can't write to CIFS... but cmd.exe *can* (more)

2002-10-14 Thread Scott Prive
> > nontsec=smb probably just turns off ntsec entirely. The CYGWIN > environment variable parser is not that sophisticated. "oops". I don't suppose I would even notice ntsec being off notice given my limited needs. You are probably right, and this is likely a `side effect/parser issue'... I'v

RE: Cygwin can't write to CIFS... but cmd.exe *can* (more)

2002-10-14 Thread Scott Prive
answer for your inheriting-permissions issue, sorry. -Scott (Eagerly awaiting someone to write an O'Reily book on Cygwin :-) > -Original Message- > From: Igor Pechtchanski [mailto:[EMAIL PROTECTED]] > Sent: Monday, October 14, 2002 10:54 AM > To: Scott Prive >

Oreilly book on Cygwin

2002-10-14 Thread Scott Prive
I sent my request to [EMAIL PROTECTED] Hopefully they sense enough "demand" to investigate this topic... > -Original Message- > From: Larry Hall (RFK Partners, Inc) [mailto:[EMAIL PROTECTED]] > Sent: Monday, October 14, 2002 3:24 PM > To: Scott Prive; [EMAIL PR

Perl system() and Cygwin

2002-10-15 Thread Scott Prive
Hello, I'm experiencing some non-intuitive behavior when -- under Cygwin Perl -- calling system commands. The FAQ alludes to "differences" between Cygwin and systems like Linux.. this might be another one of these differences, or it might be dumb-user-error. I have a solution I can live with.

RE: RESOLVED: Perl system() and Cygwin

2002-10-15 Thread Scott Prive
> -Original Message- > From: Igor Pechtchanski [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, October 15, 2002 4:00 PM > To: Scott Prive > Cc: [EMAIL PROTECTED] > Subject: Re: Perl system() and Cygwin > > > On Tue, 15 Oct 2002, Scott Prive wrote: > >

RE: paths like //usr/local

2002-10-15 Thread Scott Prive
FYI: I actually *had* hostnames like "var", "tmp" and so on at one time... :-) Cygwin maps UNIX/POSIX behavior on top of NT, but NT was designed to be compatible with DOS's *broken* conventions, so NT is half-broken. Any kind of parsing for mounts like you suggest would probably incur a perfor

RE: "==" operand not found

2002-10-23 Thread Scott Prive
This one is in the FAQ on the Cygwin website. I'll give you hint: ;-) $ /bin/bash testme.sh 1 Hello World Scott > -Original Message- > From: Nitin Gupta [mailto:gupta@;equator.com] > Sent: Wednesday, October 23, 2002 6:22 PM > To: [EMAIL PROTECTED] > Subject: "==" operand not found >

RE: "==" operand not found

2002-10-23 Thread Scott Prive
> -Original Message- > From: Randall R Schulz [mailto:rrschulz@;cris.com] > Sent: Wednesday, October 23, 2002 7:30 PM > To: [EMAIL PROTECTED] > Subject: Re: "==" operand not found > > > Nitin, > > You're most likely accustomed on your Linux system to > "/bin/sh" being BASH. > On Cygw

Cygwin feature request - setup.exe release notes

2002-10-18 Thread Scott Prive
Feature request: For SOME packages, release Notes that can be pulled up from the installer. Many people run Cygwin and are not members of this list. Ideally, people would read the mailing list before installing, and again before upgrading. This is not the reality and human nature is difficult t

RE: bash -c

2002-10-20 Thread Scott Prive
> >Chris F.: Please do write that book! > > I'm negotiating as fast as I can. :-) > > cgf Would it help if everyone politely asked the potential publisher "when" they'll ever have a Cygwin book? ;-) -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting: http

RE: cygwinl.dll

2002-10-21 Thread Scott Prive
> -Original Message- > From: David Starks-Browning [mailto:starksb@;ebi.ac.uk] > Sent: Monday, October 21, 2002 8:18 AM > To: nemrut cesetevi > Cc: [EMAIL PROTECTED] > Subject: cygwinl.dll > > > On Monday 21 Oct 02, nemrut cesetevi writes: > > > > > > > > i installed cygwin-b20 full

RE: Latest update problems (ntsec and file permissions, I think)(tagged releases comment)

2002-10-21 Thread Scott Prive
> -Original Message- > From: William A. Hoffman [mailto:billlist@;nycap.rr.com] > Sent: Monday, October 21, 2002 10:12 AM > To: [EMAIL PROTECTED] > Subject: Latest update problems (ntsec and file permissions, I think) > > Once I did that, things were better. Is this a problem that is goin

RE: WinSCP

2002-10-22 Thread Scott Prive
If I understand your question correctly, this is a Putty-specific question, and you have contacted the wrong forum. Cygwin has it's own ssh client for Windows -- but that is not what you are using (and installing Cygwin just for ssh is probably overkill). Look for help off the Putty homepage (G

RE: igor

2002-10-22 Thread Scott Prive
Nemrut: You should really read this (perhaps bookmark it): http://www.tuxedo.org/~esr/faqs/smart-questions.html This document sums up *years* of experience in an easy-to-understand format. This will help you, when you ask others for help. -Scott > -Original Message- > From: Lane, Fra

RE: Is it possible to convert a ".so" file to a ".a" file?

2002-10-27 Thread Scott Prive
Paul, I'm not sure if (or how) one might convert a .so to a .a file. You'll get other answers (I'm not one of the list experts that's for sure ;-) But if I understand you correctly, you were given ".so" binary files. You won't be able to just take compiled Linux code and run it in Cygwin: Cygwi

RE: Is it possible to convert a ".so" file to a ".a" file?

2002-10-27 Thread Scott Prive
> -Original Message- > From: Sven Köhler [mailto:skoehler@;upb.de] > Sent: Sunday, October 27, 2002 3:14 PM > To: [EMAIL PROTECTED] > Subject: Re: Is it possible to convert a ".so" file to a ".a" file? > > > > But if I understand you correctly, you were given ".so" > binary files. > >

RE: Is it possible to convert a ".so" file to a ".a" file?

2002-10-27 Thread Scott Prive
This issue is or appears resolved, but "Cygwin" dropped off the Reply. Forwarding to the group.. -Scott -Original Message- From: Paul Strugnell [mailto:strugnp1@;cs.man.ac.uk] Sent: Sunday, October 27, 2002 1:50 PM To: Scott Prive Subject: Re: Is it possible to convert a "

RE: REQUEST FOR AN ASSISTANCE (can we get an ALL CAPS spam filter?)

2002-10-28 Thread Scott Prive
Any chance the list maintainer could add a filter for all-caps emails? -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting: http://cygwin.com/bugs.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/

RE: domain users problem

2002-10-28 Thread Scott Prive
No one here will know about your non-Cygwin tools. I'm sure you can get this all to work, but you'll need to solve the problem yourself. Here are some suggestions for your debugging; they MAY or MAY NOT work but could provide you with clues. Also, these are generalizations and I may not be 100%

RE: gdb hangs on a 486

2002-10-31 Thread Scott Prive
> At this point, I think most (all?) Cygwin packages are > configured like this. > Whether or not that's true, it's not unwarranted. There's > good reason to > make use of the newer architectures' capabilities. At the risk of asking for Yet Another Feature ... and I'm thinking out loud more t

RE: gdb hangs on a 486

2002-10-31 Thread Scott Prive
TECTED] [mailto:lhall@;pop.ma.ultranet.com] > Sent: Thursday, October 31, 2002 12:32 PM > To: Scott Prive; [EMAIL PROTECTED]; [EMAIL PROTECTED] > Subject: RE: gdb hangs on a 486 > > > Hm, an interesting thought. This would require packages to > provide some information, probably

RE: gdb hangs on a 486

2002-10-31 Thread Scott Prive
> Thanks for the clarification Scott. > > Larry NP. When someone contributes a patch, I'll be sure to transfer those thanks since I don't deserve them (suggestions are *always* free..) ;-) > > Original Message: > ----- > From: Scott Prive [EMAIL

RE: gdb hangs on a 486 (dead msg thread)

2002-10-31 Thread Scott Prive
Thursday, October 31, 2002 2:56 PM > To: [EMAIL PROTECTED] > Subject: Re: gdb hangs on a 486 > > > On Thu, Oct 31, 2002 at 02:46:58PM -0500, Scott Prive wrote: > >>Thanks for the clarification Scott. > > > >NP. When someone contributes a patch, I'll

RE: Looking for cygpcre.dll

2002-10-31 Thread Scott Prive
This (and other) dll's get installed by programs that need it. You do not need to worry about picking dll's -- it's all automatic by setup.exe If I understand you, you just want the dll, and you're not terribly curious to know what package it comes from. So, one answer is run SETUP, select "some

RE: New User Account

2002-11-06 Thread Scott Prive
I highly recommend reading the Cygwin FAQ http://www.cygwin.com/faq/ I'm a bit of a Cygwin newbie, but I *can* tell you Cygwin uses NT accounts (if you're on NT-based Windows). If you're on Windows NT/2000/XP, then just create users as you normally do in that environment (hint: Administrative T

RE: Lesstif compilation problem and setup.exe

2002-11-11 Thread Scott Prive
> -Original Message- > From: Mark Manning [mailto:markem@;ev1.net] > Sent: Monday, November 11, 2002 12:20 PM > To: [EMAIL PROTECTED] > Subject: Lesstif compilation problem and setup.exe > > If you need a screen dump - let me know. I can either try to capture > the text itself (didn't

RE: Cygwin Release process

2003-01-27 Thread Scott Prive
William, The "ntsec" problem by all accounts was a one-time switch that burned a lot of people. It seems like a great feature (not completely using it myself), and when I upgraded to it I had NO idea of the impending change. I should have known better than to perform blind upgrades. I've been

RE: cygwin Release process

2003-01-28 Thread Scott Prive
> -Original Message- > From: Christopher Faylor [mailto:[EMAIL PROTECTED]] > Sent: Monday, January 27, 2003 6:08 PM > To: [EMAIL PROTECTED] > Subject: Re: cygwin Release process > > > On Mon, Jan 27, 2003 at 04:54:25PM -0500, Scott Prive wrote: > >William,

setup.exe and mirror list question

2002-04-02 Thread Scott Prive
isplayed in the install screen. I checked the FAQ & discussion lists and could not see how this would be done. Is this possible? thanks, Scott Prive -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting: http://cygwin.com/bugs.html Documentation:

RE: setup.exe and mirror list question

2002-04-04 Thread Scott Prive
e resource editing after each new setup.exe is downloaded (yipee!). Thanks, Scott -Original Message- From: Pavel Tsekov [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 03, 2002 2:36 AM To: Scott Prive Cc: Cygwin Subject: Re: setup.exe and mirror list question Hello Scott, Tuesday, Apri

RE: Re[2]: setup.exe and mirror list question

2002-04-05 Thread Scott Prive
ygwin under WINE anymore). Anyhow, Thanks, you've been a big help! -Scott -Original Message- From: Pavel Tsekov [mailto:[EMAIL PROTECTED]] Sent: Friday, April 05, 2002 3:11 AM To: Scott Prive Cc: [EMAIL PROTECTED] Subject: Re[2]: setup.exe and mirror list question Hello Scott, Thu

RE: MS Logo compliance - w2k / xp

2002-04-08 Thread Scott Prive
>I'm being asked if Cygwin is or will be 'MS Logo' compliant.. [snip] - You already have some responses to this, but here's one, from a different slant: *Why* are you being asked this? (Don't answer me! :-) I don't want to know, since I can't help). Questions sometimes can be leading; this q

RE: F-Secure anti-virus causes system crash when scanning the C:\cygwin directory.

2002-05-09 Thread Scott Prive
Brad, a workaround: Configure your antivirus program to "exclude" scanning the Cygwin directory. This is a very common question.. might be in FAQ?, I'm not sure. Outdated AV software will accuse Cygwin of being a virus... I'm not so sure I would want (or trust) antivirus software that *blues

Better solution for calling 'net use' from Cygwin Perl?

2002-05-15 Thread Scott Prive
Hello, I had a .sh script that called Microsoft's "net use" command to mount drives under Win2k, and this worked: net use 't:' '\\myserver\share' However I needed to do this in Cygwin Perl so I could leverage an existing set of Perl libraries I have. For the life of me I could correctly execu

RE: Better solution for calling 'net use' from Cygwin Perl?

2002-05-15 Thread Scott Prive
ist Subject: Re: Better solution for calling 'net use' from Cygwin Perl? Scott, et al -- ...and then Scott Prive said... % % Hello, Hello! % % I had a .sh script that called Microsoft's "net use" command to mount drives under Win2k, and this worked: % net

dumb escaping question when using Cygwin + NT commands

2002-09-18 Thread Scott Prive
Hello, I get this odd problem when calling NT commands from Cygwin. I am single-quoting the data, but the way I'm doing things (probably wrong...) does not like passing $1 function arguments to NT commands. If I hardcode the arguments internally, everything works. The two example functions b

RE: dumb escaping question when using Cygwin + NT commands

2002-09-19 Thread Scott Prive
> -Original Message- > From: Randall R Schulz [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, September 18, 2002 6:30 PM > To: [EMAIL PROTECTED] > Subject: Re: dumb escaping question when using Cygwin + NT commands > > > Scott, > > At 15:15 2002-09-18,

RE: dumb escaping question when using Cygwin + NT commands

2002-09-19 Thread Scott Prive
Yes that helped; thanks. > -Original Message- > From: Igor Pechtchanski [mailto:[EMAIL PROTECTED]] > Sent: Thursday, September 19, 2002 12:00 PM > To: Scott Prive > Cc: [EMAIL PROTECTED] > Subject: RE: dumb escaping question when using Cygwin + NT commands > >

Did anyone ever have success porting sgtty.h?

2002-02-07 Thread Scott Prive
one wants to port it to Cygwin -- reasons other than the = header being obsolete. If there is a bloody history, I'm curious. :-) Scott Prive PS - If anyone is curious, the application I am trying to compile is a C & = Tcl app called "Brewers Little Helper" (formerly "BrewNIX").

RE: trouble running commands non-interactively (e.g. via ssh, cron, at)

2002-02-14 Thread Scott Prive
No idea since I don't administer NT users, but I assume you've tried to isolate this by scripting "other" executables. So is this a 1) system-wide NT / ssh issue, 2) a possible bug in your script, or 3) is something special about these particular .exe files on your server? If those NT exe's h