[ilugd] plz unsubscribe me

2008-02-16 Thread Manish Popli
Can any one  tell me what is the process to get out from this mailing List.
plz unsubscribe me.

-- 
Manish Popli
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Next Event: http://freed.in - February 22-24, 2008
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


Re: [ilugd] Row comparesion in a file

2007-03-08 Thread Manish Popli
Hi Gora,

Thanks for your reply Its entirely my mistake I din't provide sufficient
information.

I wrote :-

#!/bin/sh

Date  /manish

Date –u  /manish

Awk '{print $4}' /manish

##



Now in out put I will get 2 different time I want the difference of these 2
time format

 And need to run this script only at once.
-Manish Popli

On 3/8/07, Gora Mohanty [EMAIL PROTECTED] wrote:

 On Wed, 2007-03-07 at 17:06 -0500, Manish Popli wrote:
  I need to write a shell script to compare row in a file. and show the
  difference.
 
  Like  in row 2nd it showing 21:30:49
 
  And in row 3rd  it showing 19:25:21

 Incompletely specified. How are the rows separated? What is the
 meaning of the fields? Hours:Minutes:Seconds for 24h time? Do
 we have to worry about roll-over? Is sanity-checking of file
 format, and input values required? Why a shell script?
   For a trivial implementation in bash, assuming HH:MM::SS,
 disregarding most details and error-checking, save the following
 nine lines to a file, say diff.sh,
 #!/bin/bash
 while read f1 f2 f3
 do
   set `IFS=:; echo $f2`
   h2=$1; m2=$2; s2=$3
   set `IFS=:; echo $f3`
   h3=$1; m3=$2; s3=$3
   echo Difference is $(($h2*3600+$m2*60+$s2-$h3*3600-$m3*60-$s3))
 done  $1

 Do,
 chmod +x diff.sh
 and, invoke as
 ./diff.sh test.txt
 where test.txt is the name of the file containing your records.

 Regards,
 Gora


 ___
 ilugd mailinglist -- ilugd@lists.linux-delhi.org
 http://frodo.hserus.net/mailman/listinfo/ilugd
 Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi
 http://www.mail-archive.com/ilugd@lists.linux-delhi.org/




-- 
Manish Popli
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


Re: [ilugd] Row comparesion in a file

2007-03-08 Thread Manish Popli
see i wrote this..but i m getting diffrence 0 instead 5.. difference shoud
be five..

date -u | awk '{ print $4 }'  d1
date | awk '{ print $4 }'  d1
cat d1 | awk '{sum = $1 - sum  } END {print sum}'   22

coz my date command output is 10:23:39
and date -u is 15:23:39
date command showing US EST time rite now i m here in NY .

-Manish Popli


On 3/8/07, Manish Popli [EMAIL PROTECTED] wrote:

 see i wrote this..but i m getting diffrence 0 instead 5.. difference shoud
 be five..

 cat d1 | awk '{sum = $1 - sum  } END {print sum}'
 date -u | awk '{ print $4 }'  d1
 date | awk '{ print $4 }'  d1
 cat d1 | awk '{sum = $1 - sum  } END {print sum}'   22

 coz my date command output is 10:23:39
 and date -u is 15:23:39
 date command showing US EST time rite now i m here in NY .





 On 3/8/07, Gora Mohanty [EMAIL PROTECTED] wrote:
 
  On Thu, 2007-03-08 at 09:56 -0500, Manish Popli wrote:
   Hi Gora,
  
  
  
   Thanks for your reply Its entirely my mistake I din't provide
   sufficient information.
  
   I wrote :-
  
   #!/bin/sh
  
   Date  /manish
  
   Date –u  /manish
  
   Awk '{print $4}' /manish
  
   ##
 
  That still does not make any sense. Do you mean the system command
  date instead of Date? awk instead of Awk? Case is important
  in UNIX. In any case, the above set of commands would *not* give you
  two columns of times as you said you had. Maybe, you should explain
  what you are trying to do.
 
   Now in out put I will get 2 different time I want the difference of
   these 2 time format
 
  If that is what you want, use the complete time, i.e., including date,
  and use something like difftime() in the Perl POSIX module, assuming
  that you want a scripting solution. There are too many gotchas in
  trying to roll your own time difference function. Or, instead of
  getting the time from date, use the various time functions available
  in the Perl POSIX module, and all you need is a single script.
 
  Regards,
  Gora
 
 


 --
 Manish Popli




-- 
Manish Popli
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


[ilugd] Row comparesion in a file

2007-03-07 Thread Manish Popli
I need to write a shell script to compare row in a file. and show the
difference.

Like  in row 2nd it showing 21:30:49

And in row 3rd  it showing 19:25:21

*-**Shall Close*

*Manish Popli*
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


[ilugd] SAN configuration

2006-11-27 Thread Manish Popli
I tryed on google but fail to find SAN config/Admin white papers or doc.
Any one know configuration steps for SAN 9970/9980 Solaris.
I am new for SAN.

-- 
Manish Popli
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


Re: [ilugd] RHEL AS and ES which is better

2006-11-09 Thread Manish Popli
Well Abhi i will sujest first check with your environment requirements. If
in feature you are planning to increase your CPU then you can go with AS ..

and then  check your budget i mean company's budget.Then choose it ..

-Manish Popli

On 11/9/06, abhishek jain [EMAIL PROTECTED] wrote:

 Hi,
 I need to choose the right OS for a server of mine company. I decided to
 use
 RHEL but is confused for the AS and ES ones. Which is better?
 The system configuration will be double CPU, 4 GB RAM, etc. I visited
 http://www.redhat.com/rhel/compare/server/ but is still loking for more
 replies.
 Any help will be appreciated.

 --
 Regards,
 Abhishek jain
 ___
 ilugd mailinglist -- ilugd@lists.linux-delhi.org
 http://frodo.hserus.net/mailman/listinfo/ilugd
 Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi
 http://www.mail-archive.com/ilugd@lists.linux-delhi.org/




-- 
Manish Popli
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


Re: [ilugd] NICs on RHEL 4.0

2006-11-09 Thread Manish Popli
Replace the card on hardware base.

-Manish Popli

On 11/8/06, Yashpal Nagar [EMAIL PROTECTED] wrote:

 Hi All,
 I have a Redhat Enterprise linux 4.0 with two NICs on a DL320, 32 bit
 arch HP server.
 Problem is every reboot the interface eth0 flips over to the other
 physical interface and then i have to physically  move the cable to
 other interface.

 I get the following on console.
 Nov  8 12:29:40 servername ifup: Device eth0 has different MAC address
 than expected, ignoring.

 What i have tried:
 1. By specifying the HWADDR keyword in ifcfg-eth0 but no luck.
 2. i have also tried putting BOOTPROTO=none and placing the
 /sbin/ifconfig eth0 hw ether 00:0B:CD:4E:31:C1 in /etc/rc.d/rc/local
 and then restart the network interface as told at

 http://www.redhat.com/archives/redhat-list/2003-April/msg02721.html
 http://whoozoo.co.uk/mac-spoof-linux.htm
 but still same problem.

 The both NIC is NetXtreme BCM5702X Gigabit Ethernet.

 Any pointer/hack would be highly appreciated.

 Regards
 Yashpal



 ___
 ilugd mailinglist -- ilugd@lists.linux-delhi.org
 http://frodo.hserus.net/mailman/listinfo/ilugd
 Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi
 http://www.mail-archive.com/ilugd@lists.linux-delhi.org/




