bell-style visibel does not work
Hi folk, I like to have the bell-style in the bash visible, but when I turn to visible there is no visible bell. Any help? Thank Franz __ Den Komfort von WEB.DE FreeMail nutzen, aber die alten E-Mail-Adressen nicht aufgeben? Kein Problem: http://freemail.web.de/features/?mc=021128 -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting: http://cygwin.com/bugs.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/
how to activate registry changes
Hi, I have the problem, that I change values in the registry to activate a screensaver. But after I wrot the new values into the registry nothing happend. I can see the new values in the registry. When I open the dialog in Windows the old values are still shown. How can I force windows to accept the new values? Thanks Franz __ ComputerBild 15-03 bestaetigt: Den besten Spam-Schutz gibt es bei WEB.DE FreeMail - Deutschlands beste E-Mail - http://s.web.de/?mc=021121 -- 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/
cygwin-sc.1044002190.pedfdhcgdmpiockfiaei-fj_br_=web.de@cygwin.com
[EMAIL PROTECTED] schrieb am 31.01.03 09:36:34: > > Hi! This is the ezmlm program. I'm managing the > [EMAIL PROTECTED] mailing list. > > To confirm that you would like > >[EMAIL PROTECTED] > > added to the cygwin mailing list, please send > an empty reply to this address: > >[EMAIL PROTECTED] > > Usually, this happens when you just hit the "reply" button. > If this does not work, simply copy the address and paste it into > the "To:" field of a new message. > > This confirmation serves two purposes. First, it verifies that I am able > to get mail through to you. Second, it protects you in case someone > forges a subscription request in your name. > > Some mail programs are broken and cannot handle long addresses. If you > cannot reply to this request, instead send a message to > <[EMAIL PROTECTED]> and put the > entire address listed above into the "Subject:" line. > > > --- Administrative commands for the cygwin list --- > > I can handle administrative requests automatically. Please > DO NOT SEND THEM TO THE LIST ADDRESS! If you do, I will not > see them and other subscribers will be annoyed. Instead, send > your message to the correct command address: > > > To subscribe to the list, send a message to: ><[EMAIL PROTECTED]> > > To remove your address from the list, send a message to: ><[EMAIL PROTECTED]> > > Send mail to the following for info and FAQ for this list: ><[EMAIL PROTECTED]> ><[EMAIL PROTECTED]> > > Similar addresses exist for the digest list: ><[EMAIL PROTECTED]> ><[EMAIL PROTECTED]> > > To get messages 123 through 145 (a maximum of 100 per request), mail: ><[EMAIL PROTECTED]> > > To get an index with subject and author for messages 123-456 , mail: ><[EMAIL PROTECTED]> > > They are always returned as sets of 100, max 2000 per request, > so you'll actually get 100-499. > > To receive all messages with the same subject as message 12345, > send an empty message to: ><[EMAIL PROTECTED]> > > The messages do not really need to be empty, but I will ignore > their content. Only the ADDRESS you send to is important. > > You can start a subscription for an alternate address, > for example "[EMAIL PROTECTED]", just add a hyphen and your > address (with '=' instead of '@') after the command word: > <[EMAIL PROTECTED]> > > To stop subscription for this address, mail: > <[EMAIL PROTECTED]> > > In both cases, I'll send a confirmation message to that address. When > you receive it, simply reply to it to complete your subscription. > > If despite following these instructions, you do not get the > desired results, please contact my owner at > [EMAIL PROTECTED] Please be patient, my owner is a > lot slower than I am ;-) > > --- Enclosed is a copy of the request I received. > > Return-Path: <[EMAIL PROTECTED]> > Received: (qmail 30421 invoked by uid 48); 31 Jan 2003 08:36:30 - > Date: 31 Jan 2003 08:36:30 - > Message-ID: <[EMAIL PROTECTED]> > From: [EMAIL PROTECTED] > To: [EMAIL PROTECTED] > > __ Ihr FreeMail-Postfach kann von jedem Telekom Festnetzanschluss erreicht werden? Mit der Voicebox - http://freemail.web.de/features/?mc=021163 -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting: http://cygwin.com/bugs.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/
Problems with find
Hi folks, I trie to search file with find an didn't find all the file which should be found I search for all file starting with 1000 an the file 1000.zip in the diretory 1000 is not found $ find . -name 1000\* ./1000.zip ./1000 but when I ls the directory 1000 the file is listed $ ls 1000 1000.zip As you can see I use the find installed in /usr/bin $ which find /usr/bin/find $ type find find is hashed (/usr/bin/find) what is wrong? Is it a bug or my fault? Thanks for any help and hint Franz __ Ihnen fehlen die richtigen Worte für Ihre SMS? WEB.DE FreeMail hat die besten Sprueche für Sie. http://freemail.web.de/features/?mc=021169 -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting: http://cygwin.com/bugs.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/
Re: Re: Problems with find
[EMAIL PROTECTED] schrieb am 31.01.03 16:47:10: > > For the archives: No. This is not going to do what the OP wants at all. > In fact, if there's more than one file named 1000.*, it won't even work > (find will produce a "find: paths must precede expression" error). For > details, "info find" and "info bash". > > To the OP: Is your 1000 directory a symbolic link, by any chance? If it > is, try the "-follow" option. For details, "info find". > Igor > Thanks for the hint with -follow it worked, but the directory 1000 is not a symbolic link as you can see $ find . -name 1000\* -follow ./1000.zip ./1000 ./1000/1000.zip $ ls -ld 1000 drwxr-xr-x2 f.braunb unknown 0 Jan 31 08:33 1000 $ ls -l 1000* -rw-r--r--1 f.braunb unknown 162114808 Jan 30 14:57 1000.zip 1000: total 158316 -rw-r--r--1 f.braunb unknown 162114808 Jan 31 08:33 1000.zip Could this be a bug? Franz > On Fri, 31 Jan 2003, Carlo Florendo wrote: > > > find . -name 1000.* > > > > - Original Message - > > From: <[EMAIL PROTECTED]> > > To: <[EMAIL PROTECTED]> > > Sent: Friday, January 31, 2003 5:57 PM > > Subject: Problems with find > > > > > > Hi folks, > > > > I trie to search file with find an didn't find all the file which should be > > found > > > > I search for all file starting with 1000 an the file 1000.zip in the > > diretory 1000 is not found > > $ find . -name 1000\* > > ./1000.zip > > ./1000 > > > > but when I ls the directory 1000 the file is listed > > $ ls 1000 > > 1000.zip > > > > As you can see I use the find installed in /usr/bin > > $ which find > > /usr/bin/find > > $ type find > > find is hashed (/usr/bin/find) > > > > > > what is wrong? Is it a bug or my fault? > > > > Thanks for any help and hint > > > > Franz > > -- > http://cs.nyu.edu/~pechtcha/ > |\ _,,,---,,_ [EMAIL PROTECTED] > ZZZzz /,`.-'`'-. ;-;;,_ [EMAIL PROTECTED] > |,4- ) )-,_. ,\ ( `'-' Igor Pechtchanski > '---''(_/--' `-'\_) fL a.k.a JaguaR-R-R-r-r-r-.-.-. Meow! > > Oh, boy, virtual memory! Now I'm gonna make myself a really *big* RAMdisk! > -- /usr/games/fortune > > > -- > Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple > Bug reporting: http://cygwin.com/bugs.html > Documentation: http://cygwin.com/docs.html > FAQ: http://cygwin.com/faq/ > __ Keine Chance für Viren! Mit WEB.DE FreeMail sind Sie auf der sicheren Seite - Virenschutz inklusive! http://freemail.web.de/features/?mc=021129 -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting: http://cygwin.com/bugs.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/
links does not work und windows Programm
Hi folks, I have the following problem, when I make a symbolic link from a directory under cygwin. I can use them in Windows 2000 in the Windows Explorer, but it is not possible to us the link under another Windows Programm like Excel. When I trie to open a file using the link in Excel I can't see the link to the directory. After Changing the type of the file to all Files I can see the links to the directories. But when I click on the link I get an errror saying somethin like "Acces to writeprotected File 'directoryname' not possible". I translatet the errormessage from german, so it could be that it not the original text in english. So Excel thinks that the Symbolic link is a File and not a Link. A link made by Windows Explorere is not usable in cygwin. How can I fix the behaviour? Thank for any help in advance Franz __ Die SMS direkt auf's Handy. - Die Blitz-SMS bei WEB.DE FreeMail http://freemail.web.de/features/?mc=021165 -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting: http://cygwin.com/bugs.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/
problems with cygwin after setup
After I installed more program under cygwin I have the following problems 1.) can't get manual pages man man says no entry 2.) w3m crashes with "Can't find termcap entry cygwin" 3.) after starting cygwin I get /usr/share/texmf/ls-R: Permission denied /usr/share/texmf/aliases: Permission denied even if I don't use a .bashrc Any help? Why does system corrupt my cygwin installation. Franz __ 160 Zeichen sind fur Ihre SMS zu wenig? Bei WEB.DE FreeMail koennen Sie bis 760 Zeichen versenden! http://freemail.web.de/features/?mc=021183 -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting: http://cygwin.com/bugs.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/
Re: Re: problems with cygwin after setup
[EMAIL PROTECTED] schrieb am 11.03.03 20:29:54: > > On Tue, 11 Mar 2003 you (whoever you are) wrote: > > > After I installed more program under cygwin I have the following problems > > > > 1.) can't get manual pages man man says no entry > > 2.) w3m crashes with "Can't find termcap entry cygwin" > > 3.) after starting cygwin I get > > /usr/share/texmf/ls-R: Permission denied > > /usr/share/texmf/aliases: Permission denied > >even if I don't use a .bashrc > > > > Any help? Why does system corrupt my cygwin installation. > > Franz > > cd / && chmod -R a+r bin lib sbin usr etc tmp var && chmod -R a+x bin sbin usr/sbin > usr/local/bin lib/gcc-lib/*.exe usr/X11R6/bin This Line helped me Thank you very much Franz __ Mit der Auslands-SMS von WEB.DE FreeMail erreichen Sie Ihre Freunde auf der ganzen Welt - http://freemail.web.de/features/?mc=021171 -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting: http://cygwin.com/bugs.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/