Re: The rxvt.1 manpage of the rxvt-2.7.10-4 package

2004-05-16 Thread Jason Pearce

An easy way of deleting the YODL garbage is to use the VIM editor.
The following VIM script (call it patch.vim) does the job:
Q
%s/^\.YODLTAGSTART\./\.YYODLTAGSTART\./
%s/\.YODLTAGSTART\./\r\.YODLTAGSTART\./g
%s/\.YODLTAGSTART\. roffcmd //
%s/\.YYODLTAGSTART\. roffcmd //
%s/\.YODLTAGEND\.//
%s/\n\.YYODLTAGSTART\..*//
1
/\.TH
1,.-1d
wq
Then call VIM to modify the wrong rxvt.1
$ vim -s patch.vim -- rxvt.1
bye.
Rodrigo Medina
Great!
For other non-vim users (who don't even install it) here is the sed 
script equivilent

s/^\.YODLTAGSTART\./\.YYODLTAGSTART\./
s/\.YODLTAGSTART\./\r\.YODLTAGSTART\./g
s/\.YODLTAGSTART\. roffcmd //
s/\.YYODLTAGSTART\. roffcmd //
s/\.YODLTAGEND\.//
s/\n\.YYODLTAGSTART\..*//
call it patch.sed.
$ cp /usr/man/man1/rxvt.1 /tmp/
$ sed -f patch.sed /tmp/rxvt.1 > /usr/man/man1/rxvt.1
Jason
--
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: CYGWIN & CDRECORD

2004-05-16 Thread Hannu E K Nevalainen
> From: [EMAIL PROTECTED]
> Sent: Friday, May 14, 2004 4:37 PM

> I'm really in trouble because I'm trying to use Cdrecord under
> Cygwin enviroment.
>
> I have succefully installed Cdrecord but I'm unable to find the
> CDRW device.
> How I can do to install the CD recorder in Cygwin?

FWIW; If windows knows about your CDR, it should be visible in cygwin too -
to some extent at least.

I think this will get you started;

$ cdrecord -scanbus

It should show a list of all(?) IDE/SCSI drives...
The cdrecord doc/readme/howto (whichever it was) should give some hints.

Might be that reading the cygwin FAQ WRT device handling will help some.
(It was some time ago that I played with this...)

/Hannu E K Nevalainen, B.Sc. EE - 59+16.37'N, 17+12.60'E

** on a mailing list; please keep replies on that particular list **

-- printf("LocalTime: UTC+%02d\n",(DST)? 2:1); --
--END OF MESSAGE--


--
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: cp breaking weirdly when trying to copy an executable without specifying the .exe extension

2004-05-16 Thread Hannu E K Nevalainen
> From: Max Bowsher
> Sent: Friday, May 14, 2004 11:38 PM

> $ touch foo.exe
> $ cp foo bar
> cp: `foo' and `bar' are the same file
>
> The above error message is rather confusing.
>
> Is Cygwin's cp supposed to transparently permit the omission of
> the .exe extension, or am I misremembering?

 cp  and  mv  comes out of the same box (same source file) and both seems to
have problems with this. I had a look some time ago but came to no
conclusion, primarily due to limited time to begin with.

 This has been on the list several times before, AFAIK (from reading here)
no-one has made efforts to do anything about it.
IIRC/Long shot/Long time no see: Seems to be some kind of interaction with
(was it?)stat() beeing "hacked" to check for .exe also, as  is
scanned for. (mv using rename for moving?)

/Hannu E K Nevalainen, B.Sc. EE - 59+16.37'N, 17+12.60'E

** on a mailing list; please keep replies on that particular list **

-- printf("LocalTime: UTC+%02d\n",(DST)? 2:1); --
--END OF MESSAGE--


--
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: Fwd:CYGWIN & CDRECORD

2004-05-16 Thread Baurjan Ismagulov
Hello, Gabriele,

On Fri, May 14, 2004 at 05:24:19PM +0200, [EMAIL PROTECTED] wrote:
> It...works!

glad it helped.

Could you please keep answers on the list? This would be useful in two
ways:

1. Your problems and successes would be archived, perhaps helping the
   others in the future.

2. The people would know if it worked, and wouldn't waste their time on
   an already resolved issue.

With kind regards,
Baurjan.

--
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: Calling g77 FORTRAN code from MSVC 7?

2004-05-16 Thread Ted Yu
Hi,
My DLL produced by Cygwin calls malloc (in
cygwin1.dll). This DLL is used by MSVC project.
Is this allowed ?
What do I need to do to initialize Cygwin heap ?




__
Do you Yahoo!?
SBC Yahoo! - Internet access at a great low price.
http://promo.yahoo.com/sbc/

--
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: cp breaking weirdly when trying to copy an executable without specifying the .exe extension

2004-05-16 Thread Max Bowsher
Hannu E K Nevalainen wrote:
>> From: Max Bowsher
>> Sent: Friday, May 14, 2004 11:38 PM
>
>> $ touch foo.exe
>> $ cp foo bar
>> cp: `foo' and `bar' are the same file
>>
>> The above error message is rather confusing.
>>
>> Is Cygwin's cp supposed to transparently permit the omission of
>> the .exe extension, or am I misremembering?
>
>  cp  and  mv  comes out of the same box (same source file) and both seems to
> have problems with this. I had a look some time ago but came to no
> conclusion, primarily due to limited time to begin with.
>
>  This has been on the list several times before, AFAIK (from reading here)
> no-one has made efforts to do anything about it.
> IIRC/Long shot/Long time no see: Seems to be some kind of interaction with
> (was it?)stat() beeing "hacked" to check for .exe also, as  is
> scanned for. (mv using rename for moving?)

Yes, the problem is that stat("foo") will transparently stat("foo.exe"), but 
open("foo") then fails. 'cp' then makes an assumption
about why this might occur, and displays a nonsense error message.

I suppose the answer is to simply patch coreutils to give a better error message in 
this case.

Max.


--
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: Fetchmail Hang with the New Snapshot

2004-05-16 Thread Corinna Vinschen
On May 15 08:54, ERIC HO wrote:
> Hi It seems fetchmail hang with the nw snapshot. The last snapshot without fetchmail 
> problem is from 20040506. Not quite sure whether others experience this too. Thanks

Thanks for the report.  Should be fixed in the next snapshot.

Corinna

-- 
Corinna Vinschen  Please, send mails regarding Cygwin to
Cygwin Co-Project Leader  mailto:[EMAIL PROTECTED]
Red Hat, Inc.

--
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: Calling g77 FORTRAN code from MSVC 7?

2004-05-16 Thread Igor Pechtchanski
On Sun, 16 May 2004, Ted Yu wrote:

> Hi,
> My DLL produced by Cygwin calls malloc (in
> cygwin1.dll). This DLL is used by MSVC project.
> Is this allowed ?
> What do I need to do to initialize Cygwin heap ?

It's generally a bad idea to mix runtimes.  Furthermore, cygwin1.dll
cannot be dynamically loaded at the moment -- PTC[*].
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!

"I have since come to realize that being between your mentor and his route
to the bathroom is a major career booster."  -- Patrick Naughton

--
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: Error compiling glib, help?

2004-05-16 Thread Jean Bréfort
Le dim 16/05/2004 Ã 19:20, Jamil a Ãcrit :
> I am trying to compile the latest version of glib under a CYGWIN/WinXP
> using NTFS, but I get errors about function's references. I would
> appreciate if someone would help me fix this problem; here is an error
> report that more clearly explains what my problem is.
> 
> Please note that my intention is to eventually install GTK+ and GTKmm.
> 
> TIA
> 
> OS
> ~~~
> CYGWIN-mswxp [NTFS]
> 
> Compiler
> ~~
> Reading specs from /usr/lib/gcc-lib/i686-pc-cygwin/3.3.1/specs
> Configured with: /GCC/gcc-3.3.1-3/configure --with-gcc --with-gnu-ld
> --with-gnu-as --prefix=/usr --exec-prefix=/usr --sysconfdir=/etc
> --libdir=/usr/lib --libexecdir=/usr/sbin --mandir=/usr/share/man
> --infodir=/usr/share/info
> --enable-languages=c,ada,c++,f77,pascal,java,objc --enable-libgcj
> --enable-threads=posix --with-system-zlib --enable-nls
> --without-included-gettext --enable-interpreter --enable-sjlj-exceptions
> --disable-version-specific-runtime-libs --enable-shared
> --disable-win32-registry --enable-java-gc=boehm
> --disable-hash-synchronization --verbose --target=i686-pc-cygwin
> --host=i686-pc-cygwin --build=i686-pc-cygwin Thread model: posix gcc
> version 3.3.1 (cygming special)
> 
> Error
> ~
> Creating library file: .libs/libgobject-2.0.dll.a
> libs/gboxed.o(.text+0x57): In function `value_copy':
> /cygdrive/c/tmp/downloads/GTK+/glib-2.4.1/gobject/gboxed.c:74: undefined
> reference to `_g_malloc0'
> libs/gboxed.o(.text+0xd6): In function `gstring_copy':
> /cygdrive/c/tmp/downloads/GTK+/glib-2.4.1/gobject/gboxed.c:99: undefined
> reference to `_g_string_new_len'
> libs/gboxed.o(.text+0xf5): In function `gstring_free':
> /cygdrive/c/tmp/downloads/GTK+/glib-2.4.1/gobject/gboxed.c:107:
> undefined reference to `_g_string_free'
> libs/gboxed.o(.text+0x26a): In function `g_boxed_type_init':
> /cygdrive/c/tmp/downloads/GTK+/glib-2.4.1/gobject/../glib/gbsearcharray.
> h:136: undefined reference to `_g_realloc'
> 
>  NOTE  
>  The same error is displayed for several  ***
>  hundreds of functions in different files ***
> ///  END  
> 
> collect2: ld returned 1 exit status
> make[3]: *** [libgobject-2.0.la] Error 1
> make[2]: *** [all] Error 2
> make[1]: *** [all-recursive] Error 1
> make: *** [all] Error 2
> ___

I have no experience with cygwin, but the problem is that the linker
does not find libglib-2.0.??? (I do not know the exact name of the file
in this case). This file should be in glib/.libs.If it does not exist
(this would be very surprising), go to the glib directory and run make
to create it. Check it and also check the arguments of the ld command.


signature.asc
Description: Ceci est une partie de message	=?ISO-8859-1?Q?num=E9riquement?= =?ISO-8859-1?Q?_sign=E9e?=


Re: cp breaking weirdly when trying to copy an executable without specifying the .exe extension

2004-05-16 Thread Robert R Schneck
Max Bowsher <[EMAIL PROTECTED]> wrote:
>>> $ touch foo.exe
>>> $ cp foo bar
>>> cp: `foo' and `bar' are the same file
>
> I suppose the answer is to simply patch coreutils to give a better
> error message in this case.

I submitted just such a patch in 
<[EMAIL PROTECTED]>
at
http://www.cygwin.com/ml/cygwin/2004-02/msg01167.html

Unfortunately, it was right before fileutils became part of coreutils.

Perhaps the new coreutils maintainer might take a look?

Robert


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



How to force Setup.exe to behave?

2004-05-16 Thread Lex Ein
Nine days ago, this was "Using Setup.exe to uninstall -bogus".

Please help me figure out how to get Setup.exe to STOP TRYING TO INSTALL
X.
Setup.exe won't stop trying to snag unnecessary components.
What file(s) to I have to edit manually to make this happen?  
What can I manually delete?
It's a remote system, so I can't uninstall Cygwin without losing control.

Little help?

On Fri, 07 May 2004 19:16:54 -0700, "Lex Ein" <[EMAIL PROTECTED]> said:
> If there exists a sensible method for trimming the bulk of an existing
> Cygwin installation on a running disk-limited REMOTE system accessible
> only via ssh, I'd love to know it.  I've completely lost patience.
> 
> On a remote system, I've been trying to uninstall large chunks of Cygwin
> (x, db). Using Setup.exe to do this is like playing Whack-a-Mole, and is
> extremely frustrating.
> 
> The "Keep | Reinstall | Source | Version1 | Version2...| Uninstall"
> click-to-rotate control forces dependancies both far and near while I'm
> trying to _reach_ Uninstall.  Uninstall LEAVES THOSE DEPENDANCIES
> ACTIVATED.  
> 
> Without a way to select Uninstall without clocking through all the other
> dependancy activators, it's impossible to remove features and all their
> dependancies stickily.
> 
> In fact, the very process of trying to do this piece by piece has
> resulted in masses of other crap being installed which I don't need. 
> It's rather disturbing, as I'm running out of space on the remote system.
> 
> L
> 
> flames->dev/null
> 
> -- 
> http://www.fastmail.fm - Choose from over 50 domains or use your own
> 
> --
> 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/
> 

-- 
http://www.fastmail.fm - Choose from over 50 domains or use your own

--
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: How to force Setup.exe to behave?

2004-05-16 Thread Yitzchak Scott-Thoennes
On Sun, May 16, 2004 at 04:20:34PM -0700, Lex Ein <[EMAIL PROTECTED]> wrote:
> Nine days ago, this was "Using Setup.exe to uninstall -bogus".
> 
> Please help me figure out how to get Setup.exe to STOP TRYING TO INSTALL
> X.
> Setup.exe won't stop trying to snag unnecessary components.
> What file(s) to I have to edit manually to make this happen?  
> What can I manually delete?
> It's a remote system, so I can't uninstall Cygwin without losing control.
> 
> Little help?
> 
> On Fri, 07 May 2004 19:16:54 -0700, "Lex Ein" <[EMAIL PROTECTED]> said:
> > If there exists a sensible method for trimming the bulk of an existing
> > Cygwin installation on a running disk-limited REMOTE system accessible
> > only via ssh, I'd love to know it.  I've completely lost patience.
> > 
> > On a remote system, I've been trying to uninstall large chunks of Cygwin
> > (x, db). Using Setup.exe to do this is like playing Whack-a-Mole, and is
> > extremely frustrating.
> > 
> > The "Keep | Reinstall | Source | Version1 | Version2...| Uninstall"
> > click-to-rotate control forces dependancies both far and near while I'm
> > trying to _reach_ Uninstall.  Uninstall LEAVES THOSE DEPENDANCIES
> > ACTIVATED.  
> > 
> > Without a way to select Uninstall without clocking through all the other
> > dependancy activators, it's impossible to remove features and all their
> > dependancies stickily.
> > 
> > In fact, the very process of trying to do this piece by piece has
> > resulted in masses of other crap being installed which I don't need. 
> > It's rather disturbing, as I'm running out of space on the remote system.

Toggle to the Partial view and turn off the dependancies you don't want?

--
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: How to force Setup.exe to behave?

2004-05-16 Thread Robert Collins
On Mon, 2004-05-17 at 09:20, Lex Ein wrote:
> Nine days ago, this was "Using Setup.exe to uninstall -bogus".
> 

Setup is only bringing in X because something you have installed
requires it.

It's possible that there is a circular dependency loop within the X
programs themselves, and if so you may (at least Right Now) be out of
luck for your uninstallation needs.

However, the partial view as another poster has suggested is probably
the best way to tackle this. And I'd suggest you compare what you want
installed vs what you have installed with the setup.ini from the mirror
you are using - you should be able to spot the culprit that is dragging
the X packages in.

My WAG is that a package you *want* wants X.

Rob
-- 
GPG key available at: .


signature.asc
Description: This is a digitally signed message part


Re: How to force Setup.exe to behave?

2004-05-16 Thread Karl M
Hi All...
I ran into a circular dependency with X as well. I temporarily installed 
something that wanted it and then later removed the original package. I 
tried a couple of times to remove X and gave up. (It doesn't take that much 
disk to worry about and I'll take care of it on my next clean install.)

HTH,
...Karl

From: Robert Collins
To: Lex Ein
CC: [EMAIL PROTECTED]
Subject: Re: How to force Setup.exe to behave?
Date: Mon, 17 May 2004 09:49:45 +1000
On Mon, 2004-05-17 at 09:20, Lex Ein wrote:
> Nine days ago, this was "Using Setup.exe to uninstall -bogus".
>
Setup is only bringing in X because something you have installed
requires it.
It's possible that there is a circular dependency loop within the X
programs themselves, and if so you may (at least Right Now) be out of
luck for your uninstallation needs.
However, the partial view as another poster has suggested is probably
the best way to tackle this. And I'd suggest you compare what you want
installed vs what you have installed with the setup.ini from the mirror
you are using - you should be able to spot the culprit that is dragging
the X packages in.
My WAG is that a package you *want* wants X.
Rob
--
GPG key available at: .
<< signature.asc >>
_
Check out the coupons and bargains on MSN Offers! http://youroffers.msn.com
--
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/


Backup failure for Cron.pid

2004-05-16 Thread bella
Hi,

Install cygwin 1.3.10 in windows 2000 advanced server
SP3. I used Veritas Netbackup for backup system.
Recently, I got error

ERR = failure reading file: D:\cygwin\var\run\cron.pid
(The process cannot access the file because another
process has locked a portion of the file)

I can open cron.pid by notepad.

Is the cron.pid corrupt ? 
What's usage for cron.pid ? If I don't backup
cron.pid, can I resume service after restored ?
Or any suggestion ?

I cannot upgrade the cygwin version as it's in
production environment.

Thanks

___
Do You Yahoo!?
Get your free @yahoo.com.hk address at http://mail.english.yahoo.com.hk

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



error compiling python2-biggles-1.6.4

2004-05-16 Thread iwamae atsushi
I have an error to compile the latest version of python2-biggles on 
(BCygwin/WindowsXP.
(BI would appreciate if someone would help me to build biggles.
(BI paste the error message at the bottom. 
(BThe message says that the undefined reference "_png_*" in ibrary libplot.a
(B
(BI have downloaded and made
(Bzlib-1,2,1.tar.gz
(Blibpng-1.25.tar.gz
(Bplotutils-2.4.1.tar.gz
(BNumeric-23.1.tar.gz
(B
(BThe libplot.a was built in ~/plotutils-2.4.1/libplot
(BWhen I created libplot.a in plotutils there was an warning,
(B/plotutils-2.4.1/libplot
(Blibtool: link: warning: undefined symbols not allowed in i686-pc-cygwin 
(Bshared libraries
(B
(B
(B---
(B$ python setup.py install
(Brunning install
(Brunning build
(Brunning build_py
(Brunning build_ext
(Bbuilding 'libplot.libplot' extension
(Bgcc -shared -Wl,--enable-auto-image-base 
(Bbuild/temp.cygwin-1.5.9-i686-2.3/src/libplot/libplot.o -L/usr/local/lib 
(B-L/usr/X11R6/lib -L/usr/lib/python2.3/config -lplot -lXaw -lXmu -lXt -lSM 
(B-lICE -lXext -lX11 -lpython2.3 -o 
(Bbuild/lib.cygwin-1.5.9-i686-2.3/biggles/libplot/libplot.dll
(B/usr/local/lib/libplot.a(z_write.o)(.text+0x10d):z_write.c: undefined 
(Breference to `_png_create_write_struct'
(B/usr/local/lib/libplot.a(z_write.o)(.text+0x11f):z_write.c: undefined 
(Breference to `_png_create_info_struct'
(B/usr/local/lib/libplot.a(z_write.o)(.text+0x15b):z_write.c: undefined 
(Breference to `_png_init_io'
(B/usr/local/lib/libplot.a(z_write.o)(.text+0x204):z_write.c: undefined 
(Breference to `_png_set_IHDR'
(B/usr/local/lib/libplot.a(z_write.o)(.text+0x44c):z_write.c: undefined 
(Breference to `_png_set_text'
(B/usr/local/lib/libplot.a(z_write.o)(.text+0x464):z_write.c: undefined 
(Breference to `_png_write_info'
(B/usr/local/lib/libplot.a(z_write.o)(.text+0x548):z_write.c: undefined 
(Breference to `_png_write_rows'
(B/usr/local/lib/libplot.a(z_write.o)(.text+0x585):z_write.c: undefined 
(Breference to `_png_write_end'
(B/usr/local/lib/libplot.a(z_write.o)(.text+0x59b):z_write.c: undefined 
(Breference to `_png_destroy_write_struct'
(B/usr/local/lib/libplot.a(z_write.o)(.text+0x606):z_write.c: undefined 
(Breference to `_png_set_interlace_handling'
(B/usr/local/lib/libplot.a(z_write.o)(.text+0x66e):z_write.c: undefined 
(Breference to `_png_set_tRNS'
(B/usr/local/lib/libplot.a(z_write.o)(.text+0x7f3):z_write.c: undefined 
(Breference to `_png_get_error_ptr'
(B/usr/local/lib/libplot.a(z_write.o)(.text+0x876):z_write.c: undefined 
(Breference to `_png_get_error_ptr'
(BInfo: resolving _XtStrings by linking to __imp__XtStrings (auto-import)
(BInfo: resolving _XtShellStrings by linking to __imp__XtShellStrings 
(B(auto-import)
(BInfo: resolving _applicationShellWidgetClass by linking to 
(B__imp__applicationShellWidgetClass (auto-import)
(BInfo: resolving _labelWidgetClass by linking to __imp__labelWidgetClass 
(B(auto-import)
(Bcollect2: ld returned 1 exit status
(Berror: command 'gcc' failed with exit status 1
(B-
(B
(B_
$B%a%C%;%s%8%c!<$GAm3[(B1$B2/1_%W%l%<%s%H!*(B http://im.msn.co.jp/home.htm 
(B
(B
(B--
(BUnsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
(BProblem reports:   http://cygwin.com/problems.html
(BDocumentation: http://cygwin.com/docs.html
(BFAQ:   http://cygwin.com/faq/

Re: How to force Setup.exe to behave?

2004-05-16 Thread A . Alper Atici
On Sun, 16 May 2004 16:20:34 -0700, Lex Ein wrote:

>Nine days ago, this was "Using Setup.exe to uninstall -bogus".
>
>Please help me figure out how to get Setup.exe to STOP TRYING TO INSTALL
>X.

You need to figure out the package(s) installed depending on X.

Attached is a list of packages that have the string "XFree" or "xorg"
in their requires: line in setup.ini 
Save the list to a file, say, xlist.txt
Then, run the following command to see installed packages depending on
X:

$ cut -d' ' -f1 /etc/setup/installed.db | comm -12 - xlist.txt



--
A. Alper Atici   OpenPGP KeyID: 0xB824F550
GraphicsMagick
ImageMagick
TeXmacs
WindowMaker
X-start-menu-icons
X-startup-scripts
XFree86-base
XFree86-bin
XFree86-etc
XFree86-f100
XFree86-fcyr
XFree86-fenc
XFree86-fnts
XFree86-fscl
XFree86-fsrv
XFree86-html
XFree86-lib
XFree86-lib-compat
XFree86-man
XFree86-nest
XFree86-prog
XFree86-prt
XFree86-vfb
XFree86-xserv
Xaw3d
cgoban
ddd
emacs-X11
fvwm
gd
ghostscript-x11
gnuplot
grace
gv
lesstif
libGraphicsMagick-devel
libGraphicsMagick0
libMagick-devel
libMagick6
libXft
libXft-devel
libXft1
libXft2
libgd-devel
libgd2
libungif
nedit
openbox
tcm
tetex-x11
transfig
x2x
x3270
xemacs
xfig
xfig-base
xfig-bin
xgraph
xorg-x11-base
xorg-x11-bin
xorg-x11-bin-dlls
xorg-x11-devel
xorg-x11-etc
xorg-x11-f100
xorg-x11-fcyr
xorg-x11-fenc
xorg-x11-fnts
xorg-x11-fscl
xorg-x11-fsrv
xorg-x11-libs-data
xorg-x11-nest
xorg-x11-vfb
xorg-x11-xwin
xorg-x11-xwin-gl
xterm
xwinclip
xwinwm

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

Exporting /cygdrive/ Probelm, was Re: How To Export NFS?

2004-05-16 Thread Jack Polimer
--- Igor Pechtchanski <[EMAIL PROTECTED]> wrote:
...
> One more place to look:
> /usr/share/doc/Cygwin/nfs-server-2.2.47-2.README
>   Igor

Excellent!

I compiled from source and did not have the above file
and was missing some other stuff.  Once I installed
the binaries I was able to export regular directories.
 However, I still can't mount my Windows CD-ROM drive
remotely.  I followed the information in the README
regarding /cygdrive and did the following:

$ mkdir -p /exports/d
$ mount -f -s -b d:/ /exports/d
$ echo "/exports/d (ro,all_squash)" >> /etc/exports

The line redirecting to /etc/exports looked funny, so
I replaced it with:

/exports/d 10.0.0.0/255.255.255.0(ro,all_squash)

When I attempt to mount from a Linux machine I get:

[EMAIL PROTECTED] root]# mount -t nfs
10.0.0.123:/exports/d /mnt/windoze
mount: wrong fs type, bad option, bad superblock on
10.0.0.123:/exports/d, or too many mounted file
systems

I can mount other directories, but not /exports/d
(which is my CD-ROM drive).

Arggg...  Suggestions?




__
Do you Yahoo!?
SBC Yahoo! - Internet access at a great low price.
http://promo.yahoo.com/sbc/

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