-- 
Manish Popli
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


Re: [ilugd] SpamAssassin

2006-08-24 Thread Manish Popli
Man i did my efforts first after that I asked to you guys.
There are only 3 things to configure in my /etc/mail/spamassasin/local.cf
file. I am worried there should be some more stuff.

required_hits 5
rewrite_subject 1
subject_tag [SPAM]

And i upgread the With spamassassin-3.0.6-1.rh9.rf RPM which created
/etc/mail/spamassasin/local.cf.rpmnew with this stuff.

required_hits 5
report_safe 0
rewrite_header Subject [SPAM]

Where to go now how to check ?

- Manish


On 8/23/06, Ritesh Raj Sarraf [EMAIL PROTECTED] wrote:

 Manish Popli on Wednesday 23 Aug 2006 21:15 wrote:

  Thanks for suggestion well we here to show proper way to each others
 rite
  not for this typy of reply.
 
  isn't it.

 No.
 We're here to help and discuss, not spoonfeed.

 Ritesh
 --
 Ritesh Raj Sarraf
 RESEARCHUT - http://www.researchut.com
 Necessity is the mother of invention.
 Stealing logic from one person is plagiarism, stealing from many is
 research.
 The great are those who achieve the impossible, the petty are those who
 cannot - rrs


 ___
 ilugd mailinglist -- ilugd@lists.linux-delhi.org
 http://frodo.hserus.net/mailman/listinfo/ilugd
 Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi
 http://www.mail-archive.com/ilugd@lists.linux-delhi.org/




-- 
Manish Popli
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/



Re: [ilugd] SpamAssassin

2006-08-23 Thread Manish Popli
Ritesh,


Thanks for suggestion well we here to show proper way to each others rite
not for this typy of reply.

isn't it.

-Manish

On 8/22/06, Ritesh Raj Sarraf [EMAIL PROTECTED] wrote:

 Manish Popli wrote:

  I have configured fetchmail server on redhat linux-9 its working fine.
  how to configure spamassassin and AntiVirus for it.
 

 How did you configure ?
 You might have read some docs, right ?
 Do the same.

 Ritesh
 --
 Ritesh Raj Sarraf
 RESEARCHUT - http://www.researchut.com
 Necessity is the mother of invention.
 Stealing logic from one person is plagiarism, stealing from many is
 research.
 The great are those who achieve the impossible, the petty are those who
 cannot - rrs


 ___
 ilugd mailinglist -- ilugd@lists.linux-delhi.org
 http://frodo.hserus.net/mailman/listinfo/ilugd
 Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi
 http://www.mail-archive.com/ilugd@lists.linux-delhi.org/




-- 
Manish Popli
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/



[ilugd] how to access windows box

2006-08-22 Thread Manish Popli
Hi all,

I have just install redhat linux 9 and want to access windows box from this
linux box.

please guide how to access windows box from linux box.

Is there any tool like VNC or remote desk top

-- 
Manish Popli
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/



[ilugd] SpamAssassin

2006-08-22 Thread Manish Popli
Hi all
I have configured fetchmail server on redhat linux-9 its working fine.
how to configure spamassassin and AntiVirus for it.

i am using sendmail version -

sendmail-8.12.8-4
sendmail-cf-8.12.8-4

Spam Assassin version -

spamassassin-2.44-11.8.x

FetchMail version -

fetchmail-6.2.0-3

-- 
Manish Popli
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/



[ilugd] pop3 configuration

2006-08-09 Thread Manish Popli
Hi,

I am using Red Hat Enterprise Version 4 (Linux version 2.6.9-5.ELsmp (Red
Hat 3.4.3-9.EL4).
I have configure etchmail on it and i m able to fetch the mails. Now i want
to distribut these mails in my local network.

From client end it gives the error not able to connetct to pop3 server.

and in my linux box there is no pop3 file in /etc/xinet.d directory please
guide me how to configure pop3 so that i can ditribute mails in my local
LAN.

[EMAIL PROTECTED] manish]# rpm -qa | grep imap
cyrus-imapd-2.2.10-1.RHEL4.1
cyrus-imapd-murder-2.2.10-1.RHEL4.1
cyrus-imapd-utils-2.2.10-1.RHEL4.1
cyrus-imapd-nntp-2.2.10-1.RHEL4.1
cyrus-imapd-devel-2.2.10-1.RHEL4.1
php-imap-4.3.9-3.1



-- 
Manish Popli
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/



[ilugd] solaris10

2006-08-09 Thread Manish Popli
Hi,

I m using following command to give the Ip address to  net work card.

# ifconfig  hme0  ip address  mask +brodcast up

but when i  reboot the system it  takes the ip from  DHCP.

1. How to configure permanent ip to lan card.
2. How to disable the DHCP so that it will not try to take IP from DHCP.



-- 
Manish Popli
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/



Re: [ilugd] pop3 configuration

2006-08-09 Thread Manish Popli
Thanks buddy,
i went there but i dunno kno wat i need to edit can u guid me ?

-Manish Popli

