FYI: Unknown package error during post-installation of 32-bit cywgin

2014-12-13 Thread Kenneth Wolcott
Hi;

FYI: Unknown package error during post-installation of 32-bit cywgin:

Package: Unknown package
mate-session-manager.sh exit code 127
openbox.sh exit code 127
WindowMaker.sh exit code 127
xfce4-session.sh exit code 127
xinit.sh exit code 127

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



Re: Problem launching XTerm on new Cygwin installation

2014-03-16 Thread Mark Hansen
On 3/7/2014 11:57 AM, Mark Hansen wrote:
 I just installed the 64-bit version of Cygwin on both a desktop PC and a 
 laptop PC.
 On the desktop, everything worked as expected without problems. On the 
 laptop, I
 have the following problems:
 
 When I launch a shell window, I get the following error:
 
 Your group is currently mkgroup. This indicates that neither your gid nor 
 your pgsid is in /etc/group.
 

I just installed the 64-bit version of Cygwin to another 64-bit Windows 7 PC, 
and
it did not have this problem. After the installation was finished, my user was
configured in the /etc/passwd file and did not have the mkgroup group. 
Instead,
it was set to 513 (None), which I guess is okay - at least I don't get the error
when launching a shell.

I don't think I did anything different during the installation other than just
getting a later version (I downloaded the software on 3/15/2014).

FYI

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



Re: Problem launching XTerm on new Cygwin installation

2014-03-07 Thread Thomas Dickey
On Fri, Mar 07, 2014 at 11:57:20AM -0800, Mark Hansen wrote:
 I just installed the 64-bit version of Cygwin on both a desktop PC and a 
 laptop PC.
 On the desktop, everything worked as expected without problems. On the 
 laptop, I
 have the following problems:
 
 When I launch a shell window, I get the following error:
 
 Your group is currently mkgroup. This indicates that neither your gid nor 
 your pgsid is in /etc/group.

(I don't know about this one)
 
 Also, when I try to launch an XTerm, I get the following message in the XTerm 
 window for
 just a few seconds and then the window goes away:
 
 /cygdrive/c/Apps/cygwin/bin/xterm: Could not exec XTERM_SHELL=XTERM_SHELL=: 
 No such file or directory

yes, that's a bug which surfaced in #301, thought it was gone in #302, and 
_should_ be gone in #303
(from yesterday)
 
 I'm starting the XWin Server using a shortcut with the following:
 
 C:\Apps\cygwin\bin\run.exe
 /usr/bin/bash.exe -l -c
 /usr/bin/startxwin.exe -- -emulate3buttons -multiwindow -clipboard 
 -swcursor
 
 I'm starting the XTerm using a shortcut with the following:
 
 C:\Apps\cygwin\bin\run.exe
 -p /usr/X11R6/bin xterm +tb -sb -sl 5000 -display 127.0.0.1:0.0 -ls 
 /bin/zsh -l

I'd try putting -e before the /bin/zsh, which moves it away from the bug 
noted.
(actually, the trailing -l doesn't look right either)

fwiw, when I compile #301, #302 and #303 for Cygwin, I don't see the bug.
However, I was able to analyze it on Linux with valgrind...
 
-- 
Thomas E. Dickey dic...@invisible-island.net
http://invisible-island.net
ftp://invisible-island.net


signature.asc
Description: Digital signature


Re: Problem launching XTerm on new Cygwin installation

2014-03-07 Thread Mark Hansen

On 3/7/2014 11:57 AM, Mark Hansen wrote:

I just installed the 64-bit version of Cygwin on both a desktop PC and a laptop 
PC.
On the desktop, everything worked as expected without problems. On the laptop, I
have the following problems:

When I launch a shell window, I get the following error:

Your group is currently mkgroup. This indicates that neither your gid nor 
your pgsid is in /etc/group.

Also, when I try to launch an XTerm, I get the following message in the XTerm 
window for
just a few seconds and then the window goes away:

/cygdrive/c/Apps/cygwin/bin/xterm: Could not exec XTERM_SHELL=XTERM_SHELL=: No 
such file or directory

I'm starting the XWin Server using a shortcut with the following:

C:\Apps\cygwin\bin\run.exe
  /usr/bin/bash.exe -l -c
  /usr/bin/startxwin.exe -- -emulate3buttons -multiwindow -clipboard 
-swcursor

I'm starting the XTerm using a shortcut with the following:

C:\Apps\cygwin\bin\run.exe
  -p /usr/X11R6/bin xterm +tb -sb -sl 5000 -display 127.0.0.1:0.0 -ls 
/bin/zsh -l

I've searched for this XTERM_SHELL error, but can't find anything. Can anybody 
help me?

Thanks,


Well, I did the following two things:

1. I changed the group id for my entry in the /etc/passwd file from 10530 (or 
whatever
that value was) to 545 (Users) and the first error went away.

2. I changed the shortcut I use to launch the XTerms and removed the shell name 
at
the end, so it now looks like this:

C:\Apps\cygwin\bin\run.exe
  -p /usr/X11R6/bin xterm +tb -sb -sl 5000 -display 127.0.0.1:0.0 -ls

and now the XTerm is started without any errors.

I guess it's working now, but I'm curious why these problems happened on the 
laptop
installation and not on the desktop installation.

Especially why the XTerm launch command had to change. The one I showed first 
I've
been using for years without problems. I don't remember how I came up with it 
now,
but I remember spending a lot of time putting that together. Also, that original
launch command is working on my other PC (the desktop) as well as my other 
machines
running the 32-bit version of Cygwin.

Thanks for any feedback/clarification.



--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



Re: Problem launching XTerm on new Cygwin installation

2014-03-07 Thread Mark Hansen

On 3/7/2014 1:49 PM, Thomas Dickey wrote:

On Fri, Mar 07, 2014 at 11:57:20AM -0800, Mark Hansen wrote:

I just installed the 64-bit version of Cygwin on both a desktop PC and a laptop 
PC.
On the desktop, everything worked as expected without problems. On the laptop, I
have the following problems:

When I launch a shell window, I get the following error:

Your group is currently mkgroup. This indicates that neither your gid nor 
your pgsid is in /etc/group.


(I don't know about this one)


Also, when I try to launch an XTerm, I get the following message in the XTerm 
window for
just a few seconds and then the window goes away:

/cygdrive/c/Apps/cygwin/bin/xterm: Could not exec XTERM_SHELL=XTERM_SHELL=: No 
such file or directory


yes, that's a bug which surfaced in #301, thought it was gone in #302, and 
_should_ be gone in #303
(from yesterday)


I'm starting the XWin Server using a shortcut with the following:

C:\Apps\cygwin\bin\run.exe
/usr/bin/bash.exe -l -c
/usr/bin/startxwin.exe -- -emulate3buttons -multiwindow -clipboard 
-swcursor

I'm starting the XTerm using a shortcut with the following:

C:\Apps\cygwin\bin\run.exe
-p /usr/X11R6/bin xterm +tb -sb -sl 5000 -display 127.0.0.1:0.0 -ls 
/bin/zsh -l


I'd try putting -e before the /bin/zsh, which moves it away from the bug 
noted.
(actually, the trailing -l doesn't look right either)


Thanks. I think the -l was to cause a login shell, but I see now that is what 
the -ls
argument does. Since I removed the shell argument (/bin/zsh -l) it is now 
working.
I'm getting the shell I want, I suspect, because that is the shell mentioned in 
the
/etc/passwd file for my user.

As a result, it is working so I'll leave it alone.



fwiw, when I compile #301, #302 and #303 for Cygwin, I don't see the bug.
However, I was able to analyze it on Linux with valgrind...


Well, I downloaded the Cygwin installation for my desktop last week, and 
downloaded
the Cygwin for my laptop yesterday. I guess the bug could have been introduced 
between
those times?

Thanks for your help!



--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



Re: Problem launching XTerm on new Cygwin installation

2014-03-07 Thread Thomas Dickey
On Fri, Mar 07, 2014 at 02:03:57PM -0800, Mark Hansen wrote:
 As a result, it is working so I'll leave it alone.

:-)

 fwiw, when I compile #301, #302 and #303 for Cygwin, I don't see the bug.
 However, I was able to analyze it on Linux with valgrind...
 
 Well, I downloaded the Cygwin installation for my desktop last week, and 
 downloaded
 the Cygwin for my laptop yesterday. I guess the bug could have been 
 introduced between
 those times?

yes - I finished #302 at the beginning of the week.

-- 
Thomas E. Dickey dic...@invisible-island.net
http://invisible-island.net
ftp://invisible-island.net


signature.asc
Description: Digital signature


Re: Problem launching XTerm on new Cygwin installation

2014-03-07 Thread Mark Hansen

On 3/7/2014 2:12 PM, Thomas Dickey wrote:

On Fri, Mar 07, 2014 at 02:03:57PM -0800, Mark Hansen wrote:

As a result, it is working so I'll leave it alone.


:-)


fwiw, when I compile #301, #302 and #303 for Cygwin, I don't see the bug.
However, I was able to analyze it on Linux with valgrind...

Well, I downloaded the Cygwin installation for my desktop last week, and 
downloaded
the Cygwin for my laptop yesterday. I guess the bug could have been introduced 
between
those times?


yes - I finished #302 at the beginning of the week.



Okay, this is very strange. As I said before, I have had no problems launching 
XTerms
on my desktop running 64-bit Cygwin. I've launched several XTerms today with no 
problems
... until a few minutes ago. I went to launch an XTerm on my desktop PC and it 
began
having the same problem I saw on the laptop (the error having to do with 
XTERM_SHELL).

I edited the launcher shortcut to remove the /bin/zsh -l from the end of the 
command
and it started working again.

I didn't do anything to update the Cygwin product on my desktop during this 
time.

I'm confused...

FYI.


--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



Re: Problem launching XTerm on new Cygwin installation

2014-03-07 Thread Thomas Dickey
On Fri, Mar 07, 2014 at 03:37:36PM -0800, Mark Hansen wrote:
 
 Okay, this is very strange. As I said before, I have had no problems 
 launching XTerms
 on my desktop running 64-bit Cygwin. I've launched several XTerms today with 
 no problems
 ... until a few minutes ago. I went to launch an XTerm on my desktop PC and 
 it began
 having the same problem I saw on the laptop (the error having to do with 
 XTERM_SHELL).
 
 I edited the launcher shortcut to remove the /bin/zsh -l from the end of 
 the command
 and it started working again.
 
 I didn't do anything to update the Cygwin product on my desktop during this 
 time.

xterm handles these three cases differently:

xterm
xterm /bin/zsh
xterm -e /bin/zsh

The bug that I mentioned is in the second case - not in the other two.

-- 
Thomas E. Dickey dic...@invisible-island.net
http://invisible-island.net
ftp://invisible-island.net


signature.asc
Description: Digital signature


Re: Problem launching XTerm on new Cygwin installation

2014-03-07 Thread Mark Hansen
On 3/7/2014 4:36 PM, Thomas Dickey wrote:
 On Fri, Mar 07, 2014 at 03:37:36PM -0800, Mark Hansen wrote:
 
 Okay, this is very strange. As I said before, I have had no problems 
 launching XTerms
 on my desktop running 64-bit Cygwin. I've launched several XTerms today with 
 no problems
 ... until a few minutes ago. I went to launch an XTerm on my desktop PC and 
 it began
 having the same problem I saw on the laptop (the error having to do with 
 XTERM_SHELL).
 
 I edited the launcher shortcut to remove the /bin/zsh -l from the end of 
 the command
 and it started working again.
 
 I didn't do anything to update the Cygwin product on my desktop during this 
 time.
 
 xterm handles these three cases differently:
 
   xterm
   xterm /bin/zsh
   xterm -e /bin/zsh
 
 The bug that I mentioned is in the second case - not in the other two.

Thanks. That was the bug I hit on my laptop. However, my desktop PC was working
fine with xterm ... /bin/zsh -l and then suddenly, it started getting the same
error. I made the same change to it as I did on my laptop PC and it worked, so
I'm not stopped - I'm just wondering how my desktop PC was working then suddenly
stopped working without altering any of the Cygwin software or settings.

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



Fwd: Failed in setup installation

2010-04-19 Thread Romina Saura
-- Forwarded message --
From: Romina Saura romisa...@gmail.com
Date: 2010/4/19
Subject: Fwd: Failed in setup installation
To: cygwin-xfree@cygwin.com




-- Forwarded message --
From: Romina Saura romisa...@gmail.com
Date: 2010/4/19
Subject: Fwd: Failed in setup installation
To: cygwin-xfree@cygwin.com




-- Forwarded message --
From: Romina Saura romisa...@gmail.com
Date: 2010/4/17
Subject: Failed in setup installation
To: cygwin-xfree@cygwin.com


Hello
I installed the setup package to make work pdfeditor
(http://sourceforge.net/projects/pdfedit/) in Windows (XP) according
to the instruccions in the sourceforge.net page and it cant work as
indicate, indeed the error showed it is related with the package
installed, no with pdfeditor files.
I cant include the pic in which appeared the error, or the mail is not
delivered (I tried, but failled to).

--
Saludos Cordiales,
Romina







--
Saludos Cordiales,
Romina







--
Saludos Cordiales,
Romina







--
Saludos Cordiales,
Romina

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



Re: Questions regarding windows 7 installation

2010-01-12 Thread Jerry Lowry
thanks Jason,  I have already done that, but even after commenting out 
the exec xterm and running the xterm process from the drop down menu I 
get two X windows.  One that starts and stays blank and then the actual 
Xterm window which has a white background.


I don't mind running the Xterm automatically, it's the spurious cygwin 
windows that start and stay up.  Just clutters up the desktop and you 
can't tell which is the usable Xterm.







DePriest, Jason R. wrote:

On Mon, Jan 11, 2010 at 6:32 PM, Jerry Lowry  wrote:
  

I have installed Cygwin 1.7 twice on my windows 7 laptop.  Each time it
installs fine but when I try to run the X server it leaves three different X
windows open as well as an Xterm itself.  Is this the default behavior on
1.7?  I really would like to get just the X icon in the task bar and nothing
else until I start an Xterm.  But even the Xterm opens two windows.

Anyone have any ideas as to the problem I am seeing?
--



Try modifying your /etc/X11/xinit/xinitrc file

I commented out the last line which had an 'exec xterm' in it and the
xterm no longer runs automatically.

-Jason

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/


  


--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



BitDefender prevents installation and execution of Cygwin and Cygwin-x

2010-01-12 Thread Donald R. Ziesig
After upgrading to WinXP last month (I don't like to rush in to things) 
cygwin, cygwin-x, and NX-Client ceased to function.  (To make a long 
story short, I had changed to BitDefender at the same time, but had 
forgotten that).  I blamed the problem on the OS upgrade, not realizing 
that the problem was with the AV software.


I tried everything I could think of, to the point where I deleted all 
files associated with both cygwin and NX, then searched the registry and 
deleted all references to Cygnus, cygwin and nx-client, all to no 
avail.  I then re-installed only cygwin (the default minimum) but got 
the same symptoms:  Error messages in the /etc/postinstall script 
processes which translated to 0xC00D (access violation) occurred on 
each an every entry in the script.  I finally found a web entry that 
suggested that this error could be caused by AV software (although it 
did not mention BitDefender by name).  In desperation, I erased all 
cygwin files yet again, put BD in GAME mode, and re-installed the 
default cygwin.  The install was successful so I added cygwin-x which 
also installed and ran successfully.  I  thought I'd push my luck so I 
also installed NX-client.  It worked as well!


Since I didn't like to leave my systems in Game (very permissive) mode, 
I switched BD back to its normal operating mode.  All the cygwin stuff 
stopped working.  Back to Game mode.  Everything works.  Sent nasty-gram 
to BitDefender (not really nasty, but let them know of the  problem and 
asked for solution).


I had the same problem on machines running Vista and Win7 (which also 
recovered in BD Game mode) so I think the problem is wide-spread.


I'm posting this in the hope that it helps others who may be beating 
their heads against the wall.


Don Ziesig

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



Questions regarding windows 7 installation

2010-01-11 Thread Jerry Lowry
I have installed Cygwin 1.7 twice on my windows 7 laptop.  Each time it 
installs fine but when I try to run the X server it leaves three 
different X windows open as well as an Xterm itself.  Is this the 
default behavior on 1.7?  I really would like to get just the X icon in 
the task bar and nothing else until I start an Xterm.  But even the 
Xterm opens two windows.


Anyone have any ideas as to the problem I am seeing?
--

---
Jerold Lowry
IT Manager / Software Engineer
Engineering Design Team (EDT), Inc. a HEICO company
1400 NW Compton Drive, Suite 315
Beaverton, Oregon 97006 (U.S.A.)
Phone: 503-690-1234 / 800-435-4320
Fax: 503-690-1243
Web: _www.edt.com http://www.edt.com/_





--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



Re: Questions regarding windows 7 installation

2010-01-11 Thread DePriest, Jason R.
On Mon, Jan 11, 2010 at 6:32 PM, Jerry Lowry  wrote:
 I have installed Cygwin 1.7 twice on my windows 7 laptop.  Each time it
 installs fine but when I try to run the X server it leaves three different X
 windows open as well as an Xterm itself.  Is this the default behavior on
 1.7?  I really would like to get just the X icon in the task bar and nothing
 else until I start an Xterm.  But even the Xterm opens two windows.

 Anyone have any ideas as to the problem I am seeing?
 --

Try modifying your /etc/X11/xinit/xinitrc file

I commented out the last line which had an 'exec xterm' in it and the
xterm no longer runs automatically.

-Jason

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



Issue with the installation of Cygwin/X

2010-01-06 Thread akramuddin . x . mohammed
Hi,
I am running into an issue when trying to install Cygwin/X. I am 
installing from http://x.cygwin.com/
When the setup.exe is run, after it shows the screen where we choose a 
site from a list, no matter what download site I choose, it throws this 
little pop-up, saying Warning: The current ini file is from a newer 
version of setup.exe. If you have any trouble installing, please download 
a fresh version from http://www.cygwin.com/setup.exe;
Please help me. 

Thanks,
Akramuddin Mohammed

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



Re: Issue with the installation of Cygwin/X

2010-01-06 Thread Christopher Faylor
On Wed, Jan 06, 2010 at 09:57:50AM -0600, akramuddin.x.moham...@verizon.com 
wrote:
Hi,
I am running into an issue when trying to install Cygwin/X. I am 
installing from http://x.cygwin.com/
When the setup.exe is run, after it shows the screen where we choose a 
site from a list, no matter what download site I choose, it throws this 
little pop-up, saying Warning: The current ini file is from a newer 
version of setup.exe. If you have any trouble installing, please download 
a fresh version from http://www.cygwin.com/setup.exe;
Please help me. 

The message is not lying.  You need to download the latest setup.exe
from http://cygwin.com/setup.exe.

If you've done that already then try clearing your browser cache and
proxy cache, if any.

cgf

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



Installation getting stuck?

2009-09-25 Thread diego menezes

Dear all,

I've been trying to install Cygwin/X on Windows Vista with Service Pack 2,
though I also have a linux partition as well, since my goal is access my
unix machine at Fermilab via windows. I started the installation last night
and at the Select Packages window I picked up Install rather than
Default which I previously quicly installed, to install the whole think.
It was everything running fine but this morning I noticed it got stuck at
27%. for over 3h. The download window says:

Running
tetex-tiny
/etc/postinstall/post-texmf.sh

and then the overrall progress status.

Does anyone have any idea why is it thanking so long? Is it normal?

Thanks in advance.

Cheers,

Diego.
-- 
View this message in context: 
http://www.nabble.com/Installation-getting-stuck--tp25616260p25616260.html
Sent from the cygwin-xfree mailing list archive at Nabble.com.


--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



cannot type in my xterm after new installation

2009-07-20 Thread THORBURN-GUNDLACH, DAVID T-G (ATTSI)
Hi, all --

I've just done a fresh Cygwin install on a new laptop and have run into
some interesting challenges.  I copied over my old startxwin.bat file
from another machine and can now throw up an xterm and such, but all is
still not well.

I've noted other posts on how to get rid of the toolbar but didn't
actually see where (.Xdefaults? xapplres? other?) and how (???) to do
so, so I'm dealing with it at the moment.

More interestingly, though, is that I cannot interact with an xterm
after it opens no matter what sorts of toolbar changes I make.  I can
*see* my prompt there but can't actually do anything!  The same goes for
an rxvt-x terminal, although an rxvt-native term works just fine.

What do I need to do to be able to actually type anything? :-)


TIA  HAND

:-D
-- 
David T-G
davi...@cingular.com

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



Re: cannot type in my xterm after new installation

2009-07-20 Thread Jon TURNEY

On 20/07/2009 16:20, THORBURN-GUNDLACH, DAVID T-G (ATTSI) wrote:

Hi, all --

I've just done a fresh Cygwin install on a new laptop and have run into
some interesting challenges.  I copied over my old startxwin.bat file
from another machine and can now throw up an xterm and such, but all is
still not well.

I've noted other posts on how to get rid of the toolbar but didn't
actually see where (.Xdefaults? xapplres? other?) and how (???) to do
so, so I'm dealing with it at the moment.


http://x.cygwin.com/docs/faq/cygwin-x-faq.html#q-how-do-i-get-rid-of-xterm-menu


More interestingly, though, is that I cannot interact with an xterm
after it opens no matter what sorts of toolbar changes I make.  I can
*see* my prompt there but can't actually do anything!  The same goes for
an rxvt-x terminal, although an rxvt-native term works just fine.

What do I need to do to be able to actually type anything? :-)


http://x.cygwin.com/docs/faq/cygwin-x-faq.html#q-i-cant-type-anything

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



RE: cannot type in my xterm after new installation

2009-07-20 Thread THORBURN-GUNDLACH, DAVID T-G (ATTSI)
Jon, et al --

% -Original Message-
% From: Jon TURNEY [mailto:jon.tur...@dronecode.org.uk] 
% Subject: Re: cannot type in my xterm after new installation
% 
% On 20/07/2009 16:20, THORBURN-GUNDLACH, DAVID T-G (ATTSI) wrote:
% 
...
%  I've noted other posts on how to get rid of the toolbar but didn't
%  actually see where (.Xdefaults? xapplres? other?) and how 
% (???) to do
%  so, so I'm dealing with it at the moment.
% 
% http://x.cygwin.com/docs/faq/cygwin-x-faq.html#q-how-do-i-get-
% rid-of-xterm-menu

Thanks!


% 
...
%  What do I need to do to be able to actually type anything? :-)
% 
% http://x.cygwin.com/docs/faq/cygwin-x-faq.html#q-i-cant-type-anything

Grrr...  I very carefully looked through the FAQ, figuring I wasn't the
only one, but somehow missed this.  Thank you for your kind direction
:-)


