Re: missing setup command line arguments in the FAQ.

2010-01-17 Thread G.W. Haywood
Hi there, On Sun, 17 Jan 2010 Christopher Faylor wrote: > On Sat, Jan 16, 2010 at 09:17:24AM +, G.W. Haywood wrote: > > > Which is correct? > > If only there was some way to tell... I think you should seek professional help. -- 73, Ged. -- Problem reports: http://cygwin.com/problems

not able to run emacs 23 from cygwin 1.7.1

2010-01-17 Thread Mahesh P
hi! I have installed the Emacs package again but it does not run. I opened the emacs file in windows and tried to add autosave-default-1 in the emacs file to stop autosave and after that when i tried to run emacs from the console it gives me the error bash: usr/bin/emacs: Permission denied.The ls-

Re: missing setup command line arguments in the FAQ.

2010-01-17 Thread Dave Korn
G.W. Haywood wrote: > Hi there, > > On Sun, 17 Jan 2010 Christopher Faylor wrote: > >> On Sat, Jan 16, 2010 at 09:17:24AM +, G.W. Haywood wrote: >> >>> Which is correct? >> If only there was some way to tell... > > I think you should seek professional help. Nurse! The screens! > -- > >

Re: missing setup command line arguments in the FAQ.

2010-01-17 Thread Dave Korn
Dave Korn wrote: > G.W. Haywood wrote: >> Hi there, >> >> On Sun, 17 Jan 2010 Christopher Faylor wrote: >> >>> On Sat, Jan 16, 2010 at 09:17:24AM +, G.W. Haywood wrote: >>> Which is correct? >>> If only there was some way to tell... >> I think you should seek professional help. > > Nurs

Re: can't umount my /pc filesystem

2010-01-17 Thread Greg Chicares
On 2010-01-17 06:49Z, Paul McFerrin wrote: > > I have an unwanted filesystem (NFS) mounted as /pc that I need to get it > unmounted ASAP. Here is the mount output: [...] > \\linda\c /pc some_fs binary 0 0 If that's in /etc/fstab, then it's 'nouser' by default, and not overridable: http://www.

Where is std::copy_n?