On 8/9/06, Manish Kathuria [EMAIL PROTECTED] wrote:

 Manish Popli wrote:
  Hi,
 
  I am using Red Hat Enterprise Version 4 (Linux version 2.6.9-5.ELsmp(Red
  Hat 3.4.3-9.EL4).
  I have configure etchmail on it and i m able to fetch the mails. Now i
 want
  to distribut these mails in my local network.
 
 From client end it gives the error not able to connetct to pop3 server.
 
  and in my linux box there is no pop3 file in /etc/xinet.d directory
 please
  guide me how to configure pop3 so that i can ditribute mails in my local
  LAN.

 You will have to edit /etc/dovecot.conf and enable the POP3 service.

 --
 Manish Kathuria
 http://www.tuxspace.com/

 ___
 ilugd mailinglist -- ilugd@lists.linux-delhi.org
 http://frodo.hserus.net/mailman/listinfo/ilugd
 Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi
 http://www.mail-archive.com/ilugd@lists.linux-delhi.org/




-- 
Manish Popli
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/



[ilugd] Domain Server on Linux.

2006-05-30 Thread Manish Popli
Hi all,

Rite now there is Windows Work group Environment in my Office.
I want to create domain Environment.

Domain Server will be Linux base M/c and client will be windows XP.
any one can tell me the doc for the same.

-- 
Manish Popli
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/



[ilugd] Suggest the best link for perl Scripting

2006-05-16 Thread Manish Popli
Hi All

well i m totaly new in perl Scripting and i want to use it in my Unix
Environment.
welcome for ur suggestion for the best way (Doc ) to start it.

Though i have rich Ex. in Unix administrationbut I m biggner in perl
scripting.


-- 
Manish Popli
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/



[ilugd] network path not found

2006-05-13 Thread Manish Popli
Hi,
I have a network of 4
computershttp://www.anetforums.com/posts.aspx?Action=ReplyPostIndex=185888ThreadIndex=42837ForumIndex=30redir=%2fposts.aspx%3fThreadIndex%3d42837%26ForumIndex%3d#(3
laptops, 1 pc) connected to a 10Mbps hub. Let's name them pc1, pc2,
pc3,
pc4.
3 of them have OEM Windows XP Pro EN w/SP2. 1 have window 2000 pro
All have TCP/IP and NetBios installed.
All get IP from DHCP (ADSL modem/router also connected to the hub) in range
10.0.0.1 - 10.0.0.4.
All in group Workgroup (no domain).

Ping by IP address and computer name works great between all computers (each
way).
E.g. pc1 can ping pc2, pc3, pc4 and vice versa.

Each computer has at least 1 shared folder (Simple File
Sharinghttp://www.anetforums.com/posts.aspx?Action=ReplyPostIndex=185888ThreadIndex=42837ForumIndex=30redir=%2fposts.aspx%3fThreadIndex%3d42837%26ForumIndex%3d#in
Win XP). Each computer can see all the other in view workgroup
computers. All can access shared folders of every other computer except
one! pc1 can't access pc2 and after about 1 minute of thinking it writes
out:

\\pc2 is not accessible. You might not have permission to use this network
resource. Contact the administrator of this
serverhttp://www.anetforums.com/posts.aspx?Action=ReplyPostIndex=185888ThreadIndex=42837ForumIndex=30redir=%2fposts.aspx%3fThreadIndex%3d42837%26ForumIndex%3d#to
find out if you have access permissions.
The network path was not found.

I tried changing computer names, changing IPs, switching cables in the hub -
nothing works.
Turned off all the firewalls.
Unistalled NetBIOS on all the computers for a while (works even worse!).
I even tried to connect the the computers (pc1 and pc2) directly through a
cross-wired cable. And still the same result: pc2 can access pc1, but pc1
can't open pc2. (pc3 opens pc1, pc2, pc4 without any problems, etc).
I tried changing NodeType and DhcpNodeType in windows registry
(HLM\SYSTEM\CurrentControlSet\Services\NetBT\Parameters) to 4 (mixed) on all
computers so that ipconfig /all looks almost absolutely the same (even
though I don't exactly know what it is for [image: Emoticon] ) - didn't help
[image: Emoticon]
Booted in Safe Mode with
Networkinghttp://www.anetforums.com/posts.aspx?Action=ReplyPostIndex=185888ThreadIndex=42837ForumIndex=30redir=%2fposts.aspx%3fThreadIndex%3d42837%26ForumIndex%3d#-
well I didn't even find the view workgroup computers there but the
mapped drives didn't work (one way again).
I changed network adapter in pc2 (pc1 is laptop).

I'm clueless and desperate! Please help!

I don't want to reinstall Windows on pc1 and I don't even know if actually
it isn't a problem of pc2 ???

Interesting conclusion: if you got my point right then you will realize that
removing ANY of the two computers (pc1, pc2) leaves me with a perfectly
working windows network of 3 computers without any problem [image: Emoticon]


-- 
Manish Popli
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/



Re: [ilugd] backup Issue in mysql

2006-04-24 Thread Manish Popli
Yes  y not ..

I simply makde soft link from /var/lib/mysql/mysql.sock to /tmp/mysql.sock

-Thanks
Manish Popli

On 4/22/06, Subhasis Ray [EMAIL PROTECTED] wrote:

 It would be great if you could tell us what you did to resolve this issue.

 -Subhasis

 On 4/22/06, Manish Popli [EMAIL PROTECTED] wrote:
 
  Thanks to all of u..
  well i have resolved the Issue
 
  -Manish Popli
 
 
  On 4/22/06, Manish Popli [EMAIL PROTECTED] wrote:
  
   Once again i m here with my back-up error ..i m using my sql version
   mysql-standard-4.0.15-pc-linux-i686
   and i have extrected it in /usr/local/
  
   Starting mysql from
  
   #cd /usr/local/mysql/bin
   #./safe_mysqld --max_allowed_packet=32M
i was using this command for backup ...
  
   [EMAIL PROTECTED] bin]# /usr/local/mysql/bin/mysqldump bugs -uroot  
   /home/manish/bug_bkp.sql
  
   Earlier it was working fine but now its give such
   error.
   /usr/local/mysql/bin/mysqldump: Got error: 2002: Can't connect to
 local
   MySQL server through socket '/tmp/mysql.sock' (111) when trying to
  connect
  
   Well Subhashish tryed to give me solution but still same prob...
  
   Can any one tell me the solution for the same..
  
   --
   Manish Popli
  
 
 
 
  --
  Manish Popli
  ___
  ilugd mailinglist -- ilugd@lists.linux-delhi.org
  http://frodo.hserus.net/mailman/listinfo/ilugd
  Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi
  http://www.mail-archive.com/ilugd@lists.linux-delhi.org/
 
 
 ___
 ilugd mailinglist -- ilugd@lists.linux-delhi.org
 http://frodo.hserus.net/mailman/listinfo/ilugd
 Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi
 http://www.mail-archive.com/ilugd@lists.linux-delhi.org/




--
Manish Popli
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/



[ilugd] backup Issue in mysql

2006-04-22 Thread Manish Popli
Once again i m here with my back-up error ..i m using my sql version
mysql-standard-4.0.15-pc-linux-i686
and i have extrected it in /usr/local/

Starting mysql from

#cd /usr/local/mysql/bin
#./safe_mysqld --max_allowed_packet=32M
 i was using this command for backup ...

[EMAIL PROTECTED] bin]# /usr/local/mysql/bin/mysqldump bugs -uroot  
/home/manish/bug_bkp.sql

Earlier it was working fine but now its give such
error.
/usr/local/mysql/bin/mysqldump: Got error: 2002: Can't connect to local
MySQL server through socket '/tmp/mysql.sock' (111) when trying to connect

Well Subhashish tryed to give me solution but still same prob...

Can any one tell me the solution for the same..

--
Manish Popli
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/



Re: [ilugd] Mysql backup prob