HAND

:-D

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



Re: FW: Cygwin installation

2009-03-17 Thread Matt Wozniski
Yuck.  http://www.cygwin.com/acronyms/#PCYMTWLL

Reformatted.

Stephen Mcgowan wrote:
 I am writing as I'm having trouble with setting up my cygwin using
 a windows vista operating system.

 I have downloaded and installed cygwin to my C:\ and for my course
 have been asked to right click the icon and go into properties.

What icon?  Seems you're changing the properties for the link to
cygwin.bat for some reason... what are you trying to accomplish?

 For the Target set it to C:\cygwin\cygwin.bat and for the Start
 In: set it to C:\cygwin\usr\X11R6\bin\startxwin.bat (see picture).

Yep.  Which means you want the application (cygwin.bat) to start in the
directory c:\cygwin\usr\X11R6\bin\startxwin.bat

 The thing is, I set these, and the picture shows I have located the
 startxwin.bat file on the right hand side, but I receive the following
 error message:

 The folder C:\cygwin\usr\X11R6\bin\startxwin.bat specified in the
 Start In box is not valid. Make sure the folder exists and the path is
 correct.

Because it's a file, not a folder.  An application starts in a certain
directory; it can't start in a file.

 Any assistance or advice on this matter would be greatly appreciated,

 Many Thanks,

 Stephen McGowan

I'm not really even sure what you're trying to do.

~Matt

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



Re: Cygwin X11 installation has changed lately?

2008-11-14 Thread Chuck
[EMAIL PROTECTED] wrote:
 Hi group,
 
 When I installed Cygwin this afternoon, I was looking for xorg-x11-base under 
 the X11 subtree, and I didn't find it there anymore. I installed everything 
 that was under X11 anyway, and was unable to locate startXwin under 
 c:\cygwin\usr\X11R6\bin.
 
 Where did startxwin go? can I still do tunelling through Putty?
 

One you get the Xwin server running, yes.

X11 was updated yesterday. The new startup scripts are in c:\cygwin\bin
(or /usr/bin if you are at a cygwin shell prompt.)


--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



Cygwin X11 installation has changed lately?

2008-11-13 Thread krahim
Hi group,

When I installed Cygwin this afternoon, I was looking for xorg-x11-base under 
the X11 subtree, and I didn't find it there anymore. I installed everything 
that was under X11 anyway, and was unable to locate startXwin under 
c:\cygwin\usr\X11R6\bin.

Where did startxwin go? can I still do tunelling through Putty?

Thanks in advance,

Khalid Rahim

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



Re: Regarding installation of X11 server in my Laptop with Windows Vista home basic OS

2008-10-15 Thread Larry Hall (Cygwin X)

Phil Betts wrote:

mallikarjun reddy wrote on Wednesday, October 15, 2008 1:02 PM::


Dear Sir,
  I,G Mallikarjun Reddy, am a student of B.Tech final year
studying in National Institute of Technology,Warangal.I want to
install Magic VLSI design tool in my Laptop which has Windows Vista
Home Basic as its Operating System.So I installed Cygwin by following
the instructions as given in the following site
  http://opencircuitdesign.com/cygwin/tcltk.html
But I couldn't get X11 server installed though I followed the steps
perfectly. Please give me a solution regarding this.

Thanking you,in anticipation.
Yours faithfully,
Mallikarjun


You haven't given us anywhere near enough information to let us work
out what your problem is.

What follows is a general procedure to follow to get X working.


If you installed cygwin with DOS line endings, you would be better off
cutting your losses and uninstall cygwin.  Then start again using UNIX 
line endings.  DOS line endings just cause more trouble than they are 
worth, and there is no good reason to use them. (The option is being 
removed from setup for cygwin 1.7)


Next, read these links (even if X is now working):

Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/


Implicit in this is a pointer to the instructions for installing
Cygwin/X as recommended by the Cygwin community.  If you need help
from the Cygwin community, it's best to use the resources that are
maintained by the community.  We can't vouch for or support other
sources.

--
Larry Hall  http://www.rfk.com
RFK Partners, Inc.  (508) 893-9779 - RFK Office
216 Dalton Rd.  (508) 429-6305 - FAX
Holliston, MA 01746

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



Regarding installation of X11 server in my Laptop with Windows Vista home basic OS

2008-10-15 Thread mallikarjun reddy
-- Forwarded message --
From: mallikarjun reddy [EMAIL PROTECTED]
Date: Wed, 15 Oct 2008 03:32:02 +0530
Subject:
To: cygwin-xfree@cygwin.com

Dear Sir,
  I,G Mallikarjun Reddy, am a student of B.Tech final year
studying in National Institute of Technology,Warangal.I want to
install Magic VLSI design tool in my Laptop which has Windows Vista
Home Basic as its Operating System.So I installed Cygwin by following
the instructions as given in the following site
  http://opencircuitdesign.com/cygwin/tcltk.html
But I couldn't get X11 server installed though I followed the steps
perfectly. Please give me a solution regarding this.

Thanking you,in anticipation.
Yours faithfully,
Mallikarjun



-- 
mallikarjun

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



RE: Regarding installation of X11 server in my Laptop with Windows Vista home basic OS

2008-10-15 Thread Phil Betts
mallikarjun reddy wrote on Wednesday, October 15, 2008 1:02 PM::

 Dear Sir,
   I,G Mallikarjun Reddy, am a student of B.Tech final year
 studying in National Institute of Technology,Warangal.I want to
 install Magic VLSI design tool in my Laptop which has Windows Vista
 Home Basic as its Operating System.So I installed Cygwin by following
 the instructions as given in the following site
   http://opencircuitdesign.com/cygwin/tcltk.html
 But I couldn't get X11 server installed though I followed the steps
 perfectly. Please give me a solution regarding this.
 
 Thanking you,in anticipation.
 Yours faithfully,
 Mallikarjun

You haven't given us anywhere near enough information to let us work
out what your problem is.

What follows is a general procedure to follow to get X working.


If you installed cygwin with DOS line endings, you would be better off
cutting your losses and uninstall cygwin.  Then start again using UNIX 
line endings.  DOS line endings just cause more trouble than they are 
worth, and there is no good reason to use them. (The option is being 
removed from setup for cygwin 1.7)

Next, read these links (even if X is now working):

Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/

If you still have a problem, check /tmp/XWin.log for errors.

If you're still no wiser, try searching the mailing list archive:
http://cygwin.com/ml/cygwin-xfree/

In particular, search the archives for references to any error 
messages you see in /tmp/XWin.log.  If XWin aborted, the error message
related to this will usually be near the end of the file, so it's best
to work backwards through the file.

You might be suffering from http://cygwin.com/acronyms/#BLODA 
If you have any of the software on the list, it's important to try
uninstalling it.  Just disabling it is unlikely to be enough to stop 
such badly written software from interfering.

Finally, if you're still stuck, you need to follow the instructions 
here:

 Problem reports:   http://cygwin.com/problems.html

In particular, *attach* the output from running cygcheck -svr.
For X related problems, you should also attach /tmp/XWin.log.


Phil
-- 
This email has been scanned by Ascribe PLC using Microsoft Antigen for Exchange.

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



installation of i686 pc cygwin

2008-04-14 Thread puneet . ahuja


Dear friends,
   While installing cygwin on windows XP. i686 pc cygwin is not
installed,even on asking setup.exe to ''install all''.I tried the Linux sersion
of installing i686 pc cygwin which makes the installation enter in a loop and
exits without installation.
could anyone please help me by letting me know the solution.
I apologize if I am not able to explain my problem as I am not an programming
expert.
Thanking you,
Kind Regards,
Puneet
- End forwarded message -

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



Re: installation of i686 pc cygwin

2008-04-14 Thread Robert G. (Doc) Savage
On Mon, 2008-04-14 at 13:09 +0200, [EMAIL PROTECTED] wrote:
 
 Dear friends,
While installing cygwin on windows XP. i686 pc cygwin is not
 installed,even on asking setup.exe to ''install all''.I tried the Linux 
 sersion
 of installing i686 pc cygwin which makes the installation enter in a loop and
 exits without installation.
 could anyone please help me by letting me know the solution.
 I apologize if I am not able to explain my problem as I am not an programming
 expert.

Puneet,

XP needs to be prepared for a Cygwin installation. I've had good success
with the following procedure:

If a previous installation has failed:
* Use regedit or regedt32 to delete the following keys from the Windows
registry:
  HKLM\Software\Cygnus Solutions
  HKLM\SYSTEM\CurrentControlSet\Services\sshd
* Reboot to remove any active Cygwin DLLS from memory
* Delete the current Cygwin directory in its entirety

Before a new installation:
* Create a new Cygwin folder and set its access permissions as follows:
   Administrators groupFull Control
   SYSTEM  Full Control
   Authenticated Users RWEL   -- for service accounts only
* Right-click on the desktop's My Computer icon, select Properties, then
click on the Advanced tab and the Environment Variables... box. Edit the
system variables PATH to include the new Cygwin directory:

 PATH=%PATH%;drive:\path_to\Cygwin;drive:\path_to\Cygwin\bin

* In the same Environment Variables window, Add the following
environment variable:

 CYGWIN NTSEC TTY

You can now install Cygwin from the Internet, but it is usually faster
to first download everything from a mirror site to \Cygwin\LatestRelease
and run setup.exe from there.

I hope this helps...

--Doc Savage
  Fairview Heights, IL


--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



Re: installation of i686 pc cygwin

2008-04-14 Thread Christopher Faylor
On Mon, Apr 14, 2008 at 09:53:56PM -0500, Robert G. (Doc) Savage wrote:
On Mon, 2008-04-14 at 13:09 +0200, [EMAIL PROTECTED] wrote:
 
 Dear friends,
While installing cygwin on windows XP. i686 pc cygwin is not
 installed,even on asking setup.exe to ''install all''.I tried the Linux 
 sersion
 of installing i686 pc cygwin which makes the installation enter in a loop and
 exits without installation.
 could anyone please help me by letting me know the solution.
 I apologize if I am not able to explain my problem as I am not an programming
 expert.

Puneet,

XP needs to be prepared for a Cygwin installation. I've had good success
with the following procedure:

If a previous installation has failed:
* Use regedit or regedt32 to delete the following keys from the Windows
registry:
  HKLM\Software\Cygnus Solutions
  HKLM\SYSTEM\CurrentControlSet\Services\sshd
* Reboot to remove any active Cygwin DLLS from memory
* Delete the current Cygwin directory in its entirety

Before a new installation:
* Create a new Cygwin folder and set its access permissions as follows:
   Administrators groupFull Control
   SYSTEM  Full Control
   Authenticated Users RWEL   -- for service accounts only
* Right-click on the desktop's My Computer icon, select Properties, then
click on the Advanced tab and the Environment Variables... box. Edit the
system variables PATH to include the new Cygwin directory:

 PATH=%PATH%;drive:\path_to\Cygwin;drive:\path_to\Cygwin\bin

* In the same Environment Variables window, Add the following
environment variable:

 CYGWIN NTSEC TTY

You can now install Cygwin from the Internet, but it is usually faster
to first download everything from a mirror site to \Cygwin\LatestRelease
and run setup.exe from there.

I hope this helps...

I'd be surprised if it did since none of it is necessary.  In particular,
you don't add an environment variable called CYGWIN NTSEC TTY and if you
are implying that either of those is necessary, you are wrong.  ntsec is
the default and tty is not something you turn on unless you know what it
does.

Installing cygwin is as simple as running setup.exe.  The only decision
you have to make is what mirror to use.  That gets you a minimal
installation.  Then you can rerun setup.exe to add more packages.  If
any of the above was actually necessary at any point we would have fixed
that by now.

cgf

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



Re: Cygwin installation on windows server2003

2007-12-12 Thread Pradnya Vairagare
Thanks Larry.

Firewall was on!! Could successfully install cygwin
and working fine.

