I am getting an error trying to use openssl 1.1.1v in cygwin

2024-02-18 Thread Cary Lewis via Cygwin
Attempting to run: openssl enc -base64 -i file gives the following error: 42949672976:error:25066067:DSO support routines:dlfcn_load:could not load the shared library:crypto/dso/dso_dlfcn.c:118:filename(libproviders.dll): No such file or directory 42949672976:error:25070067:DSO support

Difference between cygwin versions

2023-08-28 Thread Cary Lewis via Cygwin
On one machine I have cygwin version 3.1.7(0.340/5/3), I can copy cygwin binaries and the corresponding dlls to a folder and then run the cygwin programs without any problems. But on another machine I have a newer cygwin, 3.4.7-1.x86_64, and when I do the same thing, the programs do not work:

process substitution to create a virtual file doesn't work in chroot environment

2023-08-27 Thread Cary Lewis via Cygwin
In a cygwin process that is started either from mintty or bash directly the following: $ user=234 $ ./cat <(echo $user) 234 works as expected. But after a chroot: $ chroot . ./bash user=234 $ ./cat <(echo $user) ./cat: /dev/fd/63: No such file or directory In the directory I am chrooting in,

Slow cygwin executable start up

2022-04-30 Thread Cary Lewis
I am experiencing a problem with Cygwin on my Dell 7590. There is a multi-second delay when starting a cygwin program from a mintty window, but only the first time that a program is run. E.g. if run openssl version, then sometimes there is a delay before anything is outputted. If I run the

awsv2 cli

2021-11-26 Thread Cary Lewis via Cygwin
Is there a way to install and run v2 of the aws cli under cygwin? -- Problem reports: https://cygwin.com/problems.html FAQ: https://cygwin.com/faq/ Documentation:https://cygwin.com/docs.html Unsubscribe info: https://cygwin.com/ml/#unsubscribe-simple

Problem with permissions - veritas backup software not working

2021-11-13 Thread Cary Lewis via Cygwin
Something ran off the rails with my windows 10 PC running cygwin a few months ago. I am using Veritas System Recovery System to backup my machine, and it started failing about 6 months ago. When I run a diagnostic that is supposed to confirm if the VSS subsystem is working correctly, it

Access WSL files from cygwin

2021-02-07 Thread Cary Lewis via Cygwin
Is there a way to access files from a WSL 2 Linux distro from Cygwin? >From Windows: \\wsl$\Ubuntu is accessible from Windows Explorer, but cygwin does not seem to recogonize: //wsl\$ nor does it recognize //HOSTNAME/wsl\$ but //HOSTNAME/c\$ works. Thanks for any help you can provide. --

waterproofing

2020-08-06 Thread Cary Lewis via Cygwin
Here is a summary of what's going on. Originally the eavestrough downspout was terminating where the deck ends. Our neighbours downspout terminates in roughly the same spot on their side of the fence. With the big rain storms over the weekend, water found its way under the deck and to basement

Re: Cygwin PHP (all available versions) has a hard 4MB memory limit

2020-08-04 Thread Cary Lewis via Cygwin
: > [Please don't top-post on this list.] > > On 8/3/2020 9:57 PM, Cary Lewis wrote: > > I am running php on two different Windows 10 computers, and on one > machine I can > > run composer with no issues, but on other I get our of memory issues. > > > > Both report:

Re: Cygwin PHP (all available versions) has a hard 4MB memory limit

2020-08-03 Thread Cary Lewis via Cygwin
I am running php on two different Windows 10 computers, and on one machine I can run composer with no issues, but on other I get our of memory issues. Both report: php -v PHP 7.3.7 (cli) (built: Jul 21 2019 18:10:35) ( NTS ) Copyright (c) 1997-2018 The PHP Group Zend Engine v3.3.7, Copyright

Re: TCP_KEEPINVTL and TCP_KEEPIDLE - Socket Keep Alives not working

2020-07-13 Thread Cary Lewis via Cygwin
release, and hopefully that will include rebuilt versions of curl, and other network utilities, such as wget, nc, etc. It's always a pleasure working with you. On Thu, Jul 2, 2020 at 10:52 AM Cary Lewis wrote: > That's amazing, thanks. We'll have to try to recompile curl under cyg

Re: TCP_KEEPINVTL and TCP_KEEPIDLE - Socket Keep Alives not working

2020-07-02 Thread Cary Lewis via Cygwin
That's amazing, thanks. We'll have to try to recompile curl under cygwin to confirm that it keeps up the constants, and then does the right posix calls. I will grab the files, and try to have this tested and report back to you. Take care, Cary Lewis On Wed, Jul 1, 2020 at 3:51 PM Corinna

Re: TCP_KEEPINVTL and TCP_KEEPIDLE - Socket Keep Alives not working

2020-06-30 Thread Cary Lewis via Cygwin
implications for cygwin? On Tue, Jun 30, 2020 at 7:15 AM Corinna Vinschen wrote: > On Jun 7 14:56, Cary Lewis via Cygwin wrote: > > Thanks very much for the reply - I will wait for Corinna's take on this > as > > well - the patch shouldn't be too hard. > > It's not that easy,

Re: Where can I download the cygport source packages for a cygwin package

2020-06-29 Thread Cary Lewis via Cygwin
Thank you - I didn't realize that the php-7.3.7-1-src.tar.xz contains the patches as well as the actual php src: php-7.3.7.tar.xz the -src.tar.xz implies cygwin sources included patches, etc. On Mon, Jun 29, 2020 at 3:19 PM Marco Atzeri via Cygwin wrote: > On 29.06.2020 19:43, Cary Lewis

Attempting to compile latest php 8.0.0 from source

2020-06-29 Thread Cary Lewis via Cygwin
I did a git clone: git clone https://github.com/php/php-src.git then: ./configure --with-pear --enable-mbstring --with-curl --with-openssl --with-xmlrpc --enable-soap --enable-zip --with-jpeg-dir --with-png-dir --with-mysqli --enable-embedded-mysqli --with-freetype-dir

Re: Where can I download the cygport source packages for a cygwin package

2020-06-29 Thread Cary Lewis via Cygwin
I appreciate the reply, I found those links but they only list the files in the src ports - where can I download them from? On Mon, Jun 29, 2020 at 11:04 AM Ken Brown via Cygwin wrote: > On 6/29/2020 9:17 AM, Cary Lewis via Cygwin wrote: > > I would like to build php locally. I know

Where can I download the cygport source packages for a cygwin package

2020-06-29 Thread Cary Lewis via Cygwin
I would like to build php locally. I know I can use the setup.exe installer and select the src, but there must be a repo somewhere with the cygport files? Thanks. -- Problem reports: https://cygwin.com/problems.html FAQ: https://cygwin.com/faq/ Documentation:

Re: php memory errors

2020-06-29 Thread Cary Lewis via Cygwin
Yes, I reported this last week - composer (composer.phar) gives out of memory errors, despite having max_memory_limit set to -1. I have tried to compile php myself, but to no avail - php 7.3.19 doesn't compile, there are errors in the zend framework. php-7.3.19/Zend/zend_portability.h:381:18:

composer runs out of memory

2020-06-27 Thread Cary Lewis via Cygwin
I am running cygwin 64 bit and have installed the latest 7.3.7 version of php. When I attempt to run composer, I get a fatal out of memory error. In my php.ini file I have set max memory to -1, and php -r "echo ini_get('memory_limit').PHP_EOL;" -1 confirms it. I saw a stackoverflow article

Re: TCP_KEEPINVTL and TCP_KEEPIDLE - Socket Keep Alives not working

2020-06-07 Thread Cary Lewis via Cygwin
via Cygwin wrote: > On 6/7/2020 9:20 AM, Cary Lewis via Cygwin wrote: > > These constants are usually defined in netinet/tcp.h but are not defined > > anywhere in cygwin. > > > > As a result there does not seem to be a way to enable the socket level > keep >

TCP_KEEPINVTL and TCP_KEEPIDLE - Socket Keep Alives not working

2020-06-07 Thread Cary Lewis via Cygwin
These constants are usually defined in netinet/tcp.h but are not defined anywhere in cygwin. As a result there does not seem to be a way to enable the socket level keep alives in cygwin. One result of this is curl's --keepalive-time option does not work, but it would affect any attempt to

curl not sending keep-alive packets

2020-06-06 Thread Cary Lewis via Cygwin
I downloaded and compiled curl on cygwin, version 3.1.5-1 using: ./configure --disable-shared --enable-debug --prefix=/usr The build completed correctly. When I attempt to use curl to access an https:// REST endpoint that takes up to 5 minutes to respond with the: --keepalive-time 5 command

Re: cURL uploads 0 length file for sftp transfer.

2020-06-05 Thread Cary Lewis via Cygwin
Curl under cygwin - TCP keepalive I need to download a file from a remote server via a https request, and the remote server takes several minutes to prepare the file. Without any keepalives, the remote end will terminate the socket, but it doesn't close it (which I know is weird). Running curl

Can you compile node.js under cygwin?

2019-10-25 Thread Cary Lewis
I tried to clone the repo, and after running configure, then make I got this error: make -C out BUILDTYPE=Release V=0 touch 12396aa5d0c66cc1eba58d7550d4db5f74c0a51c.intermediate LD_LIBRARY_PATH=/home/clewis/node/out/Release/lib.host:/home/clewis/node/out/Release/lib.target:$LD_LIBRARY_PATH;

I am trying to build imagemagick with heic support

2019-10-03 Thread Cary Lewis
I downloaded libheif and when I configured it and built with the --enable-shared option, it didn't build a .dll The /usr/lib/libheif.la doesn't contain a library: # libheif.la - a libtool library file # Generated by libtool (GNU libtool) 2.4.6 # # Please DO NOT delete this file! # It is

Re: createevent access denied

2019-09-05 Thread Cary Lewis
ing...@systematicsw.ab.ca> wrote: > On 2019-09-04 19:29, Cary Lewis wrote: > > I am trying to write to the windows events sub system using createevent, > > but I am getting access denied. > > > > Is there a cygwin utility that provides a way to create a windows event? >

createevent access denied

2019-09-04 Thread Cary Lewis
I am trying to write to the windows events sub system using createevent, but I am getting access denied. Is there a cygwin utility that provides a way to create a windows event? -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation:

Re: cygwin 3.0.1-1 breaks my sshd install

2019-02-23 Thread Cary Lewis
of no help. Looking forward to a newer version of openssh... On Sat, Feb 23, 2019 at 1:20 PM Cary Lewis wrote: > I’m seeing a similar issue. Will try using localsystem. > > > On Feb 21, 2019, at 6:43 AM, Houder wrote: > > > >> On Thu, 21 Feb 2019 11:09:11, Corinna Vinschen

Re: cygwin 3.0.1-1 breaks my sshd install

2019-02-23 Thread Cary Lewis
I’m seeing a similar issue. Will try using localsystem. > On Feb 21, 2019, at 6:43 AM, Houder wrote: > >> On Thu, 21 Feb 2019 11:09:11, Corinna Vinschen wrote: >> >> I managed it today already but I'm somewhat stumped. >> >> I ran ssh-host-config and let the script install a new local

accessing iphone files from cygwin

2017-08-02 Thread Cary Lewis
I compiled ifuse libimobiledevice libplist libusbmuxd usbmuxd per instructions I found for compiling these under Ubuntu, and while they all compiled. These programs running in a vm under windows with vmware workstation, can access the iphone without issues. However I am not able to run

Is is possible to compile / run ntp utilities in cygwin

2017-05-30 Thread Cary Lewis
it possible to build ntp under cygwin? I am getting errors compiling: make[3]: Entering directory '/home/clewis/ntp-4.2.8p10/libntp' CC iosignal.o iosignal.c: In function =E2=80=98init_clock_sig=E2=80=99: iosignal.c:87:22: error: =E2=80=98I_SETSIG=E2=80=99 undeclared (first use i= n

pass arguments enclosed with double quotes from bash shell to windows program

2016-04-02 Thread Cary Lewis
I need to start acrobat from a bash shell. Acrobat needs some of its parameters to be enclosed with double quotes. This is needed to automatically open and print a pdf. When I try to do that directly from a bash shell, I can't get it to pass arguments enclosed with the double quotes. It will do

ssh / sshd processes not exiting cleanly

2015-02-13 Thread Cary Lewis
I am running cygwin 1.7.34 on a server 2008R2 machine. I have installed sshd and it seems to run fine (I can log in), but when I try to exit, the ssh session doesn't terminate. I can force it to exit by hitting Enter~., but that leaves a defunct sshd.exe lying around. When I enter in exit from a

Re: cygrunsrv - services enters stopped state if underlying program exits or is killed - doesn't auto restart

2015-01-28 Thread Cary Lewis
if cygrunsrv is the one that causes the 'service' to exit that the --neverexists shouldn't be considered. Does that make sense? On Wed, Jan 28, 2015 at 5:18 AM, Corinna Vinschen corinna-cyg...@cygwin.com wrote: On Jan 27 15:02, Cary Lewis wrote: On Tue, Jan 27, 2015 at 4:09 AM, Corinna Vinschen

accessing iphone photos from cygwin

2015-01-27 Thread Cary Lewis
When an iPhone is plugged into a windows machine, windows uses the WPD (windows portable device) infrastructure to expose the photos on the iPhone as a connected portable device. There is no UNC path to the device. Windows Explorer has access, and other windows programs like the file importer,

Re: cygrunsrv - services enters stopped state if underlying program exits or is killed - doesn't auto restart

2015-01-27 Thread Cary Lewis
wrote: On Jan 26 11:14, Cary Lewis wrote: I am using cygrunsrv to install a windows service that creates an ssh tunnel. I have configured the service to auto-restart on failures using the windows 7 services.msc tool. If the ssh program exists, or is killed, cygrunsrv gracefully exits

cygrunsrv - services enters stopped state if underlying program exits or is killed - doesn't auto restart

2015-01-26 Thread Cary Lewis
I am using cygrunsrv to install a windows service that creates an ssh tunnel. I have configured the service to auto-restart on failures using the windows 7 services.msc tool. If the ssh program exists, or is killed, cygrunsrv gracefully exits, and the windows auto-restart logic is not invoked.

Problem with cron jobs

2014-08-21 Thread Cary Lewis
I have created a small shell script that acts like a network connectivity watchdog, which checks for a successful ping to the internet, and if it doesn't work, restarts the machine. When I attempt to run it from a cron job, the script exits whenever any of the commands exits with a non zero

/dev/tcp support in bash shell

2013-04-12 Thread Cary Lewis
Are there any plans to add /dev/tcp/... support in Cygwin? -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple

ltfs / mtx built under cygwin

2013-04-03 Thread Cary Lewis
Has anyone managed to build ltfs or mtx on Cygwin? ltfs needs fuse, which I managed to build, but I don't know if it's really functional or not. Thanks. -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation:

ssh tunnels no longer responds to ctrl-c

2011-12-23 Thread Cary Lewis
The  behaviour of ssh seems to have changed - in the past I have been able to hit ctrl-c (intr) and kill a running ssh process that was operating as a tunnel or reverse tunnel, but that is no longer the case. Hitting ctrl-c or ctrl-\ has no effect. However using killall or kill does cuase the

ghostscript 8.53

2006-04-03 Thread Cary Lewis
The standard ghostscript available in the cygwin setup.exe is 8.50, but I need 8.53 to produce FAX tiff files correctly. I was able to build the AFPL ghostscript from source, but it can not locate any of fonts. Can someone explain to me how to build ghostscript from source and integrate it

Re: ghostscript 8.53

2006-04-03 Thread Cary Lewis
The fonts are there but for some reason the AFPL 8.53 version can't use them, perhaps it was a configure issue before I compiled? Perhaps the souce tries to use a font server and this confuses the s/w, since Cygwin doesn't have a font server? -- Unsubscribe info:

cygwin perl - accessing data from a Microsoft SQL Server via ODBC

2005-01-13 Thread Cary Lewis
Is there a way to use Cygwin's Perl to access data from a remote SQL server via ODBC? I know there is Win32::ODBC which works with ActiveState, but I want to be able to it natively from within Cygwin (so that I can eventually do it from Linux) Any help or pointers would be appreciated. --

RE: SSH on Cygwin Immediate Drops Connections

2004-09-10 Thread Cary Lewis
On server 2003 I had to add the sshd user into the Administrators group to allow auto logon, the -r option did not work. Big side effect, with auto logon, the user logging in does not have their domain groups because sshd can not impersonate them like it could on w2k, so you will have to fiddle

Re: OpenSSH on windows Problem

2004-09-02 Thread Cary Lewis
From what I understand, simply using cygwin binaries like ssh, perl, bash, etc. does not virally infect a propietary system with the GPL. So, if you plan on using sshd and sftp as part of your commerical app, you don not have to license cygwin. Any changes you make to sshd or sftp would have

RE: ssh under windows 2003 server

2004-09-01 Thread Cary Lewis
To: [EMAIL PROTECTED] Cc: Cary Lewis Subject: Re: ssh under windows 2003 server Cary Lewis wrote: I am ssh installed on a win 2003 server. If I login in with authorized_keys set to allow auto-logins, I get the fanfare, and welcome message, but then I am immediately logged out. If I remove

RE: sshd automatically close connection after successful login

2004-08-31 Thread Cary Lewis
the following: uid=11103(Cary Lewis) gid=10513(Domain Users) groups=10512(Domain Admins),10513( Domain Users),2(Field Service Config),11356(Fuel - Integration),11702(Global MCCDEVS1),11767(MCCNET NxTGeN),11522(NMD - Full Access),11523(NMD - Read Access ),12133(PCN Writers),12156(Source safe access

RE: ssh - no access to /dev/st0

2004-08-31 Thread Cary Lewis
with an interactive ssh session (providing auto logon is not set up). -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Corinna Vinschen Sent: Tuesday, August 31, 2004 4:53 AM To: [EMAIL PROTECTED] Subject: Re: ssh - no access to /dev/st0 On Aug 30 17:10, Cary

RE: ssh - no access to /dev/st0

2004-08-31 Thread Cary Lewis
. -Original Message- From: Larry Hall [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 31, 2004 12:36 PM To: Cary Lewis; [EMAIL PROTECTED] Subject: RE: ssh - no access to /dev/st0 At 12:24 PM 8/31/2004, you wrote: The issue is that during command line execution of a tar command, sshd has not set

ssh under windows 2003 server

2004-08-30 Thread Cary Lewis
I am ssh installed on a win 2003 server. If I login in with authorized_keys set to allow auto-logins, I get the fanfare, and welcome message, but then I am immediately logged out. If I remove authorized_keys and I am prompted for password, I can log in and use the shell normally. Can someone

ssh - no access to /dev/st0

2004-08-30 Thread Cary Lewis
I have a SCSI tape drive, and I can use tar to create archives on it: tar cvf /dev/st0 /bin tar tvf /dev/st0 but if I try to ssh into my cygwin box and try the same command, then I get the following error: tar: opening archive /dev/st0: The system cannot find the path specified. Any help

Printing on Server 2003

2004-08-16 Thread Cary Lewis
I am having difficulty printing to a locally shared printer on a windows 2003 server. I have a printer installed called hp5si which is shared. When I try the following: banner hi|unix2dos //machine/hp5si bash: //carylewis/hp5si: No such host or network path Is there a specific security policy

proftpd - help with user permissions

2004-08-03 Thread Cary Lewis
I am having trouble getting proftpd to work on a windows 2000 machine: The service is running and I can ftp in as the user who installed cygwin. This is not the administrator but a user who is a member of the administrators group. I created a new user, and made them a member of the power users

problem with permissions / proftpd

2004-08-03 Thread Cary Lewis
I am trying to set up a ftp server using proftpd I have installed it and it works fine for a user which is a member of the administrators group. When I create a new user which is only a member of users, it does not work. When I ssh into the machine using the users only user, I get the following

Problems with sshd - zombie processes left

2004-05-12 Thread Cary Lewis
I am having problems with Cygwin ssh, specifically sshd.   I am logging in automatically from a Sco Unix box, and running a bash script.   If the unix process that is running ssh is killed, ssh exits cleanly on the unix machine, but whatever is running on the windows machine keeps running and

RE: ln -s on win2K

2003-11-07 Thread Cary Lewis
unsubscribe -Original Message- From: Steve [mailto:[EMAIL PROTECTED] Sent: Friday, November 07, 2003 1:54 PM To: [EMAIL PROTECTED] Subject: ln -s on win2K Hi; I used the ln -s command to make a link to a directory, but when I use cd on it I get error messages. Do links work in

RE: ln -s on win2K

2003-11-07 Thread Cary Lewis
Unsubscribe -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/

awk / sed - trouble with CR character

2003-08-25 Thread Cary Lewis
I have a binary file, with 8 lines of ascii at the top, and then a binary line The binary line contains the 0x0d. E.g. $ od -tx1 a 000 31 0a 32 0a 33 0a 34 0a 35 0a 36 0a 37 0a 38 0a 020 31 32 33 0d 0a 39 39 39 0a 34 35 36 0a 035 $ cat a 1 2 3 4 5 6 7 8 123 999 456 If I try to to

License question about Cygwin

2003-07-16 Thread Cary Lewis
As the Cygwin.dll is licensed under GPL, any Program that links to it must be released under GPL as well. My question is, what if the Program also links to proprietary .dlls that are authored by someone else. That source can not be published (I don't even have access to it). Furthermore these

RE: cygwin license with windows apps?

2003-06-20 Thread Cary Lewis
Some more questions: Why is it that linking to the cygwin.dll makes a program covered by GPL? On Linux systems, does linking to the open source 'C' libraries, etc. cause a program to be covered by the GPL? If that were true, then wouldn't every program be GPL? Then you couldn't have any

Question about Cygwin License

2003-06-19 Thread Cary Lewis
I want to use cygwin with a proprietary system. As I do not want to publish my source code, I know I need a breakout license from RedHat. I am not changing cygwin, I am simply using the cygwin.dll to get a Unix based system to run under Windows. Has anyone purchased a breakout license? I was

php under cygwin's apache - support for odbc or ms sql

2003-06-03 Thread Cary Lewis
I would like to be able to run the Cygwin version of Apache with PHP and be able to connect to a SQL 2000 server. Is this possible. How can I compile a libphp4.dll with odbc and ms sql support. Do I need to compile the php source code under cygwin? Does it compile cleanly? Has anyone

cygwin apache with php - how to connect to database

2003-06-01 Thread Cary Lewis
I am attempting to use the Cygwin version of the Apache web server in a dynamic database system. Cygwin and apache with mod_php work fine. But the database functions odbc_connect produces a undefined function error. Where can I found the appropriate .dll? How do I install it.

Any progress on named pipes in Cygwin

2003-04-03 Thread Cary Lewis
I had seen a posting that it was hoped that named pipes would be soon available in Cygwin. Has there been any progress? -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting: http://cygwin.com/bugs.html Documentation:

Still looking for named pipe solution in cygwin

2003-03-25 Thread Cary Lewis
I have an existing unix application that makes extensive use of named pipes: mknod pipe p and shell scripts and 'C' programs that read and write pipes. Messages must be read in order that they were written to pipe. As well many processes must be able to write to a pipe and not have their

running setup.exe silently - command line switches

2003-02-17 Thread Cary Lewis
I would like to be able to remotely upgrade a cygwin environment. Does setup.exe support a non graphical environment. Can it be run from a bash shell, or does an X version exist? Thanks for any help. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting:

FW: file manager xfm, or similar for xfree86 under cygwin

2003-02-11 Thread Cary Lewis
Hello, I am trying to locate a graphical file manager for Xfree86 running under cygwin I have tried to compile xfm 1.4.3 and got it working under xfree86 under cygwin, but it does not allow access to non cygwin directories. It complains saying Directory is Unreadable. /cygdrive doesn't

Force bash to start as administrator

2002-12-11 Thread Cary Lewis
I want to be able to start a bash shell as Administrator id=500 regardless of who I am logged into the windows box as. Alternatively can I force cygwin to ignore the current user credentials and use the Administrator. I would like to be able to do this so that I can standardize my deployment

RE: Looking for named pipe solution in cygwin

2002-12-11 Thread Cary Lewis
: Re: Looking for named pipe solution in cygwin Max, Cary, One nit. See below. At 10:21 2002-12-11, Max Bowsher wrote: Cary Lewis [EMAIL PROTECTED] wrote: I have an existing unix application that makes extensive use of named pipes: mknod pipe p and shell scripts and 'C' programs

RE: ssh tunnel x session - solution

2002-12-10 Thread Cary Lewis
I was having a problem using Xfree and ssh under cygwin. I want to be able to run a xterm session on a remote cygwin machine on the X server running on my local cygwin machine. I can ssh into the remote machine with no problem, and I get an .Xauthority file, the problem is that the entry has the

FW: Help, cygwin logs me on using my winnt domain user rather than Administrator

2002-12-06 Thread Cary Lewis
-Original Message- From: Cary Lewis Sent: Friday, December 06, 2002 3:58 PM To: '[EMAIL PROTECTED]' Subject: Help, cygwin logs me on using my winnt domain user rather than Administrator Prior to today, when I started by bash shell, my id would be Administrator, id=500. Today