2006-04-22 Thread Manish Popli
Subhashish i m not using defalt mysql server ..i have extrected 
mysql-standard-4.0.15-pc-linux-i686  version in /user/local directory and i
start mysql from /user/local/mysql/bin directory.. so  i dunno think thee is
any role of /etc/my.cnf file in this scenario..

On 4/21/06, Subhasis Ray [EMAIL PROTECTED] wrote:

 What are the entries in /etc/my.cnf

 Entry for socket should match in all the sections. I guess you can have an
 entry for socket in mysqladmin section of the config file.

 Regards

 Subhasis

 On 4/21/06, Manish Popli [EMAIL PROTECTED] wrote:
 
  well i did that twice..i mean i have restart my server twice and 1 more
  thing i m not using defalt mysql path as i told in my previous mail ..i
 m
  using mysql from /user/localmysql/bin.
 
  -Manish Popli
 
  On 4/21/06, Subhasis Ray [EMAIL PROTECTED] wrote:
  
   Hi Manish,
  
   The error says that the socket file /tmp/mysql.sock does not exist. To
   recreate the socket, simply restart the mysql server.
  
   Once this socket is made, your backup will start running again.
  
   The location of this socket file can be edited in /etc/my.cnf
  
   Regards
  
   Subhasis
  
   On 4/21/06, Manish Popli [EMAIL PROTECTED] wrote:
   
Hi All,
   
I m using myql on linux box and used to run it through
   
#cd /usr/local/mysql/bin
   
#./safe_mysqld --max_allowed_packet=32M 
   
and for backup i used to run this command
   
[EMAIL PROTECTED] bin]# /usr/local/mysql/bin/mysqldump bugs -uroot  
/home/manish/bug_bkp.sql
   
Earlier it was working fine but now its give such error..
   
/usr/local/mysql/bin/mysqldump: Got error: 2002: Can't connect to
  local
MySQL server through socket '/tmp/mysql.sock' (111) when trying to
   connect
   
How can i retrive my backup...
   
   
   
--
Manish Popli
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/
   
   
   ___
   ilugd mailinglist -- ilugd@lists.linux-delhi.org
   http://frodo.hserus.net/mailman/listinfo/ilugd
   Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi
   http://www.mail-archive.com/ilugd@lists.linux-delhi.org/
  
  
 
 
  --
  Manish Popli
  ___
  ilugd mailinglist -- ilugd@lists.linux-delhi.org
  http://frodo.hserus.net/mailman/listinfo/ilugd
  Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi
  http://www.mail-archive.com/ilugd@lists.linux-delhi.org/
 
 
 ___
 ilugd mailinglist -- ilugd@lists.linux-delhi.org
 http://frodo.hserus.net/mailman/listinfo/ilugd
 Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi
 http://www.mail-archive.com/ilugd@lists.linux-delhi.org/




--
Manish Popli
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/



Re: [ilugd] backup Issue in mysql

2006-04-22 Thread Manish Popli
Thanks to all of u..
well i have resolved the Issue

-Manish Popli


On 4/22/06, Manish Popli [EMAIL PROTECTED] wrote:

 Once again i m here with my back-up error ..i m using my sql version
 mysql-standard-4.0.15-pc-linux-i686
 and i have extrected it in /usr/local/

 Starting mysql from

 #cd /usr/local/mysql/bin
 #./safe_mysqld --max_allowed_packet=32M
  i was using this command for backup ...

 [EMAIL PROTECTED] bin]# /usr/local/mysql/bin/mysqldump bugs -uroot  
 /home/manish/bug_bkp.sql

 Earlier it was working fine but now its give such
 error.
 /usr/local/mysql/bin/mysqldump: Got error: 2002: Can't connect to local
 MySQL server through socket '/tmp/mysql.sock' (111) when trying to connect

 Well Subhashish tryed to give me solution but still same prob...

 Can any one tell me the solution for the same..

 --
 Manish Popli




--
Manish Popli
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/



Re: [ilugd] Mysql backup prob

2006-04-21 Thread Manish Popli
well i did that twice..i mean i have restart my server twice and 1 more
thing i m not using defalt mysql path as i told in my previous mail ..i m
using mysql from /user/localmysql/bin.

-Manish Popli

On 4/21/06, Subhasis Ray [EMAIL PROTECTED] wrote:

 Hi Manish,

 The error says that the socket file /tmp/mysql.sock does not exist. To
 recreate the socket, simply restart the mysql server.

 Once this socket is made, your backup will start running again.

 The location of this socket file can be edited in /etc/my.cnf

 Regards

 Subhasis

 On 4/21/06, Manish Popli [EMAIL PROTECTED] wrote:
 
  Hi All,
 
  I m using myql on linux box and used to run it through
 
  #cd /usr/local/mysql/bin
 
  #./safe_mysqld --max_allowed_packet=32M 
 
  and for backup i used to run this command
 
  [EMAIL PROTECTED] bin]# /usr/local/mysql/bin/mysqldump bugs -uroot  
  /home/manish/bug_bkp.sql
 
  Earlier it was working fine but now its give such error..
 
  /usr/local/mysql/bin/mysqldump: Got error: 2002: Can't connect to local
  MySQL server through socket '/tmp/mysql.sock' (111) when trying to
 connect
 
  How can i retrive my backup...
 
 
 
  --
  Manish Popli
  ___
  ilugd mailinglist -- ilugd@lists.linux-delhi.org
  http://frodo.hserus.net/mailman/listinfo/ilugd
  Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi
  http://www.mail-archive.com/ilugd@lists.linux-delhi.org/
 
 
 ___
 ilugd mailinglist -- ilugd@lists.linux-delhi.org
 http://frodo.hserus.net/mailman/listinfo/ilugd
 Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi
 http://www.mail-archive.com/ilugd@lists.linux-delhi.org/




--
Manish Popli
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/



[ilugd] mysql restore prob

2006-03-24 Thread Manish Popli
I am using mysql-standard-4.0.15-pc-linux-i686 version on red hat linux-9
its totaly fresh installation
and i am new for mysql..
I want to restore database but while i m running the command..
*mysql -u root -p bugs  /home/manish/bug_bkp2006-03-22.sql*
i m facing the error ...ERROR 1050 at line 11: Table 'attachments' already
exists

Can any one help me to overcome from this.

--
Manish Popli
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/



Re: [ilugd] redirection of mail domain

2006-03-20 Thread Manish Popli
hey ,
I got the solution of this .


On 3/20/06, Naresh Narang [EMAIL PROTECTED] wrote:



 --- Manish Popli [EMAIL PROTECTED] wrote:

  Hi All,
 
  I am using sendmail on 7.3 linux..
  Now i want to redirect my domain name..
  let say my Id is   [EMAIL PROTECTED] now what
  i want to configure..
  If i do mail by using this mail id
  ([EMAIL PROTECTED]) reciver should
  get [EMAIL PROTECTED] ID
  how can i configure it in my sendmail.cf can any one
  have idea abt it..
 
  Thanks
  --
  Manish Popli


 /etc/mail/mailertable

 Regards,


 -- Naresh

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

 ___
 ilugd mailinglist -- ilugd@lists.linux-delhi.org
 http://frodo.hserus.net/mailman/listinfo/ilugd
 Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi
 http://www.mail-archive.com/ilugd@lists.linux-delhi.org/