Regards,
Pradnya

--- Larry Hall (Cygwin X)
[EMAIL PROTECTED] wrote:

 Pradnya Vairagare wrote:
  Hi,
  
  I'm facing problem in installing cygwin on windows
  server 2003. Installation doesn't proceed after
 10% or
  so.
  
  Can someone suggest what is missing to install
 cywin
  successfully? What are the steps need to follow or
  some settings need to do?
  
 
 This can be caused by
 http://cygwin.com/acronyms/#BLODA.
 Check into this or other AV/firewall/anti-spam
 software you
 have installed.
 
 -- 
 Larry Hall 
 http://www.rfk.com
 RFK Partners, Inc.  (508)
 893-9779 - RFK Office
 216 Dalton Rd.  (508)
 429-6305 - FAX
 Holliston, MA 01746
 
 --
 Unsubscribe info: 
 http://cygwin.com/ml/#unsubscribe-simple
 Problem reports:  
 http://cygwin.com/problems.html
 Documentation: http://x.cygwin.com/docs/
 FAQ:   http://x.cygwin.com/docs/faq/
 
 



  

Be a better friend, newshound, and 
know-it-all with Yahoo! Mobile.  Try it now.  
http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ 


--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



Cygwin installation on windows server2003

2007-12-11 Thread Pradnya Vairagare
Hi,

I'm facing problem in installing cygwin on windows
server 2003. Installation doesn't proceed after 10% or
so.

Can someone suggest what is missing to install cywin
successfully? What are the steps need to follow or
some settings need to do?

Thanks,
Pradnya


  

Never miss a thing.  Make Yahoo your home page. 
http://www.yahoo.com/r/hs

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



Re: Cygwin installation on windows server2003

2007-12-11 Thread xerces8
I did that several times. Works just fine.
No special steps.
(Windows 2003 is very compatible to XP)

Regards,
David

-Original Message-
From: Pradnya Vairagare [EMAIL PROTECTED]
To: cygwin-xfree@cygwin.com
Date: Tue, 11 Dec 2007 08:04:45 -0800 (PST)
Subject: Cygwin installation on windows server2003

 Hi,
 
 I'm facing problem in installing cygwin on windows
 server 2003. Installation doesn't proceed after 10% or
 so.
 
 Can someone suggest what is missing to install cywin
 successfully? What are the steps need to follow or
 some settings need to do?
 
 Thanks,
 Pradnya
 
 
   
 
 Never miss a thing.  Make Yahoo your home page. 
 http://www.yahoo.com/r/hs
 
 --
 Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
 Problem reports:   http://cygwin.com/problems.html
 Documentation: http://x.cygwin.com/docs/
 FAQ:   http://x.cygwin.com/docs/faq/
 



--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



Re: Cygwin installation on windows server2003

2007-12-11 Thread Larry Hall (Cygwin X)

Pradnya Vairagare wrote:

Hi,

I'm facing problem in installing cygwin on windows
server 2003. Installation doesn't proceed after 10% or
so.

Can someone suggest what is missing to install cywin
successfully? What are the steps need to follow or
some settings need to do?



This can be caused by http://cygwin.com/acronyms/#BLODA.
Check into this or other AV/firewall/anti-spam software you
have installed.

--
Larry Hall  http://www.rfk.com
RFK Partners, Inc.  (508) 893-9779 - RFK Office
216 Dalton Rd.  (508) 429-6305 - FAX
Holliston, MA 01746

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



Fwd: bzr-gtk installation

2007-11-01 Thread Frodak Baksik
Hello,

I was wanted to try out the gtk interface of bazaar.  I downloaded the
file bzr-gtk-0.91.0.tar.gz from the bazaar website. There were no
errors during the installation.

When I issue the command 'bzr viz' I get the following error:
bzr: ERROR: PyGTK not installed.

So I thought their might be an issue with pygtk2.

$ pygtk-demo
Traceback (most recent call last):
  File /usr/bin/pygtk-demo, line 7, in module
execfile(os.path.join(pygtklibdir, pygtk-demo.py))
  File /usr/lib/pygtk/2.0/pygtk-demo.py, line 18, in module
import gobject
ImportError: No module named gobject

Any thoughts?

Thanks,
Frodak

Cygwin Configuration Diagnostics
Current System Time: Thu Nov 01 14:18:02 2007

Windows XP Professional Ver 5.1 Build 2600 Service Pack 2

Path:   c:\STM\ST20R2.1.2\bin
C:\cygwin\home\FBAK\bin
C:\cygwin\usr\local\bin
C:\cygwin\bin
C:\cygwin\bin
C:\cygwin\usr\X11R6\bin
c:\STM\ST20R2.1.2\bin
C:\cygwin\home\FBAK\bin
C:\cygwin\usr\local\bin
C:\cygwin\bin
C:\cygwin\bin
C:\cygwin\usr\X11R6\bin
c:\Program Files\CA\Dcs\DMScripting\
c:\Program Files\CA\DCS\CAWIN\
c:\GNATPRO\5.04a\bin
c:\program files\imagemagick-6.3.5-q16
c:\Program Files\MiKTeX 2.6\miktex\bin
c:\WINDOWS\system32
c:\WINDOWS
c:\WINDOWS\System32\Wbem
c:\Program Files\ATI Technologies\ATI.ACE\
c:\Program Files\Rational\ClearCase\bin
c:\Program Files\QuickTime\QTSystem\
c:\Program Files\Common Files\GTK\2.0\bin
c:\Program Files\CA\Unicenter Software Delivery\BIN
c:\Program Files\Bazaar
c:\Program Files\Vim\vim71\
c:\Program Files\STI\bin\pc-win95
C:\cygwin\bin
C:\cygwin\lib\lapack

Output from C:\cygwin\bin\id.exe (nontsec)
UID: 62367(FBAK)
GID: 10513(Domain Users)
544(Administrators)
545(Users)
1007(Debugger Users)
12957(AMERICA_BDS_Avionics_US)
13071(AMERICA_DULAvionics)
13076(AMERICA_DulColor)
13085(AMERICA_DULNASBUP)
13090(AMERICA_Duluth)
21104(BVW.Avionics.SW.ALL)
21155(BVW.AVIONICS.SW.US)
21091(BVW.AVIONICS.US)
94342(DL_barcopartners.read)
94243(DL_BVW.AVIONICS.DU-8x5.ALL)
49489(DL_PM_BSP.R)
130338(DLA_AVD.AV)
130336(DLA_AVD.AV.NA.US.DUL)
94276(DLA_Hydra.PersonalUser)
114535(DLA_Hydra.User)
128410(DLA_NA.US.DUL)
129425(DLA_RD.HW)
129424(DLA_RD.HW.AVD.AV)
129422(DLA_RD.HW.AVD.AV.NA.US.DUL)
128647(DLA_RD.HW.NA.US.DUL)
128172(DLA_Salaried_Employee)
128171(DLA_Salaried_Employee.AVD.AV)
128169(DLA_Salaried_Employee.AVD.AV.NA.US.DUL)
125904(DLA_Salaried_Employee.NA.US.DUL)
21811(DLALL)
21944(DLDUL)
10513(Domain Users)
22055(Hydra.PersonalUsers)
20776(Hydra.Users)

Output from C:\cygwin\bin\id.exe (ntsec)
UID: 62367(FBAK)
GID: 10513(Domain Users)
544(Administrators)
545(Users)
1007(Debugger Users)
12957(AMERICA_BDS_Avionics_US)
13071(AMERICA_DULAvionics)
13076(AMERICA_DulColor)
13085(AMERICA_DULNASBUP)
13090(AMERICA_Duluth)
21104(BVW.Avionics.SW.ALL)
21155(BVW.AVIONICS.SW.US)
21091(BVW.AVIONICS.US)
94342(DL_barcopartners.read)
94243(DL_BVW.AVIONICS.DU-8x5.ALL)
49489(DL_PM_BSP.R)
130338(DLA_AVD.AV)
130336(DLA_AVD.AV.NA.US.DUL)
94276(DLA_Hydra.PersonalUser)
114535(DLA_Hydra.User)
128410(DLA_NA.US.DUL)
129425(DLA_RD.HW)
129424(DLA_RD.HW.AVD.AV)
129422(DLA_RD.HW.AVD.AV.NA.US.DUL)
128647(DLA_RD.HW.NA.US.DUL)
128172(DLA_Salaried_Employee)
128171(DLA_Salaried_Employee.AVD.AV)
128169(DLA_Salaried_Employee.AVD.AV.NA.US.DUL)
125904(DLA_Salaried_Employee.NA.US.DUL)
21811(DLALL)
21944(DLDUL)
10513(Domain Users)
22055(Hydra.PersonalUsers)
20776(Hydra.Users)

SysDir: C:\WINDOWS\system32
WinDir: C:\WINDOWS

USER = 'FBAK'
PWD = '/home/FBAK/bzr-gtk-0.91.0'
CYGWIN = 'server'
HOME = '/home/FBAK'
MAKE_MODE = 'unix'

HOMEPATH = '\Documents and Settings\fbak'
APPDATA = 'C:\Documents and Settings\fbak\Application Data'
MANPATH = 
'/usr/local/man:/usr/share/man:/usr/man:/usr/local/man:/usr/share/man:/usr/man::/usr/ssl/man:/usr/X11R6/man:/usr/ssl/man:/usr/X11R6/man'
VS71COMNTOOLS = 'C:\Program Files\Microsoft Visual Studio .NET 
2003\Common7\Tools\'
HOSTNAME = 'DULCLT00248'
XKEYSYMDB = '/usr/X11R6/lib/X11/XKeysymDB'
MOSART_BASE_PSC = 'C:\MOSArt\Base_Psc2_2_V2_0_1'
PROCESSOR_IDENTIFIER = 'x86 Family 6 Model 15 Stepping 2, GenuineIntel'
TERM = 'xterm'
WINDIR = 'C:\WINDOWS'
TEXDOCVIEW_txt = 'cygstart %s'
TEXDOCVIEW_dvi = 'cygstart %s'
WINDOWID = '10485773'
OLDPWD = '/home/FBAK'
USERDOMAIN = 'BARCO'
ALLUSERSPROFILE = 'C:\Documents and Settings\All Users'
OS = 'Windows_NT'
XAPPLRESDIR = '/usr/X11R6/lib/X11/app-defaults'
XTERM_SHELL = '/usr/bin/bash'
XCMSDB = '/usr/X11R6/lib/X11/Xcms.txt'
!:: = '::\'
COMMONPROGRAMFILES = 'C:\Program Files\Common Files'
DEFLOGDIR = 'C:\Documents and Settings\All Users\Application 
Data\McAfee\DesktopProtection'
TEMP = '/cygdrive/c/DOCUME~1/fbak/LOCALS~1/Temp'
XNLSPATH = '/usr/X11R6/lib/X11/locale'
LIB = 'C:\Program Files\Microsoft Visual Studio .NET 2003\SDK\v1.1\Lib\'
TERMCAP = 'xterm-r6|xterm|xterm X11R6

Re: XV Installation Problem

2006-04-16 Thread steven woody
oh, please. can anyone help me ?

On 4/14/06, steven woody [EMAIL PROTECTED] wrote:
 On 4/13/06, Igor Peshansky [EMAIL PROTECTED] wrote:
  Ugh, top-posting...  Reformatted.
 
  On Wed, 12 Apr 2006, steven woody wrote:
 
   On 4/11/06, Igor Peshansky [EMAIL PROTECTED] wrote:
 
  http://cygwin.com/acronyms/#PCYMTNQREAIYR.  Thanks.
 
On Tue, 11 Apr 2006, steven woody wrote:
   
 my installation of cygwin has already included xorg-xfree-devel
 package, but the i still get error when compile XV 3.10a. below is
 information:

 ...
 ./RANLIB.csh libtiff.a
 make[1]: ./RANLIB.csh: Command not found
 make[1]: *** [libtiff.a] Error 127
 make[1]: Leaving directory /usr/src/xv-3.10a/tiff
 make: *** [tiff/libtiff.a] Error 2
   
Looks like you either used a non-Cygwin version of tar to unpack the
source, or you're using an OS/filesystem/setting combo that doesn't
support executable bits on files.  Please follow the Cygwin problem
reporting guidelines at http://cygwin.com/problems.html.
   
If it's the former, unpack the source tarball again using the Cygwin
version of tar, which should set executable permissions properly.  It
could also be that the tarball itself is broken (i.e., RANLIB.csh isn't
executable), in which case a chmod a+x RANLIB.csh should do the trick.
  
   Thank you Igor.
  
   i am using Cygwin version of tar.
  
   i found there is only one RANLIB.csh which is in tiff/ directory, and
   the .csh file has executable bit set ok.
 
  As Matthias mentioned, you are likely either missing /usr/bin/csh or the
  tcsh package.  The latter guess would have been confirmed had you followed
  the problem reporting guidelines at http://cygwin.com/problems.html.  In
  either case, (re)installing the tcsh package should fix your problem.
  Igor

 thank you. i installed the tcsh and passed the previous steps.  but
 got another error:

 make[1]: Leaving directory `/usr/src/xv-3.10a/tiff'
 cc -O  -DDOJPEG -Ijpeg -DDOTIFF -Itiff -DDOPDS -c xv.c
 In file included from xv.c:11:
 xv.h:119: error: conflicting types for 'sys_errlist'
 /usr/include/sys/errno.h:23: error: previous declaration of
 'sys_errlist' was here
 xv.h:119: error: conflicting types for 'sys_errlist'
 /usr/include/sys/errno.h:23: error: previous declaration of
 'sys_errlist' was here
 make: *** [xv.o] Error 1

 please help!

 --
 woody



--
woody

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



Re: XV Installation Problem

2006-04-16 Thread Thierry Pirot
steven woody writes:

 oh, please. can anyone help me ?
...
  got another error:
 
  make[1]: Leaving directory `/usr/src/xv-3.10a/tiff'
  cc -O  -DDOJPEG -Ijpeg -DDOTIFF -Itiff -DDOPDS -c xv.c
  In file included from xv.c:11:
  xv.h:119: error: conflicting types for 'sys_errlist'
  /usr/include/sys/errno.h:23: error: previous declaration of
  'sys_errlist' was here
  xv.h:119: error: conflicting types for 'sys_errlist'
  /usr/include/sys/errno.h:23: error: previous declaration of
  'sys_errlist' was here
  make: *** [xv.o] Error 1
 
  please help!
 
A couple of years ago I installed xv.  
Here are the notes I took then : 

   Installed from sources, modifying
   in makefile : 
 CC = gcc -ansi -I/usr/X11R6/include/ -L/usr/X11R6/lib/
 MANDIR = /usr/man/man1
   in Xos.h : 
 extern __IMPORT _CONST char * _CONST _sys_errlist[];

Didn't tried anything it know, just hope it helps.  
-- 
   Take it Easy  Don't worryBe Happy

   Thierry

°°ºo§oº°°ºo§oº°°ºo§oº°°ºo§oº°°ºo§oº°°


--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



Re: XV Installation Problem

2006-04-13 Thread steven woody
On 4/13/06, Igor Peshansky [EMAIL PROTECTED] wrote:
 Ugh, top-posting...  Reformatted.

 On Wed, 12 Apr 2006, steven woody wrote:

  On 4/11/06, Igor Peshansky [EMAIL PROTECTED] wrote:

 http://cygwin.com/acronyms/#PCYMTNQREAIYR.  Thanks.

   On Tue, 11 Apr 2006, steven woody wrote:
  
my installation of cygwin has already included xorg-xfree-devel
package, but the i still get error when compile XV 3.10a. below is
information:
   
...
./RANLIB.csh libtiff.a
make[1]: ./RANLIB.csh: Command not found
make[1]: *** [libtiff.a] Error 127
make[1]: Leaving directory /usr/src/xv-3.10a/tiff
make: *** [tiff/libtiff.a] Error 2
  
   Looks like you either used a non-Cygwin version of tar to unpack the
   source, or you're using an OS/filesystem/setting combo that doesn't
   support executable bits on files.  Please follow the Cygwin problem
   reporting guidelines at http://cygwin.com/problems.html.
  
   If it's the former, unpack the source tarball again using the Cygwin
   version of tar, which should set executable permissions properly.  It
   could also be that the tarball itself is broken (i.e., RANLIB.csh isn't
   executable), in which case a chmod a+x RANLIB.csh should do the trick.
 
  Thank you Igor.
 
  i am using Cygwin version of tar.
 
  i found there is only one RANLIB.csh which is in tiff/ directory, and
  the .csh file has executable bit set ok.

 As Matthias mentioned, you are likely either missing /usr/bin/csh or the
 tcsh package.  The latter guess would have been confirmed had you followed
 the problem reporting guidelines at http://cygwin.com/problems.html.  In
 either case, (re)installing the tcsh package should fix your problem.
 Igor

thank you. i installed the tcsh and passed the previous steps.  but
got another error:

make[1]: Leaving directory `/usr/src/xv-3.10a/tiff'
cc -O  -DDOJPEG -Ijpeg -DDOTIFF -Itiff -DDOPDS -c xv.c
In file included from xv.c:11:
xv.h:119: error: conflicting types for 'sys_errlist'
/usr/include/sys/errno.h:23: error: previous declaration of
'sys_errlist' was here
xv.h:119: error: conflicting types for 'sys_errlist'
/usr/include/sys/errno.h:23: error: previous declaration of
'sys_errlist' was here
make: *** [xv.o] Error 1

please help!

--
woody

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



AW: XV Installation Problem

2006-04-12 Thread Morche Matthias
In that case I guess it contains a starting line #!/usr/bin/csh and there is 
no /usr/bin/csh, that always leads to the error message, you've seen.

  matthias


 

-Ursprüngliche Nachricht-
Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von steven woody
Gesendet: Mittwoch, 12. April 2006 03:55
An: cygwin-xfree@cygwin.com
Betreff: Re: XV Installation Problem

Thank you Igor.

i am using Cygwin version of tar.

i found there is only one RANLIB.csh which is in tiff/ directory, and
the .csh file has executable bit set ok.

any other clue?

On 4/11/06, Igor Peshansky [EMAIL PROTECTED] wrote:
 On Tue, 11 Apr 2006, steven woody wrote:

  my installation of cygwin has already included xorg-xfree-devel
  package, but the i still get error when compile XV 3.10a. below is
  information:
 
  ...
  ./RANLIB.csh libtiff.a
  make[1]: ./RANLIB.csh: Command not found
  make[1]: *** [libtiff.a] Error 127
  make[1]: Leaving directory /usr/src/xv-3.10a/tiff
  make: *** [tiff/libtiff.a] Error 2

 Looks like you either used a non-Cygwin version of tar to unpack the
 source, or you're using an OS/filesystem/setting combo that doesn't
 support executable bits on files.  Please follow the Cygwin problem
 reporting guidelines at http://cygwin.com/problems.html.

 If it's the former, unpack the source tarball again using the Cygwin
 version of tar, which should set executable permissions properly.  It
 could also be that the tarball itself is broken (i.e., RANLIB.csh isn't
 executable), in which case a chmod a+x RANLIB.csh should do the trick.
 HTH,
 Igor
 --
 http://cs.nyu.edu/~pechtcha/
   |\  _,,,---,,_[EMAIL PROTECTED] | [EMAIL PROTECTED]
 ZZZzz /,`.-'`'-.  ;-;;,_Igor Peshansky, Ph.D. (name changed!)
  |,4-  ) )-,_. ,\ (  `'-'   old name: Igor Pechtchanski
 '---''(_/--'  `-'\_) fL a.k.a JaguaR-R-R-r-r-r-.-.-.  Meow!

 Las! je suis sot... -Mais non, tu ne l'es pas, puisque tu t'en rends compte.
 But no -- you are no fool; you call yourself a fool, there's proof enough in
 that! -- Rostand, Cyrano de Bergerac

 --
 Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
 Problem reports:   http://cygwin.com/problems.html
 Documentation: http://x.cygwin.com/docs/
 FAQ:   http://x.cygwin.com/docs/faq/




--
woody

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/


--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



Re: XV Installation Problem

2006-04-12 Thread Igor Peshansky
Ugh, top-posting...  Reformatted.

On Wed, 12 Apr 2006, steven woody wrote:

 On 4/11/06, Igor Peshansky [EMAIL PROTECTED] wrote:

http://cygwin.com/acronyms/#PCYMTNQREAIYR.  Thanks.

  On Tue, 11 Apr 2006, steven woody wrote:
 
   my installation of cygwin has already included xorg-xfree-devel
   package, but the i still get error when compile XV 3.10a. below is
   information:
  
   ...
   ./RANLIB.csh libtiff.a
   make[1]: ./RANLIB.csh: Command not found
   make[1]: *** [libtiff.a] Error 127
   make[1]: Leaving directory /usr/src/xv-3.10a/tiff
   make: *** [tiff/libtiff.a] Error 2
 
  Looks like you either used a non-Cygwin version of tar to unpack the
  source, or you're using an OS/filesystem/setting combo that doesn't
  support executable bits on files.  Please follow the Cygwin problem
  reporting guidelines at http://cygwin.com/problems.html.
 
  If it's the former, unpack the source tarball again using the Cygwin
  version of tar, which should set executable permissions properly.  It
  could also be that the tarball itself is broken (i.e., RANLIB.csh isn't
  executable), in which case a chmod a+x RANLIB.csh should do the trick.

 Thank you Igor.

 i am using Cygwin version of tar.

 i found there is only one RANLIB.csh which is in tiff/ directory, and
 the .csh file has executable bit set ok.

As Matthias mentioned, you are likely either missing /usr/bin/csh or the
tcsh package.  The latter guess would have been confirmed had you followed
the problem reporting guidelines at http://cygwin.com/problems.html.  In
either case, (re)installing the tcsh package should fix your problem.
Igor
-- 
http://cs.nyu.edu/~pechtcha/
  |\  _,,,---,,_[EMAIL PROTECTED] | [EMAIL PROTECTED]
ZZZzz /,`.-'`'-.  ;-;;,_Igor Peshansky, Ph.D. (name changed!)
 |,4-  ) )-,_. ,\ (  `'-'   old name: Igor Pechtchanski
'---''(_/--'  `-'\_) fL a.k.a JaguaR-R-R-r-r-r-.-.-.  Meow!

Las! je suis sot... -Mais non, tu ne l'es pas, puisque tu t'en rends compte.
But no -- you are no fool; you call yourself a fool, there's proof enough in
that! -- Rostand, Cyrano de Bergerac

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



Re: XV Installation Problem

2006-04-11 Thread Igor Peshansky
On Tue, 11 Apr 2006, steven woody wrote:

 my installation of cygwin has already included xorg-xfree-devel
 package, but the i still get error when compile XV 3.10a. below is
 information:

 ...
 ./RANLIB.csh libtiff.a
 make[1]: ./RANLIB.csh: Command not found
 make[1]: *** [libtiff.a] Error 127
 make[1]: Leaving directory /usr/src/xv-3.10a/tiff
 make: *** [tiff/libtiff.a] Error 2

Looks like you either used a non-Cygwin version of tar to unpack the
source, or you're using an OS/filesystem/setting combo that doesn't
support executable bits on files.  Please follow the Cygwin problem
reporting guidelines at http://cygwin.com/problems.html.

If it's the former, unpack the source tarball again using the Cygwin
version of tar, which should set executable permissions properly.  It
could also be that the tarball itself is broken (i.e., RANLIB.csh isn't
executable), in which case a chmod a+x RANLIB.csh should do the trick.
HTH,
Igor
-- 
http://cs.nyu.edu/~pechtcha/
  |\  _,,,---,,_[EMAIL PROTECTED] | [EMAIL PROTECTED]
ZZZzz /,`.-'`'-.  ;-;;,_Igor Peshansky, Ph.D. (name changed!)
 |,4-  ) )-,_. ,\ (  `'-'   old name: Igor Pechtchanski
'---''(_/--'  `-'\_) fL a.k.a JaguaR-R-R-r-r-r-.-.-.  Meow!

Las! je suis sot... -Mais non, tu ne l'es pas, puisque tu t'en rends compte.
But no -- you are no fool; you call yourself a fool, there's proof enough in
that! -- Rostand, Cyrano de Bergerac

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



Re: XV Installation Problem

2006-04-11 Thread steven woody
Thank you Igor.

i am using Cygwin version of tar.

i found there is only one RANLIB.csh which is in tiff/ directory, and
the .csh file has executable bit set ok.

any other clue?

On 4/11/06, Igor Peshansky [EMAIL PROTECTED] wrote:
 On Tue, 11 Apr 2006, steven woody wrote:

  my installation of cygwin has already included xorg-xfree-devel
  package, but the i still get error when compile XV 3.10a. below is
  information:
 
  ...
  ./RANLIB.csh libtiff.a
  make[1]: ./RANLIB.csh: Command not found
  make[1]: *** [libtiff.a] Error 127
  make[1]: Leaving directory /usr/src/xv-3.10a/tiff
  make: *** [tiff/libtiff.a] Error 2

 Looks like you either used a non-Cygwin version of tar to unpack the
 source, or you're using an OS/filesystem/setting combo that doesn't
 support executable bits on files.  Please follow the Cygwin problem
 reporting guidelines at http://cygwin.com/problems.html.

 If it's the former, unpack the source tarball again using the Cygwin
 version of tar, which should set executable permissions properly.  It
 could also be that the tarball itself is broken (i.e., RANLIB.csh isn't
 executable), in which case a chmod a+x RANLIB.csh should do the trick.
 HTH,
 Igor
 --
 http://cs.nyu.edu/~pechtcha/
   |\  _,,,---,,_[EMAIL PROTECTED] | [EMAIL PROTECTED]
 ZZZzz /,`.-'`'-.  ;-;;,_Igor Peshansky, Ph.D. (name changed!)
  |,4-  ) )-,_. ,\ (  `'-'   old name: Igor Pechtchanski
 '---''(_/--'  `-'\_) fL a.k.a JaguaR-R-R-r-r-r-.-.-.  Meow!

 Las! je suis sot... -Mais non, tu ne l'es pas, puisque tu t'en rends compte.
 But no -- you are no fool; you call yourself a fool, there's proof enough in
 that! -- Rostand, Cyrano de Bergerac

 --
 Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
 Problem reports:   http://cygwin.com/problems.html
 Documentation: http://x.cygwin.com/docs/
 FAQ:   http://x.cygwin.com/docs/faq/




--
woody

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



Re: probelems with installation of kde

2006-03-08 Thread alex

Christopher Faylor schrieb:

On Tue, Mar 07, 2006 at 05:26:57PM +0100, alex wrote:
  

hi every one,

i'm not sure if i'm right here, but i tried it already on kde for cygwin 
project forum, and unfortunatly did not get any answer yet. so i try it 
here.



KDE is not a package which is generally supported here.
  

yes i supposed that...
  
the problem i have is that after downloading the packages the install 
instruction says that i have to rebase all dll's to avoid cygwin remap 
problems ( KDE for Cygwin 
http://webdev.cegit.de/snapshots/kde-cygwin/kde/kde3.4/ ) under point 
3.3 the problem starts. when executing the command i get the error 
massage that the command can not be found.


can someone help me please?



That would suggest that you have to install the rebase package.  Rerun
setup.exe to install it.

  
The funny thing is that i do have one exe file (rebase.exe) and one file 
which is named rebaseall !?



cgf






___ 
Telefonate ohne weitere Kosten vom PC zum PC: http://messenger.yahoo.de


--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



Re: probelems with installation of kde

2006-03-08 Thread Christopher Faylor
On Wed, Mar 08, 2006 at 12:17:26PM +0100, alex wrote:
The funny thing is that i do have one exe file (rebase.exe) and one file 
which is named rebaseall !?

Yes, that is pretty hilarious.  Thanks for sharing.

cgf

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



Re: probelems with installation of kde

2006-03-08 Thread René Berber
alex wrote:
[snip]
 http://webdev.cegit.de/snapshots/kde-cygwin/kde/kde3.4/ ) under
 point 3.3 the problem starts. when executing the command i get the
 error massage that the command can not be found.

 That would suggest that you have to install the rebase package.  Rerun
 setup.exe to install it.

   
 The funny thing is that i do have one exe file (rebase.exe) and one file
 which is named rebaseall !?

Try to determine which command can not be found... it could be ash, you say you
have rebaseall so that's no it, it could be basename, grep, gzip, sed, rebase...
any other used by rebaseall.

Probably the easy way to do this is to add the parameter -x to ash, something
like this from the Windows command line:

bin\ash -x bin/rebaseall ... and all the rest.
-- 
René Berber


--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



probelems with installation of kde

2006-03-07 Thread alex

hi every one,

i'm not sure if i'm right here, but i tried it already on kde for cygwin 
project forum, and unfortunatly did not get any answer yet. so i try it 
here.


the problem i have is that after downloading the packages the install 
instruction says that i have to rebase all dll's to avoid cygwin remap 
problems ( KDE for Cygwin 
http://webdev.cegit.de/snapshots/kde-cygwin/kde/kde3.4/ ) under point 
3.3 the problem starts. when executing the command i get the error 
massage that the command can not be found.


can someone help me please?

alex
//





___ 
Telefonate ohne weitere Kosten vom PC zum PC: http://messenger.yahoo.de


--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



Re: probelems with installation of kde

2006-03-07 Thread Christopher Faylor
On Tue, Mar 07, 2006 at 05:26:57PM +0100, alex wrote:
hi every one,

i'm not sure if i'm right here, but i tried it already on kde for cygwin 
project forum, and unfortunatly did not get any answer yet. so i try it 
here.

KDE is not a package which is generally supported here.

the problem i have is that after downloading the packages the install 
instruction says that i have to rebase all dll's to avoid cygwin remap 
problems ( KDE for Cygwin 
http://webdev.cegit.de/snapshots/kde-cygwin/kde/kde3.4/ ) under point 
3.3 the problem starts. when executing the command i get the error 
massage that the command can not be found.

can someone help me please?

That would suggest that you have to install the rebase package.  Rerun
setup.exe to install it.

cgf

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



Re: Why gnome-session is not found in a full-installation of cygwin?

2006-02-07 Thread Larry Hall (Cygwin X)
Yu Lianqing wrote:
 Hi, folks,
 
 I successfully download and install cgywin on my windows xp profesional 
 system. I choose to install everything (at select packages page, I 
 choose All, Install).
 
 I prefer GNOME as the window manager but gnome-session is missing, this 
 is weird as I've already installed everything.
 Hope someone help me with the issue, thanks!

If you don't see it, it isn't packaged with Cygwin.

http://cygwin.com/ml/cygwin/2006-02/msg00262.html


-- 
Larry Hall  http://www.rfk.com
RFK Partners, Inc.  (508) 893-9779 - RFK Office
838 Washington Street   (508) 893-9889 - FAX
Holliston, MA 01746

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



fatal error occurred. my mozilla installation failed. what to do?

2005-07-29 Thread 606-0


Mit freundlichem Gruß
Dr. Alfred Schlicht
Vortragender Legationsrat
Auswärtiges Amt, Ref. 606
Tel. 01888/173247
Fax 01888/1753247
e-mail: [EMAIL PROTECTED]



--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



Re: fatal error occurred. my mozilla installation failed. what to do?

2005-07-29 Thread Igor Pechtchanski
First, I just have to cite Heinlein:

   When in danger, or in doubt --
   Run in circles, scream, and shout.

Then I'd like to cite the Cygwin problem reporting page at
http://cygwin.com/problems.html, which has some useful hints on how to
report problems properly.  For Cygwin/X crashes, it's usually also useful
to provide XWin.log.

Besides the above, lacking the details of the error, it's quite impossible
to help you.
Igor
-- 
http://cs.nyu.edu/~pechtcha/
  |\  _,,,---,,_[EMAIL PROTECTED]
ZZZzz /,`.-'`'-.  ;-;;,_[EMAIL PROTECTED]
 |,4-  ) )-,_. ,\ (  `'-'   Igor Pechtchanski, Ph.D.
'---''(_/--'  `-'\_) fL a.k.a JaguaR-R-R-r-r-r-.-.-.  Meow!

If there's any real truth it's that the entire multidimensional infinity
of the Universe is almost certainly being run by a bunch of maniacs. /DA

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



XFree86 command line installation

2005-07-27 Thread Rajagopalan, Karthik
Hi,

This is a question about Cygwin-XFree86 installation. I am trying to
install XFree86 from command line in silent mode without any user
interface.
But on using the command structure

setup.exe -L -R c:\test\xfree86 -q -l c:\cygwin -n -5

I am seeing the progress bar dialog. Is it not possible to install
completely in silent mode? 

Regards,
Karthik.

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



Re: XFree86 command line installation

2005-07-27 Thread Igor Pechtchanski
Karthik,

Reposting the same question every 24 hours will not get you closer to the
answer.

On Wed, 27 Jul 2005, Rajagopalan, Karthik wrote:

 Hi,

 This is a question about Cygwin-XFree86 installation.

To dispell a myth, there is no such thing as a separate XFree86
installation.  There is a Cygwin installer, named setup.exe, which can be
used to install *any* Cygwin packages, including the Cygwin/X ones.

Which, BTW, makes this question less appropriate for the cygwin-xfree
list, and more appropriate for the main Cygwin list, which is where I'm
redirecting this reply.  Please remove cygwin-xfree from further
discussion unless it comes to Cygwin/X-specific points.

 I am trying to install XFree86 from command line in silent mode without
 any user interface.

Another note: the Cygwin/X implementation has switched from the XFree86
codebase to the X.org codebase a long while ago.  I suspect you want to
install the current versions of the X packages.  Calling them XFree86 is
likely to result in confusion.

 But on using the command structure

 setup.exe -L -R c:\test\xfree86 -q -l c:\cygwin -n -5

 I am seeing the progress bar dialog. Is it not possible to install
 completely in silent mode?

No, it is currently not possible.  The Cygwin installer is a graphical
application.  You can run it in unattended mode, but you cannot tell it to
not create a Window.

That said, there may be other tools that allow opening a GUI application
without a window.  You could use one of those tools to invoke setup.exe,
which will hide the main window.  Before you ask, I'm not aware of any
Cygwin tools that would do this.  I'd suggest checking the MS Knowledge
Base.

HTH,
Igor
-- 
http://cs.nyu.edu/~pechtcha/
  |\  _,,,---,,_[EMAIL PROTECTED]
ZZZzz /,`.-'`'-.  ;-;;,_[EMAIL PROTECTED]
 |,4-  ) )-,_. ,\ (  `'-'   Igor Pechtchanski, Ph.D.
'---''(_/--'  `-'\_) fL a.k.a JaguaR-R-R-r-r-r-.-.-.  Meow!

If there's any real truth it's that the entire multidimensional infinity
of the Universe is almost certainly being run by a bunch of maniacs. /DA

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



XFree86 command line installation

2005-07-26 Thread Rajagopalan, Karthik
Hi,

This is a question about Cygwin-XFree86 installation. I am trying to
install XFree86 from command line in silent mode without any user
interface.
But on using the command structure

setup.exe -L -R c:\test\xfree86 -q -l c:\cygwin -n -5

I am seeing the progress bar dialog. Is it not possible to install
completely in silent mode? 

Regards,
Karthik.

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



FW: Installation issues (newbie)

2005-06-20 Thread David Masterson
Someone on the Cygwin list suggested I post this here.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf
Of David Masterson
Sent: Friday, June 17, 2005 4:43 PM
To: cygwin@cygwin.com
Subject: Installation issues (newbie)


I used to use Cygwin a long time ago and am now coming back to it.

My setup:

*   Dell Precision Workstation 370
*   MS-Windows XP Pro v5.1.2600

Step 1: Install Cygwin

*   I used setup.exe to first download all of Cygwin to my local hard
drive.  I do this so that, if I install it a few times, I don't have to hit
the Internet after the first time.  Somewhat faster.
*   After downloading everything, I used setup.exe to install the
Default.  A couple of times, this gave me errors in the postinstall steps
about some DLL, but it didn't repeat consistently, so...
*   After I installed, I brought up Bash and got the usual message about
/etc/passwd  /etc/group.  I used mkpasswd and mkgroup to fill them in.
*   Default (I believe) doesn't install MAN pages or editors, so
figuring out what mkpasswd/mkgroup did and/or adjusting it is kind of
difficult.  This should be fixed or documented better.

Step 2: Get an X server working

*   Default doesn't install any X, so I reran setup.exe to do an All
install (I have room).  This got me a Cygwin/X menu in the Start menu list,
but didn't provide any obvious way of starting an X server.
*   Suggestion: Have setup.exe add an icon for startxwin.bat to the
Desktop.  I manually did that.
*   Double-clicking startxwin.bat brings up an X server and xterm with
the root window hidden.  Xclock also seems to work properly.

Step 3: Get an editor running

*   Starting emacs from the xterm window brings up emacs, but it
immediately crashes when you try to do anything in it.
*   Starting xemacs from the xterm window seems a little better as you
can do things in it, but it crashes when you try to exit from XEmacs.
*   I then did an xhost + to disable access control.
*   Running emacs from an RHEL3 system with the display pointed at my
Cygwin system brought up a window, but immediately crashed.
*   Running xemacs from the RHEL3 system with the display pointed to my
Cygwin system worked much better and seemed normal (most times!).  I tested
this a few times and XEmacs did crash once.

So what's wrong with the X server in Cygwin?  Since I'm just getting going, I
posted this to the cygwin mailing list -- later I may move to the
cygwin-xfree mailing list.

David Masterson


--
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/



Re: tetex 3.0.0-1 installation

2005-04-04 Thread Jan Nieuwenhuizen
m. z. writes:

 Any suggestion on how to succesfully upgrade my tex ? Or Is it a bug
 of the last version ? Someone succeeded in installing it ?

There is a bug.  Please rerun setup.exe and downgrade to tetex-2.0
until this has been resolved.  Thanks for the report (the proper list
for this kind of report would be cygwin@  not cygwin-xfree@).

Jan.

-- 
Jan Nieuwenhuizen [EMAIL PROTECTED] | GNU LilyPond - The music typesetter
http://www.xs4all.nl/~jantien   | http://www.lilypond.org


tetex 3.0.0-1 installation

2005-04-03 Thread m. z.
I tried to install tex/latex 3.0.0-1 (last version), but I did not succeed. 
The setup, when arrives at /etc/postinstall/post-texmf.sh , I think 
something wrong it happens, since I waited for more than 30 minutes (with 
Pentium 4) consuming up to 100% of CPU and not proceeding. I had to stop it 
and to reinstall the previous version 2.0.2-15.
Any suggestion on how to succesfully upgrade my tex ? Or Is it a bug of the 
last version ? Someone succeeded in installing it ?
Thank you




Re: XWin minimal installation

2005-03-17 Thread Alexander Gottwald
On Wed, 16 Mar 2005, Steven Boothe wrote:

 Juan José Gutiérrez de Quevedo Pérez wrote:
  This might be of interest to some people in the list, so there it goes.
  
  I've just finished making a small distribution of X/Cygwin (only 2Mb),
  and have placed it in the following address:
  http://www.iteisa.com/xmins/
  (xmins--XWin Minimal Installation)
 
 Ooo aa!
 
 I'm wondering if this can be used to create a bundled application package
 and hence install script for apps dependent on Cygwin/X11??? That would be
 very nice indeed!

Use Xming for this purpose. 
http//wiki.freedesktop.org/wiki

I vote strongly against making some installations or bundled packages of 
Cygwin/X
because it will interfere with a already or later installed cygwin.

bye
ago
-- 
 [EMAIL PROTECTED] 
 http://www.gotti.org   ICQ: 126018723


XWin minimal installation

2005-03-16 Thread Juan José Gutiérrez de Quevedo Pérez
This might be of interest to some people in the list, so there it goes.

I've just finished making a small distribution of X/Cygwin (only 2Mb),
and have placed it in the following address:
http://www.iteisa.com/xmins/
(xmins--XWin Minimal Installation)

What I've done basically is take the necessary cygwin and X/Cygwin
files and package them in a convenient (and small, I might add) way,
so that I can carry it around in a usb stick, or download it in a short
time from the internet in case of need.

I know it's not a full X/Cygwin server (most extensions are not
working, like xkb or xfixes), but it's enough to i.e. run a remote
gnome session or start some programs through ssh in a remote host.

There are some things I don't actually like about how it has turned
out, actually, the main being that it doesn't support xkb(it always
said couldn't load keymap, I think it's because of the binary-
mounting /tmp thingy) and that it is needing windows scripting host
right now to ask for a host to query. For the later the solution would
be to create a frontend to allow selecting most of the xserver options
such as -query -indirect, etc... This frontend would also allow me to
delete all those awfull entries from the start menu (there are 9 right
now)