2010-01-17 Thread Roman Werpachowski
Hi, The cygwin C++ library does not seem to implement std::copy_n (http://www.sgi.com/tech/stl/copy_n.html) Why? Regards, Roman Werpachowski -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html

Re: Problem with gpc on 1.7.1

2010-01-17 Thread Yuri Gribov
Dave, Thank you for your help. -- С уважением, Юрий

Re: Where is std::copy_n?

2010-01-17 Thread Dave Korn
Roman Werpachowski wrote: > Hi, > > The cygwin C++ library does not seem to implement std::copy_n > (http://www.sgi.com/tech/stl/copy_n.html) Why? It was only added after the 4.3 release branch was made. It'll be in an upcoming gcc-4.5 release. cheers, DaveK -- Problem reports:

Re: Where is std::copy_n?

2010-01-17 Thread Roman Werpachowski
Thanks. Roman On Sun, Jan 17, 2010 at 2:43 PM, Dave Korn wrote: > Roman Werpachowski wrote: >> Hi, >> >> The cygwin C++ library does not seem to implement std::copy_n >> (http://www.sgi.com/tech/stl/copy_n.html) Why? > >  It was only added after the 4.3 release branch was made.  It'll be in an >

Re: not able to run emacs 23 from cygwin 1.7.1

2010-01-17 Thread Ken Brown
On 1/17/2010 3:39 AM, Mahesh P wrote: hi! I have installed the Emacs package again but it does not run. I opened the emacs file in windows and tried to add autosave-default-1 in the emacs file to stop autosave and after that when i tried to run emacs from the console it gives me the error bash:

Can't ujnmount my /pc filesystem

2010-01-17 Thread Paul McFerrin
Folks: I have an unwanted filesystem (NFS) mounted as /pc that I need to get it unmounted ASAP. Here is the mount output: a: /a some_fs binary 0 0 /bin /bin some_fs binary 0 0 C: /c some_fs binary 0 0 D: /d some_fs binary 0 0 E: /e some_fs binary 0 0 /etc /etc some_fs binary 0 0 F: /f some_fs

Re: missing setup command line arguments in the FAQ.

2010-01-17 Thread Christopher Faylor
On Sun, Jan 17, 2010 at 08:15:36AM +, G.W. Haywood wrote: >On Sun, 17 Jan 2010 Christopher Faylor wrote: >>On Sat, Jan 16, 2010 at 09:17:24AM +, G.W. Haywood wrote: >>>Which is correct? >> >>If only there was some way to tell... > >I think you should seek professional help. Wow! Zing! c

Re: missing setup command line arguments in the FAQ.

2010-01-17 Thread Christopher Faylor
On Sun, Jan 17, 2010 at 10:32:43AM +, Dave Korn wrote: >Dave Korn wrote: >>G.W. Haywood wrote: >>>On Sun, 17 Jan 2010 Christopher Faylor wrote: On Sat, Jan 16, 2010 at 09:17:24AM +, G.W. Haywood wrote: >Which is correct? If only there was some way to tell... >>>I think you sho

Re: Where is std::copy_n?

2010-01-17 Thread Václav Haisman
Roman Werpachowski wrote, On 17.1.2010 15:22: > Hi, > > The cygwin C++ library does not seem to implement std::copy_n > (http://www.sgi.com/tech/stl/copy_n.html) Why? "This function is an SGI extension; it is not part of the C++ standard." You should not expect it to exist if you want portable co

Re: not able to run emacs 23 from cygwin 1.7.1

2010-01-17 Thread Ken Brown
On 1/17/2010 9:45 AM, Ken Brown wrote: On 1/17/2010 3:39 AM, Mahesh P wrote: hi! I have installed the Emacs package again but it does not run. I opened the emacs file in windows and tried to add autosave-default-1 in the emacs file to stop autosave and after that when i tried to run emacs from

Re: Where is std::copy_n?

2010-01-17 Thread Roman Werpachowski
Oh, I didn't notice this bit. That changes things. Roman 2010/1/17 Václav Haisman : > Roman Werpachowski wrote, On 17.1.2010 15:22: >> Hi, >> >> The cygwin C++ library does not seem to implement std::copy_n >> (http://www.sgi.com/tech/stl/copy_n.html) Why? > "This function is an SGI extension; it

Re: Where is std::copy_n?

2010-01-17 Thread Dave Korn
Václav Haisman wrote: > Roman Werpachowski wrote, On 17.1.2010 15:22: >> Hi, >> >> The cygwin C++ library does not seem to implement std::copy_n >> (http://www.sgi.com/tech/stl/copy_n.html) Why? > "This function is an SGI extension; it is not part of the C++ standard." > > You should not expect it

slowdown in "mv" operation

2010-01-17 Thread Paul McFerrin
I have over 12,000 music files I frequently move around using the "mv" command with both source & destination on the same FS. Under Cygwin 1.5, this script would act amazedly fast that it would be impossible to read your screen.. I do have trace turned on. Now under Cygwin 1.7, my trace outp

Re: Can't ujnmount my /pc filesystem

2010-01-17 Thread Mark Geisert
Paul McFerrin writes: > Folks: > > I have an unwanted filesystem (NFS) mounted as /pc that I need to get it > unmounted ASAP. Here is the mount output: 1) Please don't repost the exact same question. It just annoys folks. 2) What happens when you try what Greg suggested after your prior post

newbie bash variable problem

2010-01-17 Thread brian
Hi, This obviously isn't specific to cygwin, I don't think. I am trying to run some bash scripts in cygwin $JAVA_HOME is the env variable which I can echo from the script as /cygdrive/c/jdk1.6.0_16 but the script sets JAVA=$JAVA_HOME/bin/java/ I want to see if this is set right so I set

RE: Re-installed cygwin 1.7 but still getting error running Perl

2010-01-17 Thread Wardman_Michael
Thanks to all that replied I'm back from holidays :-( and the latest cygwin updates seem to have magically fixed everything :) thanks -Original Message- From: cygwin-ow...@cygwin.com [mailto:cygwin-ow...@cygwin.com] On Behalf Of wardman_mich...@emc.com Sent: Thursday, 24 December 2009 12

Re: newbie bash variable problem

2010-01-17 Thread Greg Chicares
On 2010-01-17 23:44Z, brian wrote: > > $JAVA_HOME is the env variable which I can echo from the script as > /cygdrive/c/jdk1.6.0_16 > > but the script sets > > JAVA=$JAVA_HOME/bin/java/ My guess is that the script contains carriage returns. To look for them, use 'od'. To remove them, use 'd2

Lesson on internals; what associates /

2010-01-17 Thread Paul McFerrin
It's time for a lesson in cygwin internals. What associates the root of a filesystem?? I'm getting an invalid value for "/". i.e. When I do a "cd /", it will fail. I will get the error message: "cd: / - No such file or directory". Obviously there is something in the environment it doesn't

I'm confussed: / vs. fstab

2010-01-17 Thread Paul McFerrin
My PC has two instances of cygwin. My production is 1,7,1-1 while I'm trying to get my 1.5 working again. For my 1.5, I have populated the /c/_cygwinCD/etc/fstab with the following contents: /c/_cygwinCD/etc.$ cat fstab C:/_cygwinCD/bin on /usr/bin type ntfs (binary,auto) C:/_cygwinCD/lib on

RE: Lesson on internals; what associates / with root

2010-01-17 Thread Paul McFerrin
Never mind. It's one thing to "read" something that is written but something else when I make a "connection". I have "connected". The answer is: fstab. Paul McFerrin wrote: It's time for a lesson in cygwin internals. What associates the root of a filesystem?? I'm getting an invalid value

Re: Redirecting $TEMP or a certain directory to /tmp

2010-01-17 Thread Thomas Wiedmann
In that case you probably are not running Cygwin 1.7.1. That's true, I still run version 1.5.25-11. Is there a way to use fstab in version 1.5.25-11? What's to do? Thomas Wiedmann -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documenta

Re: Redirecting $TEMP or a certain directory to /tmp

2010-01-17 Thread Thorsten Kampe
* Thomas Wiedmann (Mon, 18 Jan 2010 08:10:56 +0100) > > > In that case you probably are not running Cygwin 1.7.1. > > That's true, I still run version 1.5.25-11. > Is there a way to use fstab in version 1.5.25-11? > What's to do? In case you missed it the first time: MAN MOUNT -- Problem repor

Re: Man pages garbled in 1.7.1

2010-01-17 Thread Jeenu V
On Fri, Jan 15, 2010 at 7:39 PM, Nellis, Kenneth wrote: > [...] > You might review the recent related message thread: > http://cygwin.com/ml/cygwin/2010-01/msg00499.html I'm now using UTF-8 encoding on PuTTYCyg and the man pages look fine. Could somebody tell me how to search for '-' on the man p

Re: Problems running courierauth (UNIX-sockets) - more information

2010-01-17 Thread Oliver Meier
Hi Corinna I compiled the current snapshot and it works... Thanks for your help Herzliche Grüsse aus der Schweiz Oliver > Hi Corinna > > Thanks for your fast solution. I'll try to compile and test a > cvs-snapshot... > > Greetz > Oliver > -- Problem reports: http://cygwin.com/problems.