--
Manish Popli
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/



[ilugd] redirection of mail domain

2006-03-19 Thread Manish Popli
Hi All,

I am using sendmail on 7.3 linux..
Now i want to redirect my domain name..
let say my Id is   [EMAIL PROTECTED] now what i want to configure..
If i do mail by using this mail id ([EMAIL PROTECTED]) reciver should
get [EMAIL PROTECTED] ID
how can i configure it in my sendmail.cf can any one have idea abt it..

Thanks
--
Manish Popli
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/



Re: [ilugd] redirection of mail domain

2006-03-19 Thread Manish Popli
hey i just want to send fake mail domain...say i don't have this
[EMAIL PROTECTED] domain..and 1 more thing i want to do it globaly
not per user bases..

Thanks
-Manish Popli


On 20 Mar 2006 12:53:06 +0530, Pardeep Garg [EMAIL PROTECTED]
wrote:

 Try to use .forward file in your home directory and put your reciver
 address in this file.

 When delivering email to a user, sendmail checks to see if the user has
 a .forward file in his home directory. If the file is present, the
 contents are read and treated as an alias for that person's email. So,
 for example, if I created a .forward file with the line
 [EMAIL PROTECTED], all my email would be forwarded to that
 address instead of delivered to my mailbox.

 Thanks and Regards
 --
 Pardeep

 On Mon, 2006-03-20 at 12:49, Manish Popli wrote:
  Hi All,
 
  I am using sendmail on 7.3 linux..
  Now i want to redirect my domain name..
  let say my Id is   [EMAIL PROTECTED] now what i want to
 configure..
  If i do mail by using this mail id ([EMAIL PROTECTED]) reciver
 should
  get [EMAIL PROTECTED] ID
  how can i configure it in my sendmail.cf can any one have idea abt it..
 
  Thanks
  --
  Manish Popli
  ___
  ilugd mailinglist -- ilugd@lists.linux-delhi.org
  http://frodo.hserus.net/mailman/listinfo/ilugd
  Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi
 http://www.mail-archive.com/ilugd@lists.linux-delhi.org/
 



 ___
 ilugd mailinglist -- ilugd@lists.linux-delhi.org
 http://frodo.hserus.net/mailman/listinfo/ilugd
 Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi
 http://www.mail-archive.com/ilugd@lists.linux-delhi.org/




--
Manish Popli
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/



Re: [ilugd] disable loging for sudo users

2006-03-13 Thread Manish Popli
Basicaly i want to disable this kind of loging oki can i disable loging for
perticuler users loging through syslog.conf ..well i tryed alot but it stops
all kind of loging  but i want to disable for perticuler one or two users...

Thanks,

Manish Popli


On 3/11/06, Gora Mohanty [EMAIL PROTECTED] wrote:

 --- Manish Popli [EMAIL PROTECTED] wrote:
 [...]
  i have configured sudo login for few users..and i dont want to create
  any kind of log (waht ever they are doing admin task with sudo login)
  for sudo users in /var/log/message  and  /var/log/secure.can i
  disable loging for sudo users  and for some normal users in linux ??
 ^ Don't
 follow what that means.

 Google is your friend for many such questions. Please take a look at
 the main sudo page at http://sudo.rtin.bz/sudo/sudo.html, in particular
 the man page for /etc/sudoers at
 http://sudo.rtin.bz/sudo/man/sudoers.html (look at the logfile
 string, and the --with-logging=file).
 You should probably also reconsider turning off logging of commands
 run with sudo. With that, if something does go wrong, there is no way
 to trace what happened. Rotating logs, or cleaning them out semi-
 automatically is a better option, in my opinion.

 Regards,
 Gora



 __
 Yahoo! India Matrimony: Find your partner now. Go to
 http://yahoo.shaadi.com

 ___
 ilugd mailinglist -- ilugd@lists.linux-delhi.org
 http://frodo.hserus.net/mailman/listinfo/ilugd
 Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi
 http://www.mail-archive.com/ilugd@lists.linux-delhi.org/




--
Manish Popli
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/



[ilugd] disable loging for sudo users

2006-03-11 Thread Manish Popli
Hi all,

i have configured sudo login for few users..and i dont want to create any
kind of log (waht ever they are doing admin task with sudo login) for sudo
users in /var/log/message  and  /var/log/secure.can i disable loging for
sudo users  and for some normal users in linux ??

Thanks
--
Manish Popli
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/



[ilugd] hide a file in linux

2006-03-10 Thread Manish Popli
Hi All,

Can any one tell me how can i make my script file hidden ??

--
Manish Popli
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/



[ilugd] Norton Antivirus for windows 2000/2003 server

2006-01-26 Thread Manish Popli
Hi All

I m trying to install NAV 10 (creck) on winwos 2000 M/c. But server name is
appering in disabled mode
can any one tell me the process who is aware about installation of NAV 10

--
Manish Popli
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/



[ilugd] Script for Interrupted power supply

2006-01-10 Thread Manish Popli
Hi All,

I want to configure my linux severs for interrupted power supply..

If in case my linux servers comes on UPS so they should autometically come
to know that there is no direct power supply then they should get
autometically sut down..
i have created a Script for this but i m not sure it ll work on normal UPS
or i must have some special configuration of UPS.Can any one tell me abt
it.

--
Manish Popli
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/



[ilugd] Web tool for CVS