-- 
Juan José Gutiérrez de Quevedo
Director Técnico ([EMAIL PROTECTED])
ITEISA (http://www.iteisa.com)


Re: XWin minimal installation

2005-03-16 Thread Steven Boothe
Juan José Gutiérrez de Quevedo Pérez wrote:
This might be of interest to some people in the list, so there it goes.
I've just finished making a small distribution of X/Cygwin (only 2Mb),
and have placed it in the following address:
http://www.iteisa.com/xmins/
(xmins--XWin Minimal Installation)
Ooo aa!
I'm wondering if this can be used to create a bundled application package
and hence install script for apps dependent on Cygwin/X11??? That would be
very nice indeed!
The application I have in mind is Scribus. Which we finally have a nice
recipe for installing version 1.2.1 via Cygwin at:
http://wiki.scribus.net/Installing_Scribus_on_Win32
But I know it could become even more accessible to an even wider audience
if we could create a fairly small bundled installer type of package. My
first initial tests came out way to large in size do to all the many files
that were included but didn't need to be. :)
Excellent work!


Re: XWin minimal installation

2005-03-16 Thread Brian Dessent
Juan José Gutiérrez de Quevedo Pérez wrote:

 This might be of interest to some people in the list, so there it goes.
 
 I've just finished making a small distribution of X/Cygwin (only 2Mb),
 and have placed it in the following address:
 http://www.iteisa.com/xmins/
 (xmins--XWin Minimal Installation)
 
 What I've done basically is take the necessary cygwin and X/Cygwin
 files and package them in a convenient (and small, I might add) way,
 so that I can carry it around in a usb stick, or download it in a short
 time from the internet in case of need.

I don't see anywhere that you provide the source to the utilities in
your binary package.  This is required under the GPL.  As far as I know
you're not allowed to just say get them from cygwin.com, you must
offer them from the same place as the binaries.

Brian


AW: XWin minimal installation

2005-03-16 Thread Marco Lechner
Does this also work, if I install the Xmins on the USB-Stick? So that I can
use it like XliveUSB-Stick (like the XliveCD from
http://xlivecd.indiana.edu/?

Marco


-
Marco Lechner

office:
Department of Physische Geographie
University of Freiburg
Werderring 4
D-79085 Freiburg
Germany
phone +49 (0)761 / 203-3548
email [EMAIL PROTECTED]


 -Ursprüngliche Nachricht-
Von: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Auftrag von Juan José Gutiérrez
de Quevedo Pérez
Gesendet: Mittwoch, 16. März 2005 22:33
An: cygwin-xfree@cygwin.com
Betreff: XWin minimal installation


This might be of interest to some people in the list, so there it goes.

I've just finished making a small distribution of X/Cygwin (only 2Mb),
and have placed it in the following address:
http://www.iteisa.com/xmins/
(xmins--XWin Minimal Installation)

What I've done basically is take the necessary cygwin and X/Cygwin
files and package them in a convenient (and small, I might add) way,
so that I can carry it around in a usb stick, or download it in a short
time from the internet in case of need.

I know it's not a full X/Cygwin server (most extensions are not
working, like xkb or xfixes), but it's enough to i.e. run a remote
gnome session or start some programs through ssh in a remote host.

There are some things I don't actually like about how it has turned
out, actually, the main being that it doesn't support xkb(it always
said couldn't load keymap, I think it's because of the binary-
mounting /tmp thingy) and that it is needing windows scripting host
right now to ask for a host to query. For the later the solution would
be to create a frontend to allow selecting most of the xserver options
such as -query -indirect, etc... This frontend would also allow me to
delete all those awfull entries from the start menu (there are 9 right
now)

--
Juan José Gutiérrez de Quevedo
Director Técnico ([EMAIL PROTECTED])
ITEISA (http://www.iteisa.com)



RE: bad installation ?

2005-03-11 Thread Owen Rees
--On 10 March 2005 20:14 + John Morrison (Cygwin) wrote:
Basically adding your user (using the domain flag if
appropriate) to the passwd and group files which is
what the message attempts to help the user to do.  It
appears (judging from the number of times this
question isn't now appearing on the lists) to have
worked for most people, but I'm always looking for
perfection ;)
Hope this helps explain things,
My system is not in the same domain as my login id, and I suspect that may 
make a difference. One of the problems with saying if appropriate is that 
it assumes that the reader knows when it is appropriate, but if they did, 
they would probably not need to ask the question.

Searching the mail archives turned up this in 
http://sourceware.org/ml/cygwin/2005-01/msg00642.html:

There is an off chance that 'mkpasswd -u yourself -d thedomain'
might work, where thedomain is the global corporate domain.
Sustituting domain part from the domain\user I can use to log in for 
global corporate domain (they are not the same thing in my case) I got a 
result that included the (number of) the group Domain Users, the group in 
which Windows utilities seems to create files for me. Unfortunately the 
result offered a different home directory from the one I have been using 
with my current setup, but a careful edit to /etc/passwd seems to have 
changed things for the better.

As for neither fixing the problem before, not posting about it, I was 
getting stupid results from 'ls -l' for the group, but apart from that 
nothing seemed to be broken. It did not seem worth a lot of effort trying 
to tidy up a loose end that did not seem to be making any real difference.

I did try the things that the message about mkgroup_l_d seemed to be 
suggesting, but they did not make any difference. In reading the man page 
for mkpasswd I did not realise that current domain apparently does not 
mean the domain in which my login id is defined.

--
Owen Rees [EMAIL PROTECTED]
Hewlett Packard Laboratories, Bristol, UK
tel: +44 117 312 9439 fax: +44 117 312 8924



Re: bad installation ?

2005-03-11 Thread Christopher Faylor
On Fri, Mar 11, 2005 at 01:28:05PM +, Owen Rees wrote:
--On 10 March 2005 20:14 + John Morrison (Cygwin) wrote:
Basically adding your user (using the domain flag if appropriate) to
the passwd and group files which is what the message attempts to help
the user to do.  It appears (judging from the number of times this
question isn't now appearing on the lists) to have worked for most
people, but I'm always looking for perfection ;)

Hope this helps explain things,

My system is not in the same domain as my login id, and I suspect that
may make a difference.  One of the problems with saying if
appropriate is that it assumes that the reader knows when it is
appropriate, but if they did, they would probably not need to ask the
question.

Searching the mail archives turned up this in
http://sourceware.org/ml/cygwin/2005-01/msg00642.html:

As the above link suggests, this discussion is off topic for
cygwin-xfree.  Please move it to the main list.  You'll have a lot more
people to pick on than John Morrison in the main list.

I'm blocking this subject from further discussion here.

cgf


RE: bad installation ?

2005-03-10 Thread Morrison, John
As maintainer of the package which outputs that message I'm
always glad to hear of ways to improve it.  Can you suggest
a better message?

J.

 -Original Message-
 From: Matthew Johnson 
 
 Well, Phil, I read what she posted, and I do NOT think
 it tells all Banibrata needs to know.
 
 The big unanswered question that is probably still
 bothering Banibrata is, how on earth did the group
 get to be 'mkpasswd' in the first place? I very much
 doubt that Banibrata set it to that. And I have never
 seen that in Cygwin or Cygwin/X before. So it sounds
 like some drastic error condition did this. And if it
 did, who knows what _else_ is messed up in the
 installation? THAT is what Banitrata needs to know; it
 was NOT contained in the message.
 
 Another thing Banibrata needs to know that was not
 explained is which of the FOUR methods of rebuilding
 the password file is appropriate for this condition.
 
 Now it may very well be that the readers of the list
 cannot answer this for Banibrata, since it varies from
 case to case, and Banibrata simply has to knuckle-down
 and read the man pages. But even if this is the case,
 some guidelines for how to intepret the man pages
 would be the right, helpful response.
 
 To that end, I propose to Banibrata the following
 questions:
 
 1 - do you need remote access?
 2 - what version of Windows are you running?
 3 - do you have access to the Domain Controller?
 4 - where do you have your home directory
 (directories)?
 
 The answers to these questions will tell you whether
 or not you need the '-d' option, etc.
 
 --- Phil Betts [EMAIL PROTECTED] wrote:
  On Wednesday, February 23, 2005 6:23 PM, Banibrata
  Dutta wrote:
   Could anybody explain the following behaviour or
  Cygwin and startx
   in Cygwin...
   
   capture
   
   Your group is currently mkpasswd. This indicates
  that
   the /etc/passwd (and possibly /etc/group) files
  should be rebuilt.
   See the man pages for mkpasswd and mkgroup then,
  for example, run
   mkpasswd -l [-d]  /etc/passwd
   mkgroup  -l [-d]  /etc/group
   Note that the -d switch is necessary for domain
  users.
  
   snip
  
   Could someone please help ?
  
  Did you actually *read* what you posted?
  
  It tells you all you need to know.


This e-mail has come from Experian International: winner of the UK's National 
Business of the Year Award 2003.

==
Information in this e-mail and any attachments are confidential, and may 
not be copied or used by anyone other than the addressee, nor disclosed 
to any third party without our permission. There is no intention to 
create any legally binding contract or other binding commitment through 
the use of this electronic communication unless it is issued in accordance 
with the Experian Limited standard terms and conditions of purchase or 
other express written agreement between Experian Limited and the recipient 
Experian Limited (registration number 653331) Registered office: 
Talbot House, Talbot Street, Nottingham NG80 1TH

Although Experian has taken reasonable steps to ensure that this communication 
and any attachments are free from computer virus, you are advised to take 
your own steps to ensure that they are actually virus free.



RE: bad installation ?

2005-03-10 Thread Matthew Johnson
Hi, John-

Since I myself have no idea why it is outputting that
message, no I cannot suggest a better message. And I
notice that when I did a fresh installation of cygwin
and cygwin/x on a brand new system yesterday, now I am
getting that message too. Do _you_ have any idea why
fresh installations did not used to output this
message, but now they do? Is it a new message, or did
something change in cygwin or cygwin/x, such that the
group now gets initialized to 'mkpasswd' (and did not
get so initialized before)?

--- Morrison, John [EMAIL PROTECTED]
wrote:

 As maintainer of the package which outputs that
 message I'm
 always glad to hear of ways to improve it.  Can you
 suggest
 a better message?
 
 J.
 
  -Original Message-
  From: Matthew Johnson 
  
  Well, Phil, I read what she posted,
  and I do NOT think
  it tells all Banibrata needs to know.
  
  The big unanswered question that is probably still
  bothering Banibrata is, how on earth did the
 group get to be 'mkpasswd' in the first place?
  I very much doubt that Banibrata set it to that.

And now I can add, I _know_ I did not set it to that,
yet now I get the message too, when starting up the
bash shell.

[snip]




__ 
Do you Yahoo!? 
Yahoo! Small Business - Try our new resources site!
http://smallbusiness.yahoo.com/resources/ 


RE: bad installation ?

2005-03-10 Thread John Morrison (Cygwin)
Hi Matthew,

Although the message is from base-files the reason is
due to installation.  In my experience this only
occurs when installing for a domain user although
others have reported other reasons for it.

For me, the message occurs because the base-passwd
(which I also maintain) doesn't and (for a number of
reasons, see archives) can't add domain users.

The outcome is, for this user, is that you get added
to a special group.  In an effort to stop or at least
slow ;) the number of emails to the list when stuff
didn't work because their user/group wasn't setup
correctly some detection code was added to base-files
along with some instruction as to what to do.


