Does any one have a Redhat 6.2 CD. I need to borrow it for a day, Burn & return it back. Little urgent. Can someone please help. --Sandeep Cell# 98210-53670.
__________________________________________________ Do You Yahoo!? NEW from Yahoo! GeoCities - quick and easy web site hosting, just $8.95/month. http://geocities.yahoo.com/ps/info1
I have Red Hat 7.1 & Mandrake 8.1. I can burn a copy for you.
Navin
--- Sandeep Periwal sandeep_from@yahoo.com wrote:
Does any one have a Redhat 6.2 CD. I need to borrow it for a day, Burn & return it back. Little urgent. Can someone please help. --Sandeep Cell# 98210-53670.
Do You Yahoo!? NEW from Yahoo! GeoCities - quick and easy web site hosting, just $8.95/month. http://geocities.yahoo.com/ps/info1 _______________________________________________
__________________________________________________ Do You Yahoo!? NEW from Yahoo! GeoCities - quick and easy web site hosting, just $8.95/month. http://geocities.yahoo.com/ps/info1
Hello,
I have a strange problem with grep. When I try to search for a string in the files of a directory (~/programming/tmp) with the command
grep a *
it gives me the error:
grep: conflicting matchers specified
If I do (from my home directory or even from the directory itself!)
grep a ~/programming/tmp/*
then I have no problem. What is the meaning of the above error message? It does not matter what string I give, anything will produce the error.
Pablo. ---------------------------------------------------------------------- Pablo Ares Gastesi. School of Mathematics, TIFR, Mumbai 400 005, INDIA i Phone: 2152971, ext 2666 pablo@math.tifr.res.in http://www.math.tifr.res.in/~pablo/ Key fingerprint = 1A 7C 0A 22 5A 75 A4 78 62 6F 64 09 C1 A0 F7 E6 ----------------------------------------------------------------------
On Tue, 9 Oct 2001, Pablo Ares Gastesi wrote:
I have a strange problem with grep. When I try to search for a string in the files of a directory (~/programming/tmp) with the command
Does it happen only for this directory?
grep: conflicting matchers specified
Do you have any of GREP_OPTIONS or POSIXLY_CORRECT set?
That error generally means that egrep was called with the -F or -G flag or fgrep was called with the -E or -G flag. Basically, the matchers (grep/fgrep/egrep) conflict with each other.
I think you can't use egrep with POSIXLY_CORRECT or something like that.
Philip
That error generally means that egrep was called with the -F or -G flag or fgrep was called with the -E or -G flag. Basically, the matchers
I solved the problem. There was a file called -FILE in that directory.
Pablo. ---------------------------------------------------------------------- Pablo Ares Gastesi. School of Mathematics, TIFR, Mumbai 400 005, INDIA i Phone: 2152971, ext 2666 pablo@math.tifr.res.in http://www.math.tifr.res.in/~pablo/ Key fingerprint = 1A 7C 0A 22 5A 75 A4 78 62 6F 64 09 C1 A0 F7 E6 ----------------------------------------------------------------------
On Tue, 9 Oct 2001, Pablo Ares Gastesi wrote:
That error generally means that egrep was called with the -F or -G flag or fgrep was called with the -E or -G flag. Basically, the matchers
I solved the problem. There was a file called -FILE in that directory.
Ok. grep took that to mean flags -F -I -L and -E. Basically, -F and -E together not allowed. You can solve the problem by putting -- before the pattern to tell grep that options are over, or alternately, put the pattern in quotes, and set POSIXLY_CORRECT, which will assume that everything after the pattern is a filename.
Philip
Thanks a lot Navin, but I am looking for RH6.2 only. Any helps. --Sandeep
--- "N.a.v.i.n ....D.h.a.n.u.k.a" navin_dhanuka@yahoo.com wrote:
I have Red Hat 7.1 & Mandrake 8.1. I can burn a copy for you.
Navin
--- Sandeep Periwal sandeep_from@yahoo.com wrote:
Does any one have a Redhat 6.2 CD. I need to borrow it for a day, Burn & return it
back.
Little urgent. Can someone please help. --Sandeep Cell# 98210-53670.
Do You Yahoo!? NEW from Yahoo! GeoCities - quick and easy web
site hosting, just $8.95/month.
http://geocities.yahoo.com/ps/info1 _______________________________________________
http://mm.ilug-bom.org.in/mailman/listinfo/linuxers
Do You Yahoo!? NEW from Yahoo! GeoCities - quick and easy web site hosting, just $8.95/month. http://geocities.yahoo.com/ps/info1 _______________________________________________
__________________________________________________ Do You Yahoo!? NEW from Yahoo! GeoCities - quick and easy web site hosting, just $8.95/month. http://geocities.yahoo.com/ps/info1
I have Redhat 6.2 of PCQUEST version. can burn for you regards lilo ----- Original Message ----- From: Sandeep Periwal sandeep_from@yahoo.com To: linuxers@mm.ilug-bom.org.in Sent: Monday, October 08, 2001 6:47 PM Subject: [ILUG-BOM] RH 6.2 CD
Does any one have a Redhat 6.2 CD. I need to borrow it for a day, Burn & return it back. Little urgent. Can someone please help. --Sandeep Cell# 98210-53670.
Do You Yahoo!? NEW from Yahoo! GeoCities - quick and easy web site hosting, just
$8.95/month.
http://geocities.yahoo.com/ps/info1 _______________________________________________
Hi, I need to write a script to 1. Automatic [non-interactive] Telnet to a server. 2. Check if a file name "a.txt" exists in the /home/<telnetuser> 3. Send an email of file's existence / non-existence. 4. Disconnect Telnet
I do not understand how to do a Automatic [Non-interactive] telnet.
Help please. --Sandeep
__________________________________________________ Do You Yahoo!? NEW from Yahoo! GeoCities - quick and easy web site hosting, just $8.95/month. http://geocities.yahoo.com/ps/info1
On Oct 8, 2001 at 20:57, Sandeep Periwal wrote:
- Automatic [non-interactive] Telnet to a server.
- Check if a file name "a.txt" exists in the
/home/<telnetuser> 3. Send an email of file's existence / non-existence. 4. Disconnect Telnet
I do not understand how to do a Automatic [Non-interactive] telnet.
I don't think there is such a thing. Try scp'ing the file, if that fails you can mail.
perhaps "tcl/expect" is the answer to the question. it is supposed to do exactly this kind of stuff... for more details look at www.tcltk.org pradeep
----- Original Message ----- From: Satya satyap@satya.virtualave.net To: linuxers@mm.ilug-bom.org.in Sent: Monday, October 08, 2001 9:10 PM Subject: Re: [ILUG-BOM] AutoTelnet via Srcipt
On Oct 8, 2001 at 20:57, Sandeep Periwal wrote:
- Automatic [non-interactive] Telnet to a server.
- Check if a file name "a.txt" exists in the
/home/<telnetuser> 3. Send an email of file's existence / non-existence. 4. Disconnect Telnet
I do not understand how to do a Automatic [Non-interactive] telnet.
I don't think there is such a thing. Try scp'ing the file, if that fails you can mail.
-- Satya. URL:http://satya.virtualave.net/ My other vehicle is a Galaxy class starship ...
On Mon, 8 Oct 2001, Sandeep Periwal wrote:
Hi, I need to write a script to
- Automatic [non-interactive] Telnet to a server.
- Check if a file name "a.txt" exists in the /home/<telnetuser>
- Send an email of file's existence / non-existence.
- Disconnect Telnet
I do not understand how to do a Automatic [Non-interactive] telnet.
Try expect. it is designed to be used with the interactive programms. it will solve your problem.
When sending emails, I have set my Linux Box to represent as "aaaaaa.com", which is a non existing domain. Now if I send an email from this linux box [aaaaaa.com domian] to some yahoo.com address which does not exist, say bbbbb@yahoo.com, then the Yahoo SMTP will bounce this mail back. The Yahoo SMTP will bouce the mail back to the SMTP of aaaaaa.com [ which does not exist ]. So what will happen to the bounce back mail. WHat will yahoo's SMTP do.throw it in >>NULL, or what.
If I understand the SMTP / TCPIP correctly then this mail will be bounced back to my linux box then & there. But what if my linux box gives it to the yahoo SMPT which has along que, and I disconnect my Linux box from the internet.
I hope I have been able to exlpain my query. Just getting some fundas cleared.
ANy comments. --Sandeep
__________________________________________________ Do You Yahoo!? NEW from Yahoo! GeoCities - quick and easy web site hosting, just $8.95/month. http://geocities.yahoo.com/ps/info1
On Mon, 8 Oct 2001, Sandeep Periwal wrote:
When sending emails, I have set my Linux Box to represent as "aaaaaa.com", which is a non existing domain. Now if I send an email from this linux box [aaaaaa.com domian] to some yahoo.com address which does not exist, say bbbbb@yahoo.com, then the Yahoo SMTP will bounce this mail back. The Yahoo SMTP will bouce the mail back to the SMTP of aaaaaa.com [ which does not exist ]. So what will happen
I'm assuming that yahoo blocks non-existent domains from sending mail.
It depends on how the mail is being sent. If your smtp server connects directly to yahoo's smtp server then the mail will be rejected before it even leaves your machine. Not because the destination account does not exist, but because the source domain does not exist.
If you send your mail through a smart host, then it depends on how your smart host is configured. If it is configured to block non-existent domains, then same problem. If non-existent domains are allowed to connect, then the mail will go to your smart host, but will be rejected from yahoo.
Now, assuming that the mail has in fact managed to get out of your system, and got somewhere - either your smart host, or yahoo. It will bounce for one of the two reasons. Where does it bounce to?
The server that is bouncing the mail will basically do a MX lookup for the destination domain (aaaaa.com), but will not find it. It will realise that it cannot return the mail, so will check what it is configured to do in such cases. In most cases, it would be configured to bounce the mail to a postmaster in its own domain, and this it what it does.
Does that answer your question?
Philip
Hi Philip, I used YAHOO as just an example, it could be any SMTP, VSNL, HOTMAIl etc. But ur last part did anser my question. The recving SMTP will do a MX lookup and upon not able to find the respectibve IP it will dump it to the local SMTP postmaster. Thanks. --Sandeep
I'm assuming that yahoo blocks non-existent domains from sending mail.
It depends on how the mail is being sent. If your smtp server connects directly to yahoo's smtp server then the mail will be rejected before it even leaves your machine. Not because the destination account does not exist, but because the source domain does not exist.
If you send your mail through a smart host, then it depends on how your smart host is configured. If it is configured to block non-existent domains, then same problem. If non-existent domains are allowed to connect, then the mail will go to your smart host, but will be rejected from yahoo.
Now, assuming that the mail has in fact managed to get out of your system, and got somewhere - either your smart host, or yahoo. It will bounce for one of the two reasons. Where does it bounce to?
The server that is bouncing the mail will basically do a MX lookup for the destination domain (aaaaa.com), but will not find it. It will realise that it cannot return the mail, so will check what it is configured to do in such cases. In most cases, it would be configured to bounce the mail to a postmaster in its own domain, and this it what it does.
Does that answer your question?
Philip
-- FORTRAN is a good example of a language which is easier to parse using ad hoc techniques. -- D. Gries [What's good about it? Ed.]
Visit my webpage at http://www.ncst.ernet.in/~philip/ Read my writings at http://www.ncst.ernet.in/~philip/writings/
MSN philiptellis Yahoo! philiptellis AIM philiptellis ICQ 129711328
__________________________________________________ Do You Yahoo!? Make a great connection at Yahoo! Personals. http://personals.yahoo.com
Is there any command in shell script to envoke a SYSTEM BEEP. Some help please. --Sandeep
__________________________________________________ Do You Yahoo!? Make a great connection at Yahoo! Personals. http://personals.yahoo.com
On Tue, 16 Oct 2001, Sandeep Periwal wrote:
Is there any command in shell script to envoke a SYSTEM BEEP.
echo -e "\a"
http://cpan.valueclick.com/authors/id/J/JR/JROGERS/
this has some perl modules to accomplish this.
Rahil ----- Original Message ----- From: "Sandeep Periwal" sandeep_from@yahoo.com To: linuxers@mm.ilug-bom.org.in Sent: Tuesday, October 09, 2001 9:27 AM Subject: [ILUG-BOM] AutoTelnet via Srcipt
Hi, I need to write a script to
- Automatic [non-interactive] Telnet to a server.
- Check if a file name "a.txt" exists in the /home/<telnetuser>
- Send an email of file's existence / non-existence.
- Disconnect Telnet
I do not understand how to do a Automatic [Non-interactive] telnet.
Help please. --Sandeep
Do You Yahoo!? NEW from Yahoo! GeoCities - quick and easy web site hosting, just
$8.95/month.
http://geocities.yahoo.com/ps/info1 _______________________________________________