2005-12-15 Thread Manish Popli
Hi,
I am using CVS 1.12.12 on redhat linux AS-3 (Linux
version 2.4.21-4.EL)
Red Hat Linux 3.2.3-20)
.
I need to configure it with ViewVC, For that i have
visited the site
http://viewvc.red-bean.com/
RCS is the requirements and now when i am trying to
install
rcs5.7.I have successfully launched the frist step..
# ./configure
In second command ( make  or make install) i m facing
the error
./conf.sh: testing permissions ...
./conf.sh: This command should not be run with
superuser permissions.
make[1]: *** [conf.h] Error 1
make[1]: Leaving directory `/home/manish/rcs-5.7/src'
make: *** [install] Error 2


Can you plz guid me how to install and configure step
by step viewCVS

--
Manish Popli
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/



Re: [ilugd] Help installing Solaris 10 x86

2005-12-15 Thread Manish Popli
I have successfully install Solaris 10 on Intel base platform..
can u tell me wats ur hardware specification..

-Manish Popli


On 12/8/05, Abhinav Jain [EMAIL PROTECTED] wrote:

 Hi ,

 We downloaded the cd images available on the sun site for the Solaris 10
 (x86) . While trying to install the same we found the following error :

 after searching for configuration files , the screen turns blue and
 message
 displayed :
 segmentation fault : core dump .

 Then a blue screen again appears but does not respond to any or the keys
 (enter , esc , arrow buttons etc) .

 Could someone who has been successful in installing Solaris 10 help ?
 Also a couple of my friends ordered Ubuntu a few days back and received
 two
 CDs . The live CD works fine but the installer CD hangs while installing
 the
 udev package . Kindly help

 Regards
 Abhinav



 --
 Abhinav Jain
 UnderGraduate Student
 Department of Computer Science and Engineering
 Institute of Technology , Banaras Hindu University
 [EMAIL PROTECTED]
 +91 - 9935614327
 blog : jainabhinav.blogspot.com
 home : www.geocities.com/abhinavjain_cse
 ___
 ilugd mailinglist -- ilugd@lists.linux-delhi.org
 http://frodo.hserus.net/mailman/listinfo/ilugd
 Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi
 http://www.mail-archive.com/ilugd@lists.linux-delhi.org/




--
Manish Popli
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/



[ilugd] Spam Issue

2005-11-30 Thread Manish Popli
I am using Linux version 2.4.18-3  (Red Hat Linux 7.3 2.96-110)..
Sendmail version : sendmail-8.11.6-27.73
MailScanner: mailscanner-4.22-5
Problem is from last 2 weeks i am getting some spam mails earlier it was
working fine..
can any one guide me..what i have to do to resolve it..

-Thanks-
Manish Popli
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/



[ilugd] iptable error

2005-11-22 Thread Manish Popli
I am fail to install time patch for iptables..i m facing the error..

[EMAIL PROTECTED] root]# iptables -A INPUT -m time --timestart 8:00 --timestop
18:00 --days Mon,Tue,Wed,Thu,Fri -j ACCEPT
iptables v1.2.8: Couldn't load match `time':/lib/iptables/libipt_time.so:
cannot open shared object file: No such file or directory