Basically adding your user (using the domain flag if
appropriate) to the passwd and group files which is
what the message attempts to help the user to do.  It
appears (judging from the number of times this
question isn't now appearing on the lists) to have
worked for most people, but I'm always looking for
perfection ;)

Hope this helps explain things,

J.

On Thu, March 10, 2005 7:22 pm, Matthew Johnson said:
 Hi, John-

 Since I myself have no idea why it is outputting that
 message, no I cannot suggest a better message. And I
 notice that when I did a fresh installation of cygwin
 and cygwin/x on a brand new system yesterday, now I am
 getting that message too. Do _you_ have any idea why
 fresh installations did not used to output this
 message, but now they do? Is it a new message, or did
 something change in cygwin or cygwin/x, such that the
 group now gets initialized to 'mkpasswd' (and did not
 get so initialized before)?

 --- Morrison, John [EMAIL PROTECTED]
 wrote:

 As maintainer of the package which outputs that
 message I'm
 always glad to hear of ways to improve it.  Can you
 suggest
 a better message?

 J.

  -Original Message-
  From: Matthew Johnson
 
  Well, Phil, I read what she posted,
  and I do NOT think
  it tells all Banibrata needs to know.
 
  The big unanswered question that is probably still
  bothering Banibrata is, how on earth did the
 group get to be 'mkpasswd' in the first place?
  I very much doubt that Banibrata set it to that.

 And now I can add, I _know_ I did not set it to that,
 yet now I get the message too, when starting up the
 bash shell.

 [snip]




 __
 Do you Yahoo!?
 Yahoo! Small Business - Try our new resources site!
 http://smallbusiness.yahoo.com/resources/






RE: bad installation ?

2005-03-10 Thread Matthew Johnson

--- John Morrison (Cygwin) [EMAIL PROTECTED]
wrote:

 Hi Matthew,
 
 Although the message is from base-files the reason
 is due to installation.

OK...

 In my experience this only
 occurs when installing for a domain user although
 others have reported other reasons for it.

'Domain'? What kind of 'domain' are you talking about
here? And why should a user have to rebuild the entire
passwd and group files just because they are a domain
user? This sounds wrong: if it is right, more
explanation is necessary.

 For me, the message occurs because the base-passwd
 (which I also maintain) doesn't and (for a number of
 reasons, see archives) can't add domain users.

What 'base-passwd'? And can you be a little more
specific than see archives? I did a search with
cygwin base-passwd domain user and I still have a
sinking feeling when I see what links come up.

 The outcome is, for this user, is that you get added
 to a special group.  In an effort to stop or at
 least
 slow ;) the number of emails to the list when stuff
 didn't work because their user/group wasn't setup
 correctly some detection code was added to
 base-files
 along with some instruction as to what to do.
 
Right. And when I follow those instructions, it
_still_ does not work: it does not allow me to remake
the group, so I still get the message. So I am quite
surprised that you say this message has reduced the
number of emails to the list.

Besides: the user should not have to know enough about
domains and passwords to know why you have assumed
that domain user stay domain users. And why are you so
worried about the problems there when domain users
are added (or did you mean not added) to passwd/group
files?
 
 Basically adding your user (using the domain flag if
 appropriate) to the passwd and group files which is
 what the message attempts to help the user to do. 

This sentence is missing a main verb. Besides: I tried
this both with and without the -d flag and make group
failed both ways.

 It
 appears (judging from the number of times this
 question isn't now appearing on the lists) to have
 worked for most people, but I'm always looking for
 perfection ;)

As I said, it surprises me that this would reduce the
number, since it failed so quickly for me. But I
always knew I was different;)


 Hope this helps explain things,

Partially, yes. But I am still mystified why both
mkgroup -l  /etc/passwd and mkgroup -l -d 
/etc/passwd fail. The error code from the latter is
Cannot get PDC, code = 2453.

[snip]

BTW: maybe _you_ never log on locally when running on
a network domain, but I often do. So I find the
restriction irritating. And I see from perusing the
list that I am not the first to find it so. More
important, in some benighted companies, users do not
have Administrator privileges on their own Win95
workstations. They can only log on with their domain
user name. Won't they want to be able to log on
locally even more often (under Cygwin)?



---
Matthew Johnson
[EMAIL PROTECTED]



__ 
Do you Yahoo!? 
Yahoo! Small Business - Try our new resources site!
http://smallbusiness.yahoo.com/resources/ 


RE: bad installation ?

2005-03-09 Thread Phil Betts
On Wednesday, February 23, 2005 6:23 PM, Banibrata Dutta wrote:
 Could anybody explain the following behaviour or Cygwin and startx
 in Cygwin...
 
 capture
 
 Your group is currently mkpasswd. This indicates that
 the /etc/passwd (and possibly /etc/group) files should be rebuilt.
 See the man pages for mkpasswd and mkgroup then, for example, run
 mkpasswd -l [-d]  /etc/passwd
 mkgroup  -l [-d]  /etc/group
 Note that the -d switch is necessary for domain users.

 snip

 Could someone please help ?

Did you actually *read* what you posted?

It tells you all you need to know.

**
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager.

This footnote also confirms that this email message has been swept by
MIMEsweeper for the presence of computer viruses.

www.mimesweeper.com
**


RE: bad installation ?

2005-03-09 Thread Matthew Johnson
Well, Phil, I read what she posted, and I do NOT think
it tells all Banibrata needs to know.

The big unanswered question that is probably still
bothering Banibrata is, how on earth did the group
get to be 'mkpasswd' in the first place? I very much
doubt that Banibrata set it to that. And I have never
seen that in Cygwin or Cygwin/X before. So it sounds
like some drastic error condition did this. And if it
did, who knows what _else_ is messed up in the
installation? THAT is what Banitrata needs to know; it
was NOT contained in the message.

Another thing Banibrata needs to know that was not
explained is which of the FOUR methods of rebuilding
the password file is appropriate for this condition.

Now it may very well be that the readers of the list
cannot answer this for Banibrata, since it varies from
case to case, and Banibrata simply has to knuckle-down
and read the man pages. But even if this is the case,
some guidelines for how to intepret the man pages
would be the right, helpful response.

To that end, I propose to Banibrata the following
questions:

1 - do you need remote access?
2 - what version of Windows are you running?
3 - do you have access to the Domain Controller?
4 - where do you have your home directory
(directories)?

The answers to these questions will tell you whether
or not you need the '-d' option, etc.

--- Phil Betts [EMAIL PROTECTED] wrote:
 On Wednesday, February 23, 2005 6:23 PM, Banibrata
 Dutta wrote:
  Could anybody explain the following behaviour or
 Cygwin and startx
  in Cygwin...
  
  capture
  
  Your group is currently mkpasswd. This indicates
 that
  the /etc/passwd (and possibly /etc/group) files
 should be rebuilt.
  See the man pages for mkpasswd and mkgroup then,
 for example, run
  mkpasswd -l [-d]  /etc/passwd
  mkgroup  -l [-d]  /etc/group
  Note that the -d switch is necessary for domain
 users.
 
  snip
 
  Could someone please help ?
 
 Did you actually *read* what you posted?
 
 It tells you all you need to know.

[snip]





__ 
Celebrate Yahoo!'s 10th Birthday! 
Yahoo! Netrospective: 100 Moments of the Web 
http://birthday.yahoo.com/netrospective/


bad installation ?

2005-02-23 Thread Banibrata Dutta
Hi,

Could anybody explain the following behaviour or Cygwin and startx
in Cygwin...

capture

Your group is currently mkpasswd. This indicates that
the /etc/passwd (and possibly /etc/group) files should be rebuilt.
See the man pages for mkpasswd and mkgroup then, for example, run
mkpasswd -l [-d]  /etc/passwd
mkgroup  -l [-d]  /etc/group
Note that the -d switch is necessary for domain users.

[EMAIL PROTECTED] ~
$ startx

xinit: No such file or directory (errno 2): no server X in PATH

Use the -- option, or make sure that /usr/X11R6/bin is in your path and 
that X is a program or a link to the right type of server
for your display. Possible server names include:


giving up.
xinit: Connection refused (errno 111): unable to connect to X server
xinit: No such process (errno 3): Server error.

[EMAIL PROTECTED] ~
$

/capture

I had installed Cygwin as Administrator for this machine, and I am
able to successfully run X by doing cygwin terminal when I am logged
in as Administrator, but when I am logged in as dutta the above
behaviour is what I see. Could someone please help ?

thanks  regards,
bdutta

Diamond is a piece of coal that did well under pressure.


Re: bad installation ?

2005-02-23 Thread Alexander Gottwald
On Wed, 23 Feb 2005, Banibrata Dutta wrote:

 I had installed Cygwin as Administrator for this machine, and I am
 able to successfully run X by doing cygwin terminal when I am logged
 in as Administrator, but when I am logged in as dutta the above
 behaviour is what I see. Could someone please help ?

Make sure you have access rights to the folder where cygwin and XWin 
in particular is installed. Also check that there are no stale user mounts
and the global mounts are in place

$ mount
C:\cygwin\bin on /usr/bin type system (binmode)
C:\cygwin\lib on /usr/lib type system (binmode)
...


bye
ago
-- 
 [EMAIL PROTECTED] 
 http://www.gotti.org   ICQ: 126018723


Re: Cygwin-X shortcuts and installation to c:\Program Files\cygwin

2005-02-07 Thread Mike McCollister
This now works with the latest version of run that I downloaded today. 

Thanks for your help.

Mike

   I have installed cygwin, plus Cygwin-X, to c:\progra~1\cygwin. I have
 used
  it
   that way for years.  However, I have noticed that when I try to run an
   X-Windows program using the pre-defined shortcuts in the start menu, such
  as
   xcalc or bitmap, that they will not run.  When I look at the properties
 of
  the
   program I get this error message with run.exe:
  
   Error: Couldn't find Files\cygwin\usr\X11R6\bin\run.exe -p
 /usr/X11R6/bin
   xcalc -display 127.0.0.1:0.0 anywhere. I even looked in the PATH...
  
  Is the entry in the shortcut broken? Or is it the run utility.
  The shortcut should read
  C:\Program Files\cygwin\usr\X11R6\bin\run.exe -p /usr/X11R6/bin xcalc
  -display 127.0.0.1:0.0


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 


Re: Cygwin-X shortcuts and installation to c:\Program Files\cygwin

2005-02-02 Thread Mike McCollister
Alexander,

--- Alexander Gottwald [EMAIL PROTECTED] wrote:

 Mike McCollister wrote:
 
  I have installed cygwin, plus Cygwin-X, to c:\progra~1\cygwin. I have used
 it
  that way for years.  However, I have noticed that when I try to run an
  X-Windows program using the pre-defined shortcuts in the start menu, such
 as
  xcalc or bitmap, that they will not run.  When I look at the properties of
 the
  program I get this error message with run.exe:
 
  Error: Couldn't find Files\cygwin\usr\X11R6\bin\run.exe -p /usr/X11R6/bin
  xcalc -display 127.0.0.1:0.0 anywhere. I even looked in the PATH...
 
 Is the entry in the shortcut broken? Or is it the run utility.
 The shortcut should read
 C:\Program Files\cygwin\usr\X11R6\bin\run.exe -p /usr/X11R6/bin xcalc
 -display 127.0.0.1:0.0

The entry is good. It appears to be the run utility.

Mike


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 


Re: Cygwin-X shortcuts and installation to c:\Program Files\cygwin

2005-02-02 Thread Alexander Gottwald
On Wed, 2 Feb 2005, Mike McCollister wrote:

  Is the entry in the shortcut broken? Or is it the run utility.
  The shortcut should read
  C:\Program Files\cygwin\usr\X11R6\bin\run.exe -p /usr/X11R6/bin xcalc
  -display 127.0.0.1:0.0
 
 The entry is good. It appears to be the run utility.

It's actually the startup code from either windows or cygwin. It strips until 
the first
space and leaves us with the remaining parts :( 

I've prepared new packages for X-startup-scripts which should appear on the 
mirrors 
shortly.

bye
ago
-- 
 [EMAIL PROTECTED] 
 http://www.gotti.org   ICQ: 126018723


Cygwin-X shortcuts and installation to c:\Program Files\cygwin

2005-02-01 Thread Mike McCollister
I have installed cygwin, plus Cygwin-X, to c:\progra~1\cygwin. I have used it
that way for years.  However, I have noticed that when I try to run an
X-Windows program using the pre-defined shortcuts in the start menu, such as
xcalc or bitmap, that they will not run.  When I look at the properties of the
program I get this error message with run.exe:

Error: Couldn't find Files\cygwin\usr\X11R6\bin\run.exe -p /usr/X11R6/bin
xcalc -display 127.0.0.1:0.0 anywhere. I even looked in the PATH...

It appears that the shortcut uses C:\Program Files in it and the space is
causing problems.  I have modified the startxwin.bat and startxwin.sh scripts
so that the proper directory is being used but that did not make a difference. 
I can run these programs from the command line without any problems.  It just
appears that the run command needs to take into account that it might reside in
a directory with spaces in it.

Mike



__ 
Do you Yahoo!? 
Yahoo! Mail - Helps protect you from nasty viruses. 
http://promotions.yahoo.com/new_mail


Re: Cygwin-X shortcuts and installation to c:\Program Files\cygwin

2005-02-01 Thread Alexander Gottwald
Mike McCollister wrote:

 I have installed cygwin, plus Cygwin-X, to c:\progra~1\cygwin. I have used it
 that way for years.  However, I have noticed that when I try to run an
 X-Windows program using the pre-defined shortcuts in the start menu, such as
 xcalc or bitmap, that they will not run.  When I look at the properties of the
 program I get this error message with run.exe:

 Error: Couldn't find Files\cygwin\usr\X11R6\bin\run.exe -p /usr/X11R6/bin
 xcalc -display 127.0.0.1:0.0 anywhere. I even looked in the PATH...

Is the entry in the shortcut broken? Or is it the run utility.
The shortcut should read
C:\Program Files\cygwin\usr\X11R6\bin\run.exe -p /usr/X11R6/bin xcalc 
-display 127.0.0.1:0.0

bye
ago
NP: Terminal Choice - House of Evil
-- 
 [EMAIL PROTECTED]
 http://www.gotti.org   ICQ: 126018723


xorg-x11-devel installation failed

2005-01-11 Thread Le Goualher Georges
Hi,

I've a trouble when installing xorg-x11-devel with
Cygwin Setup 2.457.2.1 on WindowsXP. The installation
stops with the following message:

Can't open
C:\PutThePathHere\libfontconfig-2.2.2-1.tar.bz2.tmp
for writing: No Such file or directory.

In fact even if I try to download the file
(libfontconfig-2.2.2-1.tar.bz2), I can't copy it on my
hard disk as I have the following error message:
filename  too long.

Any idea of what's going wrong?

Thanks,

Georges 







Découvrez le nouveau Yahoo! Mail : 250 Mo d'espace de stockage pour vos mails ! 
Créez votre Yahoo! Mail sur http://fr.mail.yahoo.com/


cygnome 1.4 question about initial installation

2004-12-22 Thread Bharat Sinha

Hi,

I wanted to install cygnome (1.4), and did it directly though cygwin setup.
I have no experience in this, so all I did was get the packages and
installed them directly though setup.

Now to run it, I call startgnome. It opens a XWindow, then I see a beautiful
picture and it starts to load different desktop components like sawfish etc.
Finally it gives the hints window. But after I exit it, I get nothing more
and an hourglass sign shows up (and persists forever). I don't get the gnome
desktop or anything more.

I am not sure if I am supposed to install any of Steven's patches. Can
anyone guide me as to what to do.

I don't want to mess around too much because I was able to get kde to work,
however it is awfully slow and eats up too many resources, I was hoping
gnome would be smoother.

Thanks



Re: cygnome 1.4 question about initial installation

2004-12-22 Thread Gerrit P. Haase
Bharat Sinha wrote:
from the future to us.
Would you please set the correct date at your machine?
Gerrit
--
=^..^=


Re: cygwin/x installation issue

2004-12-13 Thread Alexander Gottwald
On Sun, 12 Dec 2004, ZeruelX of Zinj wrote:

 When installing Cygwin, selecting the xorg-x11-base package automatically 
 selects a bunch of packages that you need.  But somehow it doesn't seem to 
 select the X-startup-scripts package that is also listed as required.  
 Without this, you can't start X easily and it is very frustrating to try to 
 install Cygwin/X and have it not work until you realize that there is one 
 little required package that you didn't install because it wasn't selected 
 automatically.
 
 Can you fix it?

Done. (could take some time until it shows up on the mirrors)

bye
ago
-- 
 [EMAIL PROTECTED] 
 http://www.gotti.org   ICQ: 126018723


cygwin/x installation issue

2004-12-12 Thread ZeruelX of Zinj
When installing Cygwin, selecting the xorg-x11-base package automatically 
selects a bunch of packages that you need.  But somehow it doesn't seem to 
select the X-startup-scripts package that is also listed as required.  
Without this, you can't start X easily and it is very frustrating to try to 
install Cygwin/X and have it not work until you realize that there is one 
little required package that you didn't install because it wasn't selected 
automatically.

Can you fix it?
Thanks,



installation of cygwin

2004-12-07 Thread nathalie . rittemard

Hi,

I have a question on the installation of cygwin.

The installation stopped on :
Installing
xorg-x11-f100-6.8.1.0-3
/etc/postinstall/xorg-x11-f100.sh
with 90% of the cygwin setup done,
and nothing more.

Could you help me?
Thanks a lot,
Nathalie Rittemard



Re: installation of cygwin

2004-12-07 Thread Gerrit P. Haase
[EMAIL PROTECTED] wrote:
Hi,
I have a question on the installation of cygwin.
The installation stopped on :
Installing
xorg-x11-f100-6.8.1.0-3
/etc/postinstall/xorg-x11-f100.sh
with 90% of the cygwin setup done,
and nothing more.
Could you help me?
Please don't install 'all at once' until setup is fixed.  Install in
two steps, e.g.
Step 1: all but X11
Step 2: X11
Gerrit
--
=^..^=


Re: [Fwd: Re: xorg installation fails, 99% complete only]

2004-11-19 Thread Christopher Faylor
On Sat, Nov 13, 2004 at 04:19:50PM +0100, bruno patin wrote:
(setup.log.full) xac

I don't know if anyone is following the discussion in the cygwin-apps
mailing list but it looks like a few setup problems have been discovered
and a new setup.exe may be imminent.  The problem where setup.exe doesn't
close handles is going to be fixed.

FYI,
cgf


Re: [Fwd: Re: xorg installation fails, 99% complete only]

2004-11-19 Thread bruno patin
Christopher Faylor wrote:
On Sat, Nov 13, 2004 at 04:19:50PM +0100, bruno patin wrote:
 

(setup.log.full) xac
   

I don't know if anyone is following the discussion in the cygwin-apps
mailing list but it looks like a few setup problems have been discovered
and a new setup.exe may be imminent.  The problem where setup.exe doesn't
close handles is going to be fixed.
FYI,
cgf

 

Good evening,
will you need me to run new tests ?
bruno



Re: [Fwd: Re: xorg installation fails, 99% complete only]

2004-11-19 Thread Christopher Faylor
On Fri, Nov 19, 2004 at 09:50:34PM +0100, bruno patin wrote:
Christopher Faylor wrote:
On Sat, Nov 13, 2004 at 04:19:50PM +0100, bruno patin wrote:
(setup.log.full) xac

I don't know if anyone is following the discussion in the cygwin-apps
mailing list but it looks like a few setup problems have been discovered
and a new setup.exe may be imminent.  The problem where setup.exe doesn't
close handles is going to be fixed.

Good evening,

will you need me to run new tests ?

I don't know why every message I send on this subject requires such
intense clarification.

What difference does it make if you are or are not needed to run new
tests?  Are you going to have to go through a 24 hour fast before you
could possibly think about doing tests?

Why don't you just relax and see what happens?  If someone wants tests
they will ask for them.  If you don't want to provide them, then don't
provide them.  If you do want to provide them, then the person who's
doing the work (not me, as I've previously stated I'm not a setup
developer) will probably gratefully accept them.

cgf


Re: [Fwd: Re: xorg installation fails, 99% complete only]

2004-11-19 Thread Igor Furlan
--- Christopher Faylor wrote:

 
 I don't know why every message I send on this
 subject requires such
 intense clarification.

Bruno is showing willingness to help ...  That's all



 
 What difference does it make if you are or are not
 needed to run new
 tests?  Are you going to have to go through a 24
 hour fast before you
 could possibly think about doing tests?
 
 Why don't you just relax and see what happens?  If
 someone wants tests
 they will ask for them.  If you don't want to
 provide them, then don't
 provide them.  If you do want to provide them, then
 the person who's
 doing the work (not me, as I've previously stated
 I'm not a setup
 developer) will probably gratefully accept them.
 
 cgcgf 


Re: [Fwd: Re: xorg installation fails, 99% complete only]

2004-11-19 Thread Christopher Faylor
On Fri, Nov 19, 2004 at 08:34:40PM -0800, Igor Furlan wrote:
--- Christopher Faylor wrote:
I don't know why every message I send on this subject requires such
intense clarification.

Bruno is showing willingness to help ...  That's all

I *understand* that.  I appreciate that.  I apologize for the tone
of my message.


Re: [Fwd: Re: xorg installation fails, 99% complete only]

2004-11-19 Thread bruno patin
Christopher Faylor wrote:
On Fri, Nov 19, 2004 at 08:34:40PM -0800, Igor Furlan wrote:
 

--- Christopher Faylor wrote:
   

I don't know why every message I send on this subject requires such
intense clarification.
 

Bruno is showing willingness to help ...  That's all
   

I *understand* that.  I appreciate that.  I apologize for the tone
of my message.

 

no offence received.
Bruno


Re: manual installation of the x11 packages

2004-11-15 Thread Daniel Newhouse

--- Bobby McNulty [EMAIL PROTECTED] wrote:


 
 I installed cygwin first, and then xorg. 

Alright, Installed all packages with the Install
setting.  If I want to now add the X11 packages
without disturbing the other packages should I have
the X11 packages set to Install and the others set
to Reinstall?

I must install all of the packages because I once
tried installing X11 with Install after installing
everything else with Default and I did not have ssh functionality.



__ 
Do you Yahoo!? 
Check out the new Yahoo! Front Page. 
www.yahoo.com 
 



Re: xorg installation fails, 99% complete only

2004-11-14 Thread Roboco Sanchez
Christopher Faylor cgf-no-personal-reply-please at cygwin.com writes:

 
 On Tue, Nov 09, 2004 at 04:31:53PM +, Roboco Sanchez wrote:
 The setup.exe should do the installation job properly.
 [snip]
 As for what our two develpers said, I do respect them for what they do
 for us but I wouldn't tell my users to shut up like that.  Being a
 volunteer doing things for people for free doesn't give you the right
 to do that.
 
 Did you *read* what Bobby said about Alexander?  Why didn't you jump to
 Alexander's defense if you respect him so much?
 
 Or does being a user of free software does give someone the right to
 insult a developer?  That seems pretty one-sided to me.
 

Yes, I did read what Bobby said. His post wasn't meant for Alexander. He was 
responding to Daniel who previously just wanted to add something to the 
discussion. From my view it was meant for the users and for the Cygwin team 
or 
the management not a particular developer. Like I said I think what Bobby 
said 
was perfectly all right and reasonable. I was also adding something the the 
discussion just like Daniel did. I saw what he added as useful to both users 
and 
developers. To users it indicated that there was some problem with the 
installation so everyone should be aware of. To developers this problem should 
be investigated and fixed. Also to developers he referred to a previous 
developer who he thought did a better job. Now I can understand most people 
would be upset if anyone tell you they think someone did or can do a better job 
but if I was a developer here I would just listen to what Bobby said, be 
open-minded, and think, because he might be right. I have been installing/using 
Cygwin for years and this is the first time I have a problem. I thought Bobby 
might be thinking the same thing before suggested that.

 You need the users and the users need you.
 
 You somehow think that there is a flow of obligation going from me to
 you?  You're very wrong.  You are benefitting from my efforts and
 Alexander's efforts.  I am not benefitting from your efforts in any way.
 
 That is not true of some users here who are capable of sending bug
 reports or providing constructive feedback without pontificating.  Since
 I care about cygwin, I do appreciate when people can provide feedback
 without whining and without insulting the people who have donated their
 time to help them.
 
 You have no rights here.  Sorry.
 

I was talking about users and developers in general. I didn't say that you 
needed me. I said that you needed the users. But since you have shown your 
typical developer attitude I should make this point clearer. Every user of your 
free software has contributed somehow to your project. They don't have to be 
here to show that they are contributing. Just if they download and install and 
use your software is enough. Why? These people although they don't come here to 
praise you or give their supports to you when they don't find bugs/problems in 
your software they are still helping you testing the software for you. Their 
absence here tells that the software works for them althouth some just don't 
bother to come here no matter they found a problem or they have fixed it 
themselves or maybe they are in some other places like IRC channels, forums, 
usenet, etc. As for those who come posting questions, they may not be capable 
of sending bug reports or providing constructive feedback without 
pontificating 
in your eyes but they are making contribution to your project. Not all of them 
really need help. Some are just reporting bugs/problems so that they can be 
fixed and everyone can be happy both users and developers. I was in this type 
of 
users when I was confirming this problem. You said that I'm benefitting from 
your efforts and Alexander's efforts, that is ture. But when you said you are 
not benefitting from my efforts in any way, that is not true. I spent time and 
efforts to download files and test the installation and I spent time to report 
that here. Should I have to go through all this had the setup.exe worked 
properly? No. I didn't really need those X components from Cygwin I only needed 
the C compiler and I usually do install everything when I install any 
software. I found the problem so I came here and found other users with the 
same 
problem then I did more tests in order to confirm the problem here. I don't 
mind 
you are not appreciating what I did but I want you not to forget that this type 
of users does exist and you will appreciate their efforts or not is up to you 
but you should never underestimate their efforts. They may well call that an 
insult to them.

 It is simple, you either do it your best or you don't do it at all.
 
 Sorry, but that is simple-minded pap.  How can you judge what someone's
 best is?  So, if I can't give cygwin 100% of my effort, I should just
 abandon it?  Ridiculous.
 

Everyone knows what their best is. No one is judging. Best doesn't mean 100% 
effort. No, you

Re: xorg installation fails, 99% complete only

2004-11-13 Thread bruno patin
cygcheck.out.before

Cygwin Configuration Diagnostics
Current System Time: Sat Nov 13 10:45:39 2004

Windows XP Home Edition Ver 5.1 Build 2600 Service Pack 2

Path:   c:\program files\imagemagick-5.5.7-q16
C:\WINDOWS\system32
C:\WINDOWS
C:\WINDOWS\System32\Wbem
C:\Program Files\ATI Technologies\ATI Control Panel

Output from C:\cygwin\bin\id.exe (nontsec)
UID: 400(bruno)GID: 401(mkpasswd)
401(mkpasswd)

Output from C:\cygwin\bin\id.exe (ntsec)
UID: 400(bruno)GID: 401(mkpasswd)
401(mkpasswd)

SysDir: C:\WINDOWS\system32
WinDir: C:\WINDOWS

Path = `c:\program 
files\imagemagick-5.5.7-q16;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program
 Files\ATI Technologies\ATI Control Panel'

ALLUSERSPROFILE = `C:\Documents and Settings\All Users'
APPDATA = `C:\Documents and Settings\bruno\Application Data'
CommonProgramFiles = `C:\Program Files\Fichiers communs'
COMPUTERNAME = `BRUNOFONTENAY'
ComSpec = `C:\WINDOWS\system32\cmd.exe'
FP_NO_HOST_CHECK = `NO'
HOMEDRIVE = `C:'
HOMEPATH = `\Documents and Settings\bruno'
LOGONSERVER = `\\BRUNOFONTENAY'
NUMBER_OF_PROCESSORS = `1'
OS = `Windows_NT'
PATHEXT = `.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH'
PROCESSOR_ARCHITECTURE = `x86'
PROCESSOR_IDENTIFIER = `x86 Family 6 Model 13 Stepping 6, GenuineIntel'
PROCESSOR_LEVEL = `6'
PROCESSOR_REVISION = `0d06'
ProgramFiles = `C:\Program Files'
PROMPT = `$P$G'
SESSIONNAME = `Console'
SystemDrive = `C:'
SystemRoot = `C:\WINDOWS'
TEMP = `C:\TEMP'
TMP = `/tmp'
USERDOMAIN = `BRUNOFONTENAY'
USERNAME = `bruno'
USERPROFILE = `C:\Documents and Settings\bruno'
windir = `C:\WINDOWS'
POSIXLY_CORRECT = `1'

HKEY_CURRENT_USER\Software\Cygnus Solutions
HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin
HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin\mounts v2
  (default) = `/cygdrive'
  cygdrive flags = 0x0022
HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin\Program Options
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2
  (default) = `/cygdrive'
  cygdrive flags = 0x0022
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/
  (default) = `C:\cygwin'
  flags = 0x000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/usr/bin
  (default) = `C:\cygwin/bin'
  flags = 0x000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/usr/lib
  (default) = `C:\cygwin/lib'
  flags = 0x000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\Program Options

c:  hd  NTFS 57231Mb  20% CP CS UN PA FC 
d:  cd  UDF1.024482Mb 100% CPUN   041010_2211
y:  net NTFS 57857Mb  32% CP CSPAbruno
z:  net NTFS 57857Mb  32% CP CSPACommun

.  /cygdrive  userbinmode,cygdrive
C:\cygwin  /  system  binmode
C:\cygwin/bin  /usr/bin   system  binmode
C:\cygwin/lib  /usr/lib   system  binmode
.  /cygdrive  system  binmode,cygdrive

Found: .\awk.exe
Found: .\bash.exe
Found: .\cat.exe
Found: .\cp.exe
Found: .\cpp.exe
Found: .\find.exe
Found: .\gcc.exe
Found: .\gdb.exe
Found: .\grep.exe
Found: .\ld.exe
Found: .\ls.exe
Found: .\make.exe
Found: .\mv.exe
Found: .\rm.exe
Found: .\sed.exe
Found: .\sh.exe
Found: .\tar.exe

   91k 2004/11/01 .\cygapr-0-0.dll - os=4.0 img=1.0 sys=4.0
  cygapr-0-0.dll v0.0 ts=2004/11/1 17:45
   67k 2004/11/01 .\cygaprutil-0-0.dll - os=4.0 img=1.0 sys=4.0
  cygaprutil-0-0.dll v0.0 ts=2004/11/1 17:48
   77k 2004/06/04 .\cygart_lgpl_2-2.dll - os=4.0 img=1.0 sys=4.0
  cygart_lgpl_2-2.dll v0.0 ts=2004/6/4 12:20
  802k 2003/09/15 .\cygaspell-15.dll - os=4.0 img=1.0 sys=4.0
  cygaspell-15.dll v0.0 ts=2003/9/15 14:32
  123k 2004/09/29 .\cygatk-1.0-0.dll - os=4.0 img=1.0 sys=4.0
  cygatk-1.0-0.dll v0.0 ts=2004/9/30 1:16
  145k 2004/09/02 .\cygaudiofile-0.dll - os=4.0 img=1.0 sys=4.0
  cygaudiofile-0.dll v0.0 ts=2004/9/2 5:38
  336k 2004/10/27 .\cygbonobo-2-0.dll - os=4.0 img=1.0 sys=4.0
  cygbonobo-2-0.dll v0.0 ts=2004/10/27 9:43
   72k 2004/10/27 .\cygbonobo-activation-4.dll - os=4.0 img=1.0 sys=4.0
  cygbonobo-activation-4.dll v0.0 ts=2004/10/27 1:19
  425k 2004/10/29 .\cygbonoboui-2-0.dll - os=4.0 img=1.0 sys=4.0
  cygbonoboui-2-0.dll v0.0 ts=2004/10/29 1:12
   55k 2004/09/14 .\cygbz2-1.dll - os=4.0 img=1.0 sys=4.0
  cygbz2-1.dll v0.0 ts=2004/9/14 6:16
   54k 2002/01/27 .\cygbz21.0.dll - os=4.0 img=1.0 sys=4.0
  cygbz21.0.dll v0.0 ts=2002/1/27 2:07
   18k 2004/07/06 .\cygcharset-1.dll - os=4.0 img=1.0 sys=4.0
  cygcharset-1.dll v0.0 ts=2004/7/6 20:09
  227k 2004/10/24 .\cygclamav-1.dll - os=4.0 img=1.0 sys=4.0
  cygclamav-1.dll v0.0 ts=2004/10/24 17:58
  529k 2004/06/27 .\cygcppunit-1-9-14.dll - os=4.0 img=1.0 sys=4.0
  

[Fwd: Re: xorg installation fails, 99% complete only]

2004-11-13 Thread bruno patin

---BeginMessage---
cygcheck.out.after1

Cygwin Configuration Diagnostics
Current System Time: Sat Nov 13 10:54:59 2004

Windows XP Home Edition Ver 5.1 Build 2600 Service Pack 2

Path:   c:\program files\imagemagick-5.5.7-q16
C:\WINDOWS\system32
C:\WINDOWS
C:\WINDOWS\System32\Wbem
C:\Program Files\ATI Technologies\ATI Control Panel

Output from C:\cygwin\bin\id.exe (nontsec)
UID: 400(bruno)GID: 401(mkpasswd)
401(mkpasswd)

Output from C:\cygwin\bin\id.exe (ntsec)
UID: 400(bruno)GID: 401(mkpasswd)
401(mkpasswd)

SysDir: C:\WINDOWS\system32
WinDir: C:\WINDOWS

Path = `c:\program 
files\imagemagick-5.5.7-q16;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program
 Files\ATI Technologies\ATI Control Panel'

ALLUSERSPROFILE = `C:\Documents and Settings\All Users'
APPDATA = `C:\Documents and Settings\bruno\Application Data'
CommonProgramFiles = `C:\Program Files\Fichiers communs'
COMPUTERNAME = `BRUNOFONTENAY'
ComSpec = `C:\WINDOWS\system32\cmd.exe'
FP_NO_HOST_CHECK = `NO'
HOMEDRIVE = `C:'
HOMEPATH = `\Documents and Settings\bruno'
LOGONSERVER = `\\BRUNOFONTENAY'
NUMBER_OF_PROCESSORS = `1'
OS = `Windows_NT'
PATHEXT = `.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH'
PROCESSOR_ARCHITECTURE = `x86'
PROCESSOR_IDENTIFIER = `x86 Family 6 Model 13 Stepping 6, GenuineIntel'
PROCESSOR_LEVEL = `6'
PROCESSOR_REVISION = `0d06'
ProgramFiles = `C:\Program Files'
PROMPT = `$P$G'
SESSIONNAME = `Console'
SystemDrive = `C:'
SystemRoot = `C:\WINDOWS'
TEMP = `C:\TEMP'
TMP = `/tmp'
USERDOMAIN = `BRUNOFONTENAY'
USERNAME = `bruno'
USERPROFILE = `C:\Documents and Settings\bruno'
windir = `C:\WINDOWS'
POSIXLY_CORRECT = `1'

HKEY_CURRENT_USER\Software\Cygnus Solutions
HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin
HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin\mounts v2
  (default) = `/cygdrive'
  cygdrive flags = 0x0022
HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin\Program Options
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2
  (default) = `/cygdrive'
  cygdrive flags = 0x0022
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/
  (default) = `C:\cygwin'
  flags = 0x000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/usr/bin
  (default) = `C:\cygwin/bin'
  flags = 0x000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/usr/lib
  (default) = `C:\cygwin/lib'
  flags = 0x000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\Program Options

c:  hd  NTFS 57231Mb  20% CP CS UN PA FC 
d:  cd  UDF1.024482Mb 100% CPUN   041010_2211
y:  net NTFS 57857Mb  32% CP CSPAbruno
z:  net NTFS 57857Mb  32% CP CSPACommun

.  /cygdrive  userbinmode,cygdrive
C:\cygwin  /  system  binmode
C:\cygwin/bin  /usr/bin   system  binmode
C:\cygwin/lib  /usr/lib   system  binmode
.  /cygdrive  system  binmode,cygdrive

Found: .\awk.exe
Found: .\bash.exe
Found: .\cat.exe
Found: .\cp.exe
Found: .\cpp.exe
Found: .\find.exe
Found: .\gcc.exe
Found: .\gdb.exe
Found: .\grep.exe
Found: .\ld.exe
Found: .\ls.exe
Found: .\make.exe
Found: .\mv.exe
Found: .\rm.exe
Found: .\sed.exe
Found: .\sh.exe
Found: .\tar.exe

   91k 2004/11/01 .\cygapr-0-0.dll - os=4.0 img=1.0 sys=4.0
  cygapr-0-0.dll v0.0 ts=2004/11/1 17:45
   67k 2004/11/01 .\cygaprutil-0-0.dll - os=4.0 img=1.0 sys=4.0
  cygaprutil-0-0.dll v0.0 ts=2004/11/1 17:48
   77k 2004/06/04 .\cygart_lgpl_2-2.dll - os=4.0 img=1.0 sys=4.0
  cygart_lgpl_2-2.dll v0.0 ts=2004/6/4 12:20
  802k 2003/09/15 .\cygaspell-15.dll - os=4.0 img=1.0 sys=4.0
  cygaspell-15.dll v0.0 ts=2003/9/15 14:32
  123k 2004/09/29 .\cygatk-1.0-0.dll - os=4.0 img=1.0 sys=4.0
  cygatk-1.0-0.dll v0.0 ts=2004/9/30 1:16
  145k 2004/09/02 .\cygaudiofile-0.dll - os=4.0 img=1.0 sys=4.0
  cygaudiofile-0.dll v0.0 ts=2004/9/2 5:38
  336k 2004/10/27 .\cygbonobo-2-0.dll - os=4.0 img=1.0 sys=4.0
  cygbonobo-2-0.dll v0.0 ts=2004/10/27 9:43
   72k 2004/10/27 .\cygbonobo-activation-4.dll - os=4.0 img=1.0 sys=4.0
  cygbonobo-activation-4.dll v0.0 ts=2004/10/27 1:19
  425k 2004/10/29 .\cygbonoboui-2-0.dll - os=4.0 img=1.0 sys=4.0
  cygbonoboui-2-0.dll v0.0 ts=2004/10/29 1:12
   55k 2004/09/14 .\cygbz2-1.dll - os=4.0 img=1.0 sys=4.0
  cygbz2-1.dll v0.0 ts=2004/9/14 6:16
   54k 2002/01/27 .\cygbz21.0.dll - os=4.0 img=1.0 sys=4.0
  cygbz21.0.dll v0.0 ts=2002/1/27 2:07
   18k 2004/07/06 .\cygcharset-1.dll - os=4.0 img=1.0 sys=4.0
  cygcharset-1.dll v0.0 ts=2004/7/6 20:09
  227k 2004/10/24 .\cygclamav-1.dll - os=4.0 img=1.0 sys=4.0
  cygclamav-1.dll v0.0 ts=2004/10/24 17:58
  529k 2004/06/27 .\cygcppunit-1-9-14.dll - os=4.0 img=1.0 sys=4.0
 

[Fwd: Re: xorg installation fails, 99% complete only]

2004-11-13 Thread bruno patin

---BeginMessage---
cygcheck.out.after2

Cygwin Configuration Diagnostics
Current System Time: Sat Nov 13 10:59:42 2004

Windows XP Home Edition Ver 5.1 Build 2600 Service Pack 2

Path:   c:\program files\imagemagick-5.5.7-q16
C:\WINDOWS\system32
C:\WINDOWS
C:\WINDOWS\System32\Wbem
C:\Program Files\ATI Technologies\ATI Control Panel

Output from C:\cygwin\bin\id.exe (nontsec)
UID: 400(bruno)GID: 401(mkpasswd)
401(mkpasswd)

Output from C:\cygwin\bin\id.exe (ntsec)
UID: 400(bruno)GID: 401(mkpasswd)
401(mkpasswd)

SysDir: C:\WINDOWS\system32
WinDir: C:\WINDOWS

Path = `c:\program 
files\imagemagick-5.5.7-q16;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program
 Files\ATI Technologies\ATI Control Panel'

ALLUSERSPROFILE = `C:\Documents and Settings\All Users'
APPDATA = `C:\Documents and Settings\bruno\Application Data'
CommonProgramFiles = `C:\Program Files\Fichiers communs'
COMPUTERNAME = `BRUNOFONTENAY'
ComSpec = `C:\WINDOWS\system32\cmd.exe'
FP_NO_HOST_CHECK = `NO'
HOMEDRIVE = `C:'
HOMEPATH = `\Documents and Settings\bruno'
LOGONSERVER = `\\BRUNOFONTENAY'
NUMBER_OF_PROCESSORS = `1'
OS = `Windows_NT'
PATHEXT = `.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH'
PROCESSOR_ARCHITECTURE = `x86'
PROCESSOR_IDENTIFIER = `x86 Family 6 Model 13 Stepping 6, GenuineIntel'
PROCESSOR_LEVEL = `6'
PROCESSOR_REVISION = `0d06'
ProgramFiles = `C:\Program Files'
PROMPT = `$P$G'
SESSIONNAME = `Console'
SystemDrive = `C:'
SystemRoot = `C:\WINDOWS'
TEMP = `C:\TEMP'
TMP = `/tmp'
USERDOMAIN = `BRUNOFONTENAY'
USERNAME = `bruno'
USERPROFILE = `C:\Documents and Settings\bruno'
windir = `C:\WINDOWS'
POSIXLY_CORRECT = `1'

HKEY_CURRENT_USER\Software\Cygnus Solutions
HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin
HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin\mounts v2
  (default) = `/cygdrive'
  cygdrive flags = 0x0022
HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin\Program Options
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2
  (default) = `/cygdrive'
  cygdrive flags = 0x0022
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/
  (default) = `C:\cygwin'
  flags = 0x000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/usr/bin
  (default) = `C:\cygwin/bin'
  flags = 0x000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/usr/lib
  (default) = `C:\cygwin/lib'
  flags = 0x000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\Program Options

c:  hd  NTFS 57231Mb  20% CP CS UN PA FC 
d:  cd  UDF1.024482Mb 100% CPUN   041010_2211
y:  net NTFS 57857Mb  32% CP CSPAbruno
z:  net NTFS 57857Mb  32% CP CSPACommun

.  /cygdrive  userbinmode,cygdrive
C:\cygwin  /  system  binmode
C:\cygwin/bin  /usr/bin   system  binmode
C:\cygwin/lib  /usr/lib   system  binmode
.  /cygdrive  system  binmode,cygdrive

Found: .\awk.exe
Found: .\bash.exe
Found: .\cat.exe
Found: .\cp.exe
Found: .\cpp.exe
Found: .\find.exe
Found: .\gcc.exe
Found: .\gdb.exe
Found: .\grep.exe
Found: .\ld.exe
Found: .\ls.exe
Found: .\make.exe
Found: .\mv.exe
Found: .\rm.exe
Found: .\sed.exe
Found: .\sh.exe
Found: .\tar.exe

   91k 2004/11/01 .\cygapr-0-0.dll - os=4.0 img=1.0 sys=4.0
  cygapr-0-0.dll v0.0 ts=2004/11/1 17:45
   67k 2004/11/01 .\cygaprutil-0-0.dll - os=4.0 img=1.0 sys=4.0
  cygaprutil-0-0.dll v0.0 ts=2004/11/1 17:48
   77k 2004/06/04 .\cygart_lgpl_2-2.dll - os=4.0 img=1.0 sys=4.0
  cygart_lgpl_2-2.dll v0.0 ts=2004/6/4 12:20
  802k 2003/09/15 .\cygaspell-15.dll - os=4.0 img=1.0 sys=4.0
  cygaspell-15.dll v0.0 ts=2003/9/15 14:32
  123k 2004/09/29 .\cygatk-1.0-0.dll - os=4.0 img=1.0 sys=4.0
  cygatk-1.0-0.dll v0.0 ts=2004/9/30 1:16
  145k 2004/09/02 .\cygaudiofile-0.dll - os=4.0 img=1.0 sys=4.0
  cygaudiofile-0.dll v0.0 ts=2004/9/2 5:38
  336k 2004/10/27 .\cygbonobo-2-0.dll - os=4.0 img=1.0 sys=4.0
  cygbonobo-2-0.dll v0.0 ts=2004/10/27 9:43
   72k 2004/10/27 .\cygbonobo-activation-4.dll - os=4.0 img=1.0 sys=4.0
  cygbonobo-activation-4.dll v0.0 ts=2004/10/27 1:19
  425k 2004/10/29 .\cygbonoboui-2-0.dll - os=4.0 img=1.0 sys=4.0
  cygbonoboui-2-0.dll v0.0 ts=2004/10/29 1:12
   55k 2004/09/14 .\cygbz2-1.dll - os=4.0 img=1.0 sys=4.0
  cygbz2-1.dll v0.0 ts=2004/9/14 6:16
   54k 2002/01/27 .\cygbz21.0.dll - os=4.0 img=1.0 sys=4.0
  cygbz21.0.dll v0.0 ts=2002/1/27 2:07
   18k 2004/07/06 .\cygcharset-1.dll - os=4.0 img=1.0 sys=4.0
  cygcharset-1.dll v0.0 ts=2004/7/6 20:09
  227k 2004/10/24 .\cygclamav-1.dll - os=4.0 img=1.0 sys=4.0
  cygclamav-1.dll v0.0 ts=2004/10/24 17:58
  529k 2004/06/27 .\cygcppunit-1-9-14.dll - os=4.0 img=1.0 sys=4.0
 

Re: xorg installation fails, 99% complete only

2004-11-13 Thread bruno patin
(second time setup.log.full) xab


Re: xorg installation fails, 99% complete only

2004-11-13 Thread bruno patin
(second time setup.log.full) xae


xae
Description: Binary data


manual installation of the x11 packages

2004-11-13 Thread Daniel Newhouse
Is there a way to install the x11 packages without
using setup.exe?  Like a script file?



__ 
Do you Yahoo!? 
Check out the new Yahoo! Front Page. 
www.yahoo.com 
 



Re: manual installation of the x11 packages

2004-11-13 Thread Bobby McNulty
Daniel Newhouse wrote:
Is there a way to install the x11 packages without
using setup.exe?  Like a script file?
		
 

David, What you mentioned on the cygwin mailing, the dll is the xorg dll.
Go ahead and install xorg now. It will be OK. Trust me.
I just installed cygwin and xorg this morning, and its been working ever 
since.
I installed cygwin first, and then xorg. I download both from the net, 
simply installing from the net.
I have ADSL, and a very fast connection (3.00 Mb per second, although 
the ftp site I use only sends at 300 Kb per second.)
The net is slow to me, because of the speed of my net connection.
Its not me. I have a connection that is made for playing games, though i 
use it to download GPL software and other software.
Another thing I did yesterday, was installing cygwin and xorg 
seperately, from a local directory, and that worked too.
Its installing both at the same time that causes problems.
Its not my software. Wednesday, I tried barebones with nothing but 
Office 2000. Same problems. I was not running Zone Alarm or Defender Pro 
Antispy. So the problem is setup.
The error I got yesterday was that it was opening too many files (setup) 
and not closing them.
Too many files open. I sent in my cygcheck.out. And reset the computer 
this morning.
Had to reload all my software (not much, just my DVD writer, PVR, and 
some other software)
I installed cygwin in two stages and started work on compiling GCC 3.4.3 
and Timidity.
I plan on comipiling a cygwin only X based timidity. I'll put it on my 
website.
I'm counting on the user to get his/her own soundfount because my upload 
limit at Yahoo is 5  megabytes, and the smallest soundfont I found is 8 mb.
There are plenty of soundfonts.
The X of timiidty will look great under Xorg.
Its going to use Xaw3d.
Yes, I found a use for the widgets. I've built the X version of Timidity 
before.
Won't take long to compile it.




Re: xorg installation fails, 99% complete only

2004-11-11 Thread bruno patin
the third


setupfull3.txt.bz2
Description: Binary data


Re: xorg installation fails, 99% complete only

2004-11-11 Thread bruno patin
/11/11 10:48:01 running: C:\cygwin\bin\sh.exe -c /etc/postinstall/tcsh.sh
2004/11/11 10:48:01 running: C:\cygwin\bin\sh.exe -c 
/etc/postinstall/terminfo.sh
2004/11/11 10:48:01 running: C:\cygwin\bin\sh.exe -c /etc/postinstall/tidy.sh
2004/11/11 10:48:01 running: C:\cygwin\bin\sh.exe -c 
/etc/postinstall/update-info-dir.sh
2004/11/11 10:48:13 running: C:\cygwin\bin\sh.exe -c 
/etc/postinstall/uw-imap-imapd.sh
2004/11/11 10:48:14 running: C:\cygwin\bin\sh.exe -c /etc/postinstall/wget.sh
2004/11/11 10:48:14 running: C:\cygwin\bin\sh.exe -c 
/etc/postinstall/X-start-menu-icons.sh
2004/11/11 10:48:21 running: C:\cygwin\bin\sh.exe -c /etc/postinstall/x3270.sh
2004/11/11 10:48:32 running: C:\cygwin\bin\sh.exe -c 
/etc/postinstall/xerces-c-devel.sh
2004/11/11 10:48:32 running: C:\cygwin\bin\sh.exe -c /etc/postinstall/xfig.sh
2004/11/11 10:48:33 running: C:\cygwin\bin\sh.exe -c /etc/postinstall/xinetd.sh
2004/11/11 10:48:35 running: C:\cygwin\bin\sh.exe -c 
/etc/postinstall/xorg-x11-devel.sh
2004/11/11 10:48:35 running: C:\cygwin\bin\sh.exe -c 
/etc/postinstall/xorg-x11-f100.sh
2004/11/11 10:49:58 running: C:\cygwin\bin\sh.exe -c 
/etc/postinstall/xorg-x11-fcyr.sh
2004/11/11 10:50:00 running: C:\cygwin\bin\sh.exe -c 
/etc/postinstall/xorg-x11-fenc.sh
2004/11/11 10:50:01 running: C:\cygwin\bin\sh.exe -c 
/etc/postinstall/xorg-x11-fnts.sh
2004/11/11 10:50:02 running: C:\cygwin\bin\sh.exe -c 
/etc/postinstall/xorg-x11-fscl.sh
2004/11/11 10:50:03 running: C:\cygwin\bin\sh.exe -c 
/etc/postinstall/xorg-x11-libs-data.sh
2004/11/11 10:50:04 running: C:\cygwin\bin\sh.exe -c 
/etc/postinstall/xorg-x11-xwin.sh
2004/11/11 10:50:04 running: C:\cygwin\bin\sh.exe -c /etc/postinstall/xpdf.sh
2004/11/11 10:50:18 mbox note: Installation Complete
2004/11/11 10:50:19 Ending cygwin install


RE: xorg installation fails, 99% complete only

2004-11-11 Thread Bobby McNulty
Freezing back under SP2.
Here is the ps and cygcheck.


cygcheck.out
Description: Binary data


ps.out
Description: Binary data


  1   2   3   >