On Tue, 23 Apr 2002 08:54:05 +0200 Stephan Borchert <[EMAIL PROTECTED]> wrote:
> Michael A Chase <[EMAIL PROTECTED]> schrieb am 23.04.02:
> > The setup.exe session log is written to /var/log/setup.log and
> > /var/log/setup.log.full.
>
> Yes, for the installation but not for downloaded only. The
I used to have TERM=linux both on my local Win2K Cygwin and remote Linux
Server(accessible via Cygwin ssh) and it works perfectly but after the last
update VIM stopped correct work with linux terminal (again both Win2K and
Linux).
Is it new feature or something else?
Thanks,
Vadim
--
Unsubscrib
Somewhere deep in my directory tree I have a directory
ftp%3a%2f%2fftp-stud.fht-esslingen.de%2fpub%2fMirrors%2fsources.redhat.com%2
fcygwin which contains a setup.exe, setup.ini and directories contrib,
latest, and release. Due to low bandwidth I had to download the files within
these directories
I don't know if this is a cygwin issue or if I am doing something
fundamentally wrong...
int
main (int argc, char **argv)
{
try
{
throw "catch this";
}
catch (char *message)
{
return 1;
}
return 0;
}
coredumps on me. Throwing int's works fine. Throwing (string)
Robert wrote:
>
> I don't know if this is a cygwin issue or if I am doing something
> fundamentally wrong...
>
You threw const char*
int
main (int argc, char **argv)
{
try
{
throw "catch this";
}
catch (const char *message)
// ^
{
return 1;
}
return
> -Original Message-
> From: Danny Smith [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, April 23, 2002 6:11 PM
>
> Robert wrote:
> >
> > I don't know if this is a cygwin issue or if I am doing something
> > fundamentally wrong...
> >
>
> You threw const char*
Sigh. Blush. I should have
It aborts with g++ 2.95.4 on Debian PowerPC Linux too.
But if I compile it with CodeWarrior 6 on Windows it runs normally, doesn't
crash, and gives the exit code of 1.
I think CodeWarrior is correct, and that this is a bug in g++, but not in cygwin.
Mike
Thus it was written:
I don't know if t
Hello.
cron is running as a service. I have following entry in /var/cron/tabs/root
10 10 * * 1-5 /usr/bin/touch /tmp/cron_is_running
But after the time expires there is no file /tmp/cron_is_running.
The event log show me (in German)
Die Beschreibung der Ereignis-ID ( 0 ) in Quelle ( /usr/sbin/
> You threw const char*
That shouldn't matter. At the worst it should mean that the exception is not
caught by any of the catch clauses given, so the "return 0" would be taken.
The only thing that should happen to an exception object after you're done with
it is that objects thrown by value
> -Original Message-
> From: Michael D. Crawford [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, April 23, 2002 6:24 PM
>
> Usually throwing a pointer is not what you really want to do,
> but it shouldn't
> cause a crash.
Is it worth putting this up as a bug on the gcc bugs database?
R
On Tue, Apr 23, 2002 at 09:14:14AM +0200, Daan Hoogland wrote:
> Now that you guys don't remember the subject anymore anyway;...
>
> > "Larry" == Larry Hall (RFK Partners, Inc) <[EMAIL PROTECTED]> writes:
>
>
> Larry> At 01:42 PM 4/20/2002, Joshua Daniel Franklin wrote:
>
> ...
> >
On Mon, Apr 22, 2002 at 10:44:27PM -0700, Richard Troy wrote:
> Commentary? Anybody know where there's a reasonably concise write up of
> this strategy?
There are several "how-*.txt" file in the cygwin source dir. Perhaps
these are a bit of a help.
Corinna
--
Corinna Vinschen
On Mon, Apr 22, 2002 at 09:41:18PM +0100, Chris January wrote:
> > /tmp/kde-chris contains one file:
> > ksycoca
> > which is locked.
> > I type this:
> > rm -rf /tmp/kde-*
> > the command doesn't return, and after a while I start seeing this on the
> > screen.
> > 681 [main] rm 2520 delqueue_
> "Corinna" == Corinna Vinschen <[EMAIL PROTECTED]> writes:
Corinna> On Tue, Apr 23, 2002 at 09:14:14AM +0200, Daan Hoogland wrote:
>> Now that you guys don't remember the subject anymore anyway;...
>>
>> > "Larry" == Larry Hall (RFK Partners, Inc) <[EMAIL PROTECTED]> wr
Sorry for that last one,
I ment to say thanx for the tip (of the day).
> "Corinna" == Corinna Vinschen <[EMAIL PROTECTED]> writes:
Corinna> On Tue, Apr 23, 2002 at 09:14:14AM +0200, Daan Hoogland wrote:
>> Now that you guys don't remember the subject anymore anyway;...
>>
Hi,
I'm using Cyywin on Win 98 SE and I have a problem with the find command.
The command I am trying to run is :
find . -xdev -exec 'grep -l -F "string" {}';
This command works fine on another flavour of unix but under Cygwin it gives
me the error :
find: missing argument to `-exec'
I'v
Hi all,
Append to previous message, i found somethings:
1/ When i run bash script in cygwin, e.g.
#!/bin/bash
echo "123" >> output_file
echo "456" >> output_file
echo "789" >> output_file
the output file is in unix mode, i.e. without ^M at
the end of each line.
2/ When i run
In the spirit of asking smart questions, comes
http://www.chiark.greenend.org.uk/~sgtatham/bugs.html - referenced
recently on the automake list.
Well worth a read.
Rob
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http://cygwin.com/bugs.html
Documenta
Please note that our email address has changed from fox-europe.com to
fox-it.co.uk.
'ps -l' (ell) shows some processes with an 'I' in the very first column of
the line. I cannot find any documentation as to its meaning. Can anyone
explain it please?
Stig Townsend
Fox IT
This email is confide
Hi Mike,
>find . -xdev -exec 'grep -l -F "string" {}';
>I'd be grateful if anyone can see what I'm doing wrong,
excerpt from the man page:
-exec command ;
Execute command; true if 0 status is returned. All following
arguments
to find are taken to be argume
> -Original Message-
> From: Richard Troy [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, April 23, 2002 6:25 AM
> In doing this compliation and write up a lot of questions yet
> remain for
> me. There are just a whole lot of loose ends. It's my casual
> observation
> that the emails in
Neil,
On Mon, Apr 22, 2002 at 10:56:34PM -0230, Neil Zanella wrote:
> I have installed the postgresql package that came with cygwin.
> When I start the serer it complains about unable to find the
> PGDATA directory. Does anyone know what the exact procedure
> for getting postgresql server to run
> That shouldn't matter. At the worst it should mean that the exception is not
> caught by any of the catch clauses given, so the "return 0" would be taken.
It does matter -- in this case the exception was not handled, and
therefore terminate() gets called, which probably called abort(). That
i
this is not essentially a bug as such, but an interface issue that i feel is
pretty important. when selecting which packages in the setup program you
wish to download/install, there is no reference made to how large the
packages are in terms of file size. this makes it a big inconvenience to
t
Michael A Chase wrote:
> On Tue, 23 Apr 2002 07:05:06 +0100 Jim George <[EMAIL PROTECTED]> wrote:
>
>
>>can someone tell me which package provides the substr command line
>>routine?
>
> In this case, you probably want sed, gawk, or Perl, there is no UNIX
> command 'substr'.
from the comman
Could you add a feature to report missing source tarball? Nothing more
complicated than copy/pasting the current missing install tarball code and
changeing aInstall to aSource, etc.
If you would prefer a patch, say so, and I will send one.
Max.
smime.p7s
Description: application/pkcs7-signat
> -Original Message-
> From: Jeremy Beard [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, April 23, 2002 9:50 PM
> There is no reference made to how large the
> packages are in terms of file size.
This is because (most) folk don't select packages based on size, but
rather on content - w
At 06:33 AM 4/23/2002, lau bella wrote:
>Hi all,
>
>Append to previous message, i found somethings:
>1/ When i run bash script in cygwin, e.g.
>#!/bin/bash
>echo "123" >> output_file
>echo "456" >> output_file
>echo "789" >> output_file
>
>the output file is in unix mode, i
At 10:39 PM 4/22/2002, Wu Yongwei wrote:
>I only hope that no big changes will make 2.125.2.10 obsolete.
>I really like that version.
Eventually, of course, this will be the case.
I expect this was obvious but I just wanted to state this for the sake of
completeness in the archive.
Larry Hall
At 02:54 AM 4/23/2002, Stephan Borchert wrote:
>Michael A Chase <[EMAIL PROTECTED]> schrieb am 23.04.02:
> > On Tue, 23 Apr 2002 08:24:34 +0200 [EMAIL PROTECTED] wrote:
> >
> > > I download with setup.exe (version 2.194.2.24) everyday a few files, to
> > > complett my setup directory.
> > >
> >
At 03:07 AM 4/23/2002, Vadzim Razmyslovich wrote:
>I used to have TERM=linux both on my local Win2K Cygwin and remote Linux
>Server(accessible via Cygwin ssh) and it works perfectly but after the last
>update VIM stopped correct work with linux terminal (again both Win2K and
>Linux).
>Is it new fe
okay - i dont claim to know anything much about gpl ...
but - http://www.tux.org/pub/security/secnet/tools/nat10/
(which is the only place I found it in a quick google search)
distributes a gpl program linked against cygwin.dll (note not cygwin1.dll)
without cygwin source.
Going on past emails,
> > The normal install with setup.exe didn't provide cygserver.
>
> Correct. This was stated in the development list: the source for
> cygserver was only merged in post 1.3.10 being released, so no release
> of cygwin has occurred with the cygserver built.
I missed that in the archive, though
this belongs here.
> -Original Message-
> From: Jeremy Beard [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, April 23, 2002 11:54 PM
> To: Robert Collins
> Subject: RE: setup program problem
>
>
> it is simply a common feature to inform a user in a download
> program how
> long there is
Hi Mike,
>Also I didn't understand that
>shell stomps
>the ; and also, also I didn't know that the space was required
Well, I know, because I'd once stumbled, too .
>(the second
>line of the man page for find -exec doesn't have a space btw).
Uups. IIRC I *had* problems without the space.
>T
On Tue, Apr 23, 2002 at 08:51:24AM -0700, Richard Troy wrote:
>Here's what I envision at this point: _execve() code notices the
>suid/guid bits are set, checks that the file owner is not the caller
>and that the callers group list does not include the files group id,
>and dispatches a message to c
Is there a way to disable the mounting of the drives either via a
cygwin command or modifying the registry?
cke
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http://cygwin.com/bugs.html
Documentation: http://cygwin.com/docs.html
FAQ:
At 12:52 PM 4/23/2002, Chris Ellsworth wrote:
>Is there a way to disable the mounting of the drives either via a
>cygwin command or modifying the registry?
The command would be 'umount'. Why do you want to do this?
Larry Hall [EMAIL PROTECTED]
RFK Partners, Inc.
The link to Gimp
(http://user.sgic.fi/~tml/gimp/win32/)
on page http://www.cygwin.com/ported.html is broken.
Andriy
__
Do You Yahoo!?
Yahoo! Games - play chess, backgammon, pool and more
http://games.yahoo.com/
--
Unsubscribe info: http://cy
Gareth Pearce wrote:
> okay - i dont claim to know anything much about gpl ...
> but - http://www.tux.org/pub/security/secnet/tools/nat10/
> (which is the only place I found it in a quick google search)
> distributes a gpl program linked against cygwin.dll (note not cygwin1.dll)
> without cygw
Dear Elegant,
Please be specific about what program implements the "expr substr" command.
The phrase "the command line" is not singly defined on any Unix (or
Unix-like) system extant today.
In this case, it's TCSH, which is not the default Cygwin shell (BASH is).
Randall Schulz
Mountain View,
I am doing install of this for sshd on windows for clients for the
purpose of forwarding ports for access such as VNC, pcanywhere FTP and
other items and i dont want to give access to the other areas of the
drives. I tryed the umount command and have not sucessfully removed
it. maybe i am doing so
Adrian Prantl wrote:
>>okay - i dont claim to know anything much about gpl ...
>>but - http://www.tux.org/pub/security/secnet/tools/nat10/
>>(which is the only place I found it in a quick google search)
>>distributes a gpl program linked against cygwin.dll (note not cygwin1.dll)
>>without cygwin
Just try
$ expr --version
expr (GNU sh-utils) 2.0.11
Written by Mike Parker.
Copyright (C) 2000 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
Greetings
Uwe
--
On Tue, Apr 23, 2002 at 07:34:07PM +0200, Adrian Prantl wrote:
>I really don't think that it would be appropriate to start a fox hunt
>for everyone that could be violating the gpl in this or the other minor
>way. As long as the reason is not a commercial exploit, I believe that
>too much cautions
I understand that through cygwin it goes around windows items but i
want to remove the cygdrive mounts
because the customers dont want to give access to ie /cygdrive/c or
/cygdrive/ to the people that login via ssh.
- Original Message -
From: "Roberto J Dohnert" <[EMAIL PROTECTED]>
To: "C
On Tue, 23 Apr 2002 13:56:54 +0100 Max Bowsher <[EMAIL PROTECTED]> wrote:
> Could you add a feature to report missing source tarball? Nothing more
> complicated than copy/pasting the current missing install tarball code
> and
> changeing aInstall to aSource, etc.
>
> If you would prefer a patch,
OK, I see what you're doing. I thought this might be what you were driving
at. You're trying to use the wrong tools to limit access. Even if you
could unmount the drives in question, there's nothing to stop the user
from remounting them as they like. You need to use file access permissions,
On Tue, 23 Apr 2002 10:45:52 -0700 Chris Ellsworth <[EMAIL PROTECTED]> wrote:
> I am doing install of this for sshd on windows for clients for the
> purpose of forwarding ports for access such as VNC, pcanywhere FTP and
> other items and i dont want to give access to the other areas of the
> driv
oh well
i think what im going to do is put all the users that connect into a
group then give that group deny rights to C:\ and other drives
that would probly do it for me.
- Original Message -
From: "Michael A Chase" <[EMAIL PROTECTED]>
To: "Chris Ellsworth" <[EMAIL PROTECTED]>;
<[EMAIL P
At 03:27 PM 4/23/2002, Michael A Chase wrote:
>On Tue, 23 Apr 2002 10:45:52 -0700 Chris Ellsworth <[EMAIL PROTECTED]> wrote:
>
> > I am doing install of this for sshd on windows for clients for the
> > purpose of forwarding ports for access such as VNC, pcanywhere FTP and
> > other items and i don
Yep.
Larry Hall [EMAIL PROTECTED]
RFK Partners, Inc. http://www.rfk.com
838 Washington Street (508) 893-9779 - RFK Office
Holliston, MA 01746 (508) 893-9889 - FAX
At 03:30 PM 4/23/2002, Chris Ellsworth wrot
On Tue, Apr 23, 2002 at 12:27:45PM -0700, Michael A Chase wrote:
>On Tue, 23 Apr 2002 10:45:52 -0700 Chris Ellsworth <[EMAIL PROTECTED]> wrote:
>
>> I am doing install of this for sshd on windows for clients for the
>> purpose of forwarding ports for access such as VNC, pcanywhere FTP and
>> other
Thanks very much for this.
Jim
- Original Message -
From: "Gilgamesh Nootebos" <[EMAIL PROTECTED]>
To: "Cygwin" <[EMAIL PROTECTED]>
Cc: "Jim George" <[EMAIL PROTECTED]>
Sent: Tuesday, April 23, 2002 1:30 PM
Subject: Re: substr
> Michael A Chase wrote:
> > On Tue, 23 Apr 2002 07:05:06 +
but if any unix user that know what im doing can doa mount and .. well
now the obscure is not so obscure any more
but do think the best option si to do ethe deny rights to the group
that comes in from ssh
- Original Message -
From: "Christopher Faylor" <[EMAIL PROTECTED]>
To: <[EMAIL PROT
I've installed Cygwin on a freshly built Win2K Pro system. I installed
everything including Xfree86, I've also installed Xemacs. I have a few
basic questions to get me started. My operating environment is as
follows, my workstation is a Redhat 7.2 box, the Win2K box is in another
room. I want to b
On Mon, Apr 22, 2002 at 10:44:20AM -0400, Christopher Faylor wrote:
> On Mon, Apr 22, 2002 at 03:55:14AM -0400, [EMAIL PROTECTED] wrote:
> >Anyway, you can find this trove of information at
> >www.rich-paul.net. Have fun with it.
>
> One part of your installation instructions is ill-advised. Us
Buenas muchachos..
Como siempre buscando un salvavidas..
Perdonen el offtopic pero la verdad no se donde mas preguntar.. y pues en esta lista
hay mucha sabiduria.
La historia es esta:
Tengo cierto modem RDSI, que al parecer no es compatible con Linux, s un modem externo
que va conectado por
Folks,
I'm hoping someone on this list can help. I'v configure squid but when I
run it it fails at the start with the following error message.
I can see the dns_nameservers that it is trying to access so can someone
give me a clue what may be happening here?
TIA,
Jim
2002/04/23 22:06:43| Sta
Dear Sir/Maddam,
I am compiling some codes under cygwin. the code have the
included. but I got the err message like,
saveloadwindow.o(.text+0x808):saveloadwindow.cc: undefined reference to
`opendir(char const *)'
saveloadwindow.o(.text+0x89b):saveloadwindow.cc: undefined reference to
`opendir(c
Am I correct in stating that the only processes that ps will list are
processes that are linked to cygwin.dll?
--
Ryan T. Sammartino
http://members.shaw.ca/ryants/
Hear about the young Chinese woman who just won the lottery?
One fortunate cookie...
--
Unsubscribe info: http://cygwin.com
Hi,
I noticed the mingw/sys/stat.h header file is protected by this macro.
But sys/stat.h is not. What this means is that if I used
gcc -ansi -pedantic tst.c
it would compile. But if I used
gcc -ansi -pedantic -mno-cygwin tst.c
it would not. Yet, if I used
gcc -mno-cygwin tst.c
it would
Randall R Schulz wrote:
> Dear Elegant,
thank you kindly for calling me that, but my real name is Gilgamesh,
Elegant is part of my employers name.
>
> Please be specific about what program implements the "expr substr"
> command. The phrase "the command line" is not singly defined on any Unix
/ [EMAIL PROTECTED] wrote:
| Dear Sir/Maddam,
|
| I am compiling some codes under cygwin. the code have the
| included. but I got the err message like,
|
| saveloadwindow.o(.text+0x808):saveloadwindow.cc: undefined reference to
| `opendir(char const *)'
What does the gcc command-line look like
> That works so long as the users come to that site to install and that site
> for support of the install. The current Cygwin policy is to offer email
> "support" for software it distributes. It's impractical to do otherwise.
> Also, the hope is that people who want to add features to anything
At 09:02 PM 4/23/2002, [EMAIL PROTECTED] wrote:
> > That works so long as the users come to that site to install and that site
> > for support of the install. The current Cygwin policy is to offer email
> > "support" for software it distributes. It's impractical to do otherwise.
> > Also, the h
I've got SSH partially working, I can log into the Win2K box but X
forwarding isn't working. I've enabled X forwarding in the
/etc/ssh_config and /etc/sshd_config files but when I ssh -X into the
box and then try to launch Xemacs nothting happens. Does anyonw have any
suggestions?
I'm also am hav
Gilgamesh,
Two mistakes on my part:
1) Your name--I'm sorry about that
2) Assuming that "expr" is a shell built-in. It's not.
Randall Schulz
Mountain View, CA USA
At 14:23 2002-04-23, you wrote:
>Randall R Schulz wrote:
>>Dear Elegant,
>
>thank you kindly for calling me that, but my real nam
Hello--
It seems that the packages zlib and zip corrupt the download/installation
process for me. As the process reaches either of these files/packages, the
program ends it's execution with the message "Installation incomplete, try
again?" Also, if I try to reconnect to the server I was downl
I am using mingw and I need versions of libidl-0.6.8 and glib-1.2.2 that
will work with mingw
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http://cygwin.com/bugs.html
Documentation: http://cygwin.com/docs.html
FAQ: http://
I wasnt sure wheter I should post about this on gcc bug report list or
here. Anyways, it seems that using -O2 flag with gcc causes huge slowdown
in memcmp(). However i dont see performance drop under linux, so I suppose
it is cygwin issue.
$ gcc memtest.c -O2 -o memtest ; ./memtest.exe
Amount of
Okay ... not to push this on too much further hopefully, but i felt that i
should respond to this one...
>
>Adrian Prantl wrote:
>
>>>okay - i dont claim to know anything much about gpl ...
>>>but - http://www.tux.org/pub/security/secnet/tools/nat10/
>>>(which is the only place I found it in a
On Wed, Apr 24, 2002 at 12:24:36PM +0800, Jonathan Wilson wrote:
>I am using mingw and I need versions of libidl-0.6.8 and glib-1.2.2 that
>will work with mingw
http://www.mingw.org/
cgf
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http://cygwin.com
On Tuesday 23 April 2002 22:04, Sami Korhonen wrote:
> I wasnt sure wheter I should post about this on gcc bug report list or
> here. Anyways, it seems that using -O2 flag with gcc causes huge slowdown
> in memcmp(). However i dont see performance drop under linux, so I suppose
> it is cygwin iss
On Tue, 23 Apr 2002, Tim Prince wrote:
> On Tuesday 23 April 2002 22:04, Sami Korhonen wrote:
> > I wasnt sure wheter I should post about this on gcc bug report list or
> > here. Anyways, it seems that using -O2 flag with gcc causes huge slowdown
> > in memcmp(). However i dont see performance d
/ "B. Joshua Rosen" <[EMAIL PROTECTED]> wrote:
| I've got SSH partially working, I can log into the Win2K box but X
| forwarding isn't working. I've enabled X forwarding in the
| /etc/ssh_config and /etc/sshd_config files but when I ssh -X into the
| box and then try to launch Xemacs nothting happ
76 matches
Mail list logo