Try `iptables -h' or 'iptables --help' for more information.

i have visited at
http://www.lowth.com/howto/add-iptables-modules.php

but i m not able to do it successful..can any one guide me how to install
libipt_time.so under Enterprise linux AS-3 (Linux version 2.4.21-4.ELsmp
)..
and iptables version is iptables-1.2.8-12


--
Manish Popli
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/



Re: [ilugd] IPtables

2005-11-16 Thread Manish Popli
Hi sg,
 Which site you have given me its realy usefull through it i can solve my
problem but now i m putting my head in a new Issue..i have visited netfilter
site (
http://www.netfilter.org/documentation/HOWTO//netfilter-extensions-HOWTO-2.html)
but not able to connect the server for patch-o-matic..
can u tell me how to install time patch for netfilter..
 Thanks
Manish
 On 11/14/05, Subu_G [EMAIL PROTECTED] wrote:

 On 11/14/05, Tom Cooper [EMAIL PROTECTED] wrote:
  Hi Manish,
 
  Take a look at shorewall. I'm sure it can do it for you.
 
  HTH
 
  Tom
  Manish Popli wrote:
 
  Hi All,
   I want give access to my some users for some perticuler time let say
 in the
  morning and in the evening.
  on my linux server ..rite now they are able to access 24*7 which i
 dunno
  want For that i want to schdule the IPtable
  so it will autometicaly start and stop so that some perticuler users
 will
  get access for perticuler time
  and rest should continue with there work without any intreption... how
 can i
  do that ?

 Hi Manish
 You should really be using the netfilter extensions if you want to
 limit accesss based on time (though not by user logins but by IPs) by
 using the time patch. Check out patch-o-matic for your needs. Here is
 the URL pointing you probably to your needs:


 http://www.netfilter.org/documentation/HOWTO//netfilter-extensions-HOWTO-3.html#ss3.19

 HTH
 - sg

 ___
 ilugd mailinglist -- ilugd@lists.linux-delhi.org
 http://frodo.hserus.net/mailman/listinfo/ilugd
 Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi
 http://www.mail-archive.com/ilugd@lists.linux-delhi.org/




--
Manish Popli
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/



Re: [ilugd] IPtables

2005-11-15 Thread Manish Popli
Hi,
I have given this argu in my iptables..
 -A INPUT -p tcp -m tcp -s 0/0 -i eth1 --dport 21 -time --timestart 16:30
--timestop 16:35 --days Mon,Tue,Wed,Thu,Fri -j ACCEPT
 but when i applyed it its giving the error ..
 [EMAIL PROTECTED] root]# /etc/init.d/iptables restart
Flushing firewall rules: [ OK ]
Setting chains to policy ACCEPT: filter mangle nat [ OK ]
Unloading iptables modules: [ OK ]
Applying iptables firewall rules: iptables-restore v1.2.8: Unknown arg
`--timestart'
Error occured at line: 26
Try `iptables-restore -h' or 'iptables-restore --help' for more information.
[FAILED]
 i did my best to get help from google but i din't get any answere can u
guide me ??

-Manish Popli
On 11/14/05, Subu_G [EMAIL PROTECTED] wrote:

 On 11/14/05, Tom Cooper [EMAIL PROTECTED] wrote:
  Hi Manish,
 
  Take a look at shorewall. I'm sure it can do it for you.
 
  HTH
 
  Tom
  Manish Popli wrote:
 
  Hi All,
   I want give access to my some users for some perticuler time let say
 in the
  morning and in the evening.
  on my linux server ..rite now they are able to access 24*7 which i
 dunno
  want For that i want to schdule the IPtable
  so it will autometicaly start and stop so that some perticuler users
 will
  get access for perticuler time
  and rest should continue with there work without any intreption... how
 can i
  do that ?

 Hi Manish
 You should really be using the netfilter extensions if you want to
 limit accesss based on time (though not by user logins but by IPs) by
 using the time patch. Check out patch-o-matic for your needs. Here is
 the URL pointing you probably to your needs:


 http://www.netfilter.org/documentation/HOWTO//netfilter-extensions-HOWTO-3.html#ss3.19

 HTH
 - sg

 ___
 ilugd mailinglist -- ilugd@lists.linux-delhi.org
 http://frodo.hserus.net/mailman/listinfo/ilugd
 Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi
 http://www.mail-archive.com/ilugd@lists.linux-delhi.org/




--
Manish Popli
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/



[ilugd] IPtables

2005-11-14 Thread Manish Popli
Hi All,
 I want give access to my some users for some perticuler time let say in the
morning and in the evening.
on my linux server ..rite now they are able to access 24*7 which i dunno
want For that i want to schdule the IPtable
so it will autometicaly start and stop so that some perticuler users will
get access for perticuler time
and rest should continue with there work without any intreption... how can i
do that ?

--
Manish Popli
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/



[ilugd] kernel panic

2005-11-02 Thread Manish Popli
I m using 2.4.21-4.Elsmp kernel.it http://kernel.it went down suddenly and
when i reboot, it was not able to found the boot record..
after that i plughed out a slot of 512mb ram from it and tryed to boot
it..M/c got start but i was facing the error...
*Kernel* *panic*: *no* *init* *found*. Try passing *init*= option to *kernel
*.
any one solve my problem there is critical data in this HDD..
--
Manish Popli
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/



[ilugd] Script to start CVSup autometically

2005-10-18 Thread Manish Popli
I am new for scripting.i want to run my cvsup server and client
autometically by script..
how can i do that ??

--
Manish Popli
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/



[ilugd] taging the date on folder

2005-10-15 Thread Manish Popli
Hi all,
 I m using the script for backup my cvs..i do run it from crontab..
Earlier it was working fine but now my date command is not working..
its not tagging the date on my cvs_bkp.tar folder..
any one have idea about it..

# Create a backup file

tar -cvf /home/manish/cvs_bkp/cvs_bkp.tar /home/cvs/

# Rename the backup file by date

date=`date -I`
mv /home/manish/cvs_bkp/cvs_bkp.tar /home/manish/cvs_bkp/cvs_bkp$date.tar


--
Manish Popli
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/



Re: [ilugd] taging the date on folder

2005-10-15 Thread Manish Popli
Error is ..when i run it manually
I din't get your mean about shell.
 [EMAIL PROTECTED] cvs_bkp]# mv /home/manish/cvs_bkp/cvs_bkp.tar
/home/manish/cvs_bkp/cvs_bkp$date.tar
mv: `/home/manish/cvs_bkp/cvs_bkp.tar' and
`/home/manish/cvs_bkp/cvs_bkp.tar' are the same file

[EMAIL PROTECTED] cvs_bkp]# date=`date -I` mv /home/manish/cvs_bkp/cvs_bkp.tar
/home/manish/cvs_bkp/cvs_bkp$date.tar

mv: `/home/manish/cvs_bkp/cvs_bkp.tar' and
`/home/manish/cvs_bkp/cvs_bkp.tar' are the same file



 On 10/15/05, Gora Mohanty [EMAIL PROTECTED] wrote:

 --- Manish Popli [EMAIL PROTECTED] wrote:
 [...]
  tar -cvf /home/manish/cvs_bkp/cvs_bkp.tar /home/cvs/
 
  # Rename the backup file by date
 
  date=`date -I`
  mv /home/manish/cvs_bkp/cvs_bkp.tar
  /home/manish/cvs_bkp/cvs_bkp$date.tar

 What error message do you get if you try manually
 running this script (change date to echo if you do
 not want to mess with your backups)? The script looks
 fine for bash, but if you have changed shells, you
 might need to use ${date} instead of $date in the mv
 line. It is usually best to do this for shell
 variables not at the end.

 Regards,
 Gora




 __
 Yahoo! India Matrimony: Find your partner now. Go to
 http://yahoo.shaadi.com

 ___
 ilugd mailinglist -- ilugd@lists.linux-delhi.org
 http://frodo.hserus.net/mailman/listinfo/ilugd
 Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi
 http://www.mail-archive.com/ilugd@lists.linux-delhi.org/




--
Manish Popli
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/



Re: [ilugd] i want to buys books on Linux Clustering and Linux Thin Clients

2005-10-04 Thread Manish Popli
Is this book good enough for beginners ??
 -Manish

 On 10/3/05, ankush grover [EMAIL PROTECTED] wrote:

 hey friends,

 Are there any good books on Linux Clustering and Linux Thin Clients ? I
 know
 a book on Linux Clustering Linux Enterprise Cluster by Karl Kopper but
 this book is not available in delhi.

 Does anyone knows about any other good books on clustering and thin
 clients.

 Thanks  Regards

 Ankush Grover
 ___
 ilugd mailinglist -- ilugd@lists.linux-delhi.org
 http://frodo.hserus.net/mailman/listinfo/ilugd
 Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi
 http://www.mail-archive.com/ilugd@lists.linux-delhi.org/




--
Manish Popli
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/



[ilugd] tar -cvf

2005-10-03 Thread Manish Popli
I m trying to backup the CVS with the command..
tar -cvf /home/manish/cvs_bkp/cvs_bkp.tar /home/cvs/
But i m facing the error..
tar: error exist delay from previous error
plz help me out..



--
Manish Popli
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/



[ilugd] cvs over ssh

2005-09-13 Thread Manish Popli
can any one tell me how to configure cvs for SSH..
-- 
Manish Popli
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/

Event: Freedel 2005, 17th  18th September, 2005 - http://freedel.in


[ilugd] cvs write proxy

2005-09-12 Thread Manish Popli
I tryed alot to configure write proxy feature in CVS but i m not 
successful..
any one can tell me if u guys are aware about it

Thanks
-- 
Manish Popli
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/

Event: Freedel 2005, 17th  18th September, 2005 - http://freedel.in


[ilugd] replication between CVS

2005-08-31 Thread Manish Popli
I have configured CVSup for replication..but its supports in one direction 
only and i want to configure it bidirection..
any one have Ide about CVSproxy..can any one help me in this issue...

-- 
Manish Popli
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


Re: [ilugd] replication between CVS

2005-08-31 Thread Manish Popli
wat do u mean ??

On 9/1/05, Sirtaj Singh Kang [EMAIL PROTECTED] wrote: 
 
 On Wednesday 31 August 2005 19:13, Manish Popli wrote:
  I have configured CVSup for replication..but its supports in one 
 direction
  only and i want to configure it bidirection..
  any one have Ide about CVSproxy..can any one help me in this issue...
 
 I have some advice that you won't like:
 
 Don't do this. Even if by hook or crook you get it working, it will not 
 work
 right, at best you'll have a messy repository and will likely lose data.
 
 If you really really need distributed revision control I suggest you give 
 up
 on CVS, it is just not designed for that. Some viable alternatives include
 GNU Arch, monotone and Subversion/SVK.
 
 -Taj.
 
 
 
 ___
 ilugd mailinglist -- ilugd@lists.linux-delhi.org
 http://frodo.hserus.net/mailman/listinfo/ilugd
 Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
 http://www.mail-archive.com/ilugd@lists.linux-delhi.org/
 



-- 
Manish Popli
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


[ilugd] CVS replication

2005-08-29 Thread Manish Popli
I have successfully impliment CVS replication(CVSup) one sided only..
but i wanna impliment it bidirectionaly how can i do that i kno its not 
posible by
CVSup


-- 
Manish Popli
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


Re: [ilugd] Using Graphical Interface using ssh on networked machines

2005-08-11 Thread Manish Popli
Hi.
When i tryed to open Xhost  by this command it says.
[EMAIL PROTECTED] ramesh]# xhost +devzone
xhost:  unable to open display 

wat i have to do now ??

Thanks 
Manish Popli

On 8/11/05, Saurabh Nanda [EMAIL PROTECTED] wrote:
 You could use something called SSH X Forwarding... I forget the exact
 name right now.
 
 The good-ol' method is:
 
 host1$ xhost +host2
 host1$ ssh host2
 
 host2$ export DISPLAY=host1:0
 host2$ gimp
 
 Hope you get it... mail back if you want a detailed explanation.
 
 Nandz.
 --
 http://nandz.blogspot.com
 
 ___
 ilugd mailinglist -- ilugd@lists.linux-delhi.org
 http://frodo.hserus.net/mailman/listinfo/ilugd
 Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
 http://www.mail-archive.com/ilugd@lists.linux-delhi.org/
 


-- 
Manish Popli

___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


Re: [ilugd] Using Graphical Interface using ssh on networked machines

2005-08-11 Thread Manish Popli
no  i m not able to do that can u tell me step by step..
i gotta this result.
.
[EMAIL PROTECTED] ramesh]# ssh -X devzone
ssh: devzone: Name or service not known

Manish Popli

On 8/11/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:
 Check out Abijit menon sen's mail
 those commands work for me (ubuntu machines)
 
 ram
 
 to revise the command
 host1$ ssh -X host2
 host2$ - fire up the programme you want
 
 Manish Popli wrote:
 
 Hi.
 When i tryed to open Xhost  by this command it says.
 [EMAIL PROTECTED] ramesh]# xhost +devzone
 xhost:  unable to open display 
 
 wat i have to do now ??
 
 Thanks
 Manish Popli
 
 On 8/11/05, Saurabh Nanda [EMAIL PROTECTED] wrote:
 
 
 You could use something called SSH X Forwarding... I forget the exact
 name right now.
 
 The good-ol' method is:
 
 host1$ xhost +host2
 host1$ ssh host2
 
 host2$ export DISPLAY=host1:0
 host2$ gimp
 
 Hope you get it... mail back if you want a detailed explanation.
 
 Nandz.
 --
 http://nandz.blogspot.com
 
 ___
 ilugd mailinglist -- ilugd@lists.linux-delhi.org
 http://frodo.hserus.net/mailman/listinfo/ilugd
 Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
 http://www.mail-archive.com/ilugd@lists.linux-delhi.org/
 
 
 
 
 
 
 
 
 ___
 ilugd mailinglist -- ilugd@lists.linux-delhi.org
 http://frodo.hserus.net/mailman/listinfo/ilugd
 Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
 http://www.mail-archive.com/ilugd@lists.linux-delhi.org/
 


-- 
Manish Popli

___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


[ilugd] CVS replication

2005-08-11 Thread Manish Popli
Hi,
Any one can tell me how to make replication between two CVS servers??


-- 
Manish Popli

___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


Re: [ilugd] CVS ISSUE

2005-08-09 Thread Manish Popli
Hi,
Thanx for your reply what i saw in this bug there may be hardware
problem ...is that so can u tell me exact about it

Thanx 
Manish Popli 

On 8/9/05, Bhaskar Dutta [EMAIL PROTECTED] wrote:
 
On Tuesday 09 August 2005 10:32, MP Manish Popli said:
  Hi,
  There is error i am facing in CVS...i am using redhat Enterprise linux
  AS-3 (Linux version 2.4.21-4.EL)..and implimented pserver (CVS) on
  it...It was running quite fine but last night when i was trying to
  commint in to CVS nothing was happing then i saw the log in
  /var/log/message there was error cvs kernel: i8253 count too high!
  resetting..
  i m realy not aware abt it can u help me out wats the problem exactly?
 
  Thanks
 
 https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=97000
 
 --
 Regards,
 Bhaskar Dutta
 
 ___
 ilugd mailinglist -- ilugd@lists.linux-delhi.org
 http://frodo.hserus.net/mailman/listinfo/ilugd
 Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
 http://www.mail-archive.com/ilugd@lists.linux-delhi.org/
 


-- 
Manish Popli

___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


[ilugd] CVS ISSUE

2005-08-08 Thread Manish Popli
Hi,
There is error i am facing in CVS...i am using redhat Enterprise linux
AS-3 (Linux version 2.4.21-4.EL)..and implimented pserver (CVS) on
it...It was running quite fine but last night when i was trying to
commint in to CVS nothing was happing then i saw the log in
/var/log/message there was error cvs kernel: i8253 count too high!
resetting..
i m realy not aware abt it can u help me out wats the problem exactly?

Thanks
-- 
Manish Popli

___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


Re: [ilugd] problem of MYSQL QUERY

2005-07-31 Thread Manish Popli
Hi,
I m using CVS 1.12.12 on red hat linux AS-3..every thing is going on fine
i m able to connect my cvs server from win cvs (window client) but not
able to connect from linux box...i tryed alot but sin't find any
reason y ;inux box is not able to connect cvs serve while in  same
network my windows box able to connect on cvs server.plz help me

Thanx
Manish Popli

On 7/30/05, Shivkumar Jagannath [EMAIL PROTECTED] wrote:
 
 Hi,
 Why dont you stimulaate our brains by pasting what
 youo think would be a good query to starat  with? I
 dont think  this is  the right place to learn  mysql.
 mailing lists such as this one encourage  people to do
 a little work  and then ask questions. for example  i
 would have been thriled if you had  written at the end
 of  your mail something like  this I  tried  this
 query SELECT  TABLE1.COL1,TABLE2.COL1  FROM
 TABLE1,TABLE2 WHERE TABLE1.COL1=TABLE2.COL2;  and the
 result  was like this  .
 
 catch ya later (Ive gotta UnWire Life!!!)
  shiv
 
 
 
 
 Start your day with Yahoo! - make it your home page
 http://www.yahoo.com/r/hs
 
 
 ___
 ilugd mailinglist -- ilugd@lists.linux-delhi.org
 http://frodo.hserus.net/mailman/listinfo/ilugd
 Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
 http://www.mail-archive.com/ilugd@lists.linux-delhi.org/
 


-- 
Manish Popli

___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


[ilugd] Sata hdd Issue

2005-07-27 Thread Manish Popli
Hi all,

There is some Isuue with Sata HDD any one can help me out ??

Hardware..
M/b - K8S-MX (Asus)
HDD - 200 gb SATA
Processor - AMD 64 bit 2800 MHz
OS - Red Hat Enterprise Linux AS-3 (Kernel 2.4.21-4.EL)

Now problem is when i install AS-3 on above mention hardware my OS is
not detecting HDD..beyound that my BIOS showing my SATA HDD..
same problen i faced with Linux-9,Fidora -3, AS-3..i guess it s the
driver problem any one can suggest me wat should i  do??

Thanks,
-- 
Manish Popli

___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/