Re: [ilugd] Find out Developing Studio like as MS-Visual Studio

2005-10-15 Thread Abhijit Menon-Sen
At 2005-10-14 18:06:55 +0100, [EMAIL PROTECTED] wrote:

 We r using Qt Programming tools. And if u r a developer u know better
 this is not a user friendly software, we want developing facilities
 like VC++ or VB. these r user freindly softwares. 

(Please do us the favour of typing whole words, like you and are.)

Have you seen QDesigner?

-- ams

___
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] unable to connect to qmail smtp server

2005-10-15 Thread Animesh Singh

 Telnet dosnt seem to be the problem. Please telnet with the ip and let
 us know the result:
 # telnet 192.168.1.XYZ 25


also to add:

check with netstat -ln for port 25 first and if it is running then check
with the tcp wrapper /etc/tcp.smtp file for any denial.

Animesh.
___
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 Gora Mohanty
--- 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/



Re: [ilugd] iptables problems

2005-10-15 Thread Subu_G
On 10/14/05, SWAPNIL [EMAIL PROTECTED] wrote:
 Dear All,

 We are using Red Hat 9.0 as gateway server with Kernel 2.4.20-8 and iptables
 firewall
 We are facing some problems with network traffic. FTP is not working IP
 phone is not working
hi swapnil,
check this rule in your nat/postrouting chain

# all internal incoming requests on all ports
-A POSTROUTING -d 192.168.1.200 -p tcp -j SNAT --to-source 192.168.1.1
   -^---
you should be SNATing the source. Is it a typo?

- gunz

___
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] taging the date on folder

2005-10-15 Thread Gora Mohanty
--- Manish Popli [EMAIL PROTECTED] wrote:
 Error is ..when i run it manually
 I din't get your mean about shell.

It is possible that the shell that the script is run
under is not bash, but some other shell that handles
variables differently.

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

No, try it on two lines, as it was in the script,
i.e.,
  date=`date -I`
  mv /home/manish/cvs_bkp/cvs_bkp.tar
/home/manish/cvs_bkp/cvs_bkp$date.tar
Or, simply execute the script itself.
  No offence, but you would do well to get a book,
or some document on shell scripts, and read it.
This is quite basic stuff.

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/



Re: [ilugd] taging the date on folder

2005-10-15 Thread Subu_G
On 10/15/05, Gora Mohanty [EMAIL PROTECTED] wrote:
 --- Manish Popli [EMAIL PROTECTED] wrote:
  Error is ..when i run it manually
  I din't get your mean about shell.

 It is possible that the shell that the script is run
 under is not bash, but some other shell that handles
 variables differently.

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

 No, try it on two lines, as it was in the script,
 i.e.,
   date=`date -I`
   mv /home/manish/cvs_bkp/cvs_bkp.tar
 /home/manish/cvs_bkp/cvs_bkp$date.tar
 Or, simply execute the script itself.
   No offence, but you would do well to get a book,
 or some document on shell scripts, and read it.
 This is quite basic stuff.

 Regards,
 Gora

Hi manish!
The rename by date works.
here is the script to test - it works and also shows you your shell.
Important : no blanks after date i.e. date=`
script to test -
#!/bin/bash
# Next line shows you your current shell
echo $SHELL
# Note : no blanks before or after = i.e date='
date=`date -I`
# test1 is a file in my home directory
mv ~/test1 ~/test1$date
# As Gora suggested ${date} better option
-end of script--
-gunz

___
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 Raj Mathur
 Manish == Manish Popli [EMAIL PROTECTED] writes:

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

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

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

date=`date -I` ; mv somefile.tar somefile.tar$date

-- Raju
-- 
Raj Mathur[EMAIL PROTECTED]  http://kandalaya.org/
   GPG: 78D4 FC67 367F 40E2 0DD5  0FEF C968 D0EF CC68 D17F
  It is the mind that moves

___
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] unable to connect to qmail smtp server

2005-10-15 Thread loving linux
 Telnet dosnt seem to be the problem. Please telnet
 with the ip and let
 us know the result:
 # telnet 192.168.1.XYZ 25
 -sg
same result
[EMAIL PROTECTED] ~]# telnet 192.168.1.XYZ 25
 Trying 192.168.1.XYZ...
 Connected to ..com (192.168.1.XYZ).
 Escape character is '^]'.
 Connection closed by foreign host.

sudeep



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



Re: [ilugd] unable to connect to qmail smtp server

2005-10-15 Thread Animesh Singh
seems it is blocked via tcp wrapper. check for the rules in tcp.smtp file.

Animesh.

On 10/15/05, loving linux [EMAIL PROTECTED] wrote:

  Telnet dosnt seem to be the problem. Please telnet
  with the ip and let
  us know the result:
  # telnet 192.168.1.XYZ 25
  -sg
 same result
 [EMAIL PROTECTED] ~]# telnet 192.168.1.XYZ 25
 Trying 192.168.1.XYZ...
 Connected to ..com http://..com (192.168.1.XYZ).
 Escape character is '^]'.
 Connection closed by foreign host.

 sudeep



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



___
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] [OT] Fwd: [cc-lessigletter] CC in Review: Lawrence Lessig on How it All Began

2005-10-15 Thread Linux Lingam
[snip]

achha bas! each to their own. getting involved with the creativecommons,
authoring public domain work, adopting the values you believe in for your
better world, and doing whatever you can your way, will give each one of us
who feels for this, our individual satisfactions.

for, i strongly feel: there is really no right way to live. your right could
be someone else's wrong, and vice-versa, or the collective right of today's
world could be the collective wrong of tomorrow's. people just die trying
all their life to live right. so atleast for myself, whatever i feel is
right, whether copyrighting or copylefting, is worth doing, as a personal
expression of the inner.

bakee sabh theek,
kee pharak pendaa!

:-)
n
___
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] unable to connect to qmail smtp server

2005-10-15 Thread Raj Shekhar
in infinite wisdom Animesh Singh spoke thus  On 10/15/2005 11:59 PM:
 seems it is blocked via tcp wrapper. check for the rules in tcp.smtp file.

 
 On 10/15/05, loving linux [EMAIL PROTECTED] wrote:
 

same result
[EMAIL PROTECTED] ~]# telnet 192.168.1.XYZ 25
Trying 192.168.1.XYZ...
Connected to ..com http://..com (192.168.1.XYZ).
Escape character is '^]'.
Connection closed by foreign host.

No, it is not tcp wrappers.  Had the connection been denied by the tcp
wrappers, you would not have gotten the line Connected to
..com http://..com (192.168.1.XYZ). A simple
 connection refused

Did you check the qmail log files ?  Did you try running it in
non-daemon mode ?

-- 
Raj ShekharY!IM : lunatech3007
blog : http://rajshekhar.net/blog  home : http://rajshekhar.net
Disclaimer : http://rajshekhar.net/disclaimer

___
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] Isn't it ironical?

2005-10-15 Thread Nikhil Prabhakar
Hi All,

Isn't it ironical for a GNU/Linux site ( http://www.linux-mag.com) to have
M$ ad spreading Get the Facts propaganda?

Regards
Nikhil Prabhakar

Live Life Ethically

www.gnu.org/philosophy http://www.gnu.org/philosophy
___
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] unable to connect to qmail smtp server

2005-10-15 Thread Animesh Singh
Raj there are multiple ways to operate via tcp wrappers. I still suggest you
to paste the tcp.smtp file.and more reason can be of number of concurrent
connection. If it reaches the max. value then it won't give you proper
connection or sometime break the connection. In that case also paste the
logs of the smtp and qmail.

more over are you also running qmail-scanner ( it has the module to auto
block features, just then merely scoring ) ?

Animesh.

On 10/16/05, Raj Shekhar [EMAIL PROTECTED] wrote:

 in infinite wisdom Animesh Singh spoke thus On 10/15/2005 11:59 PM:
  seems it is blocked via tcp wrapper. check for the rules in tcp.smtpfile.

 
  On 10/15/05, loving linux [EMAIL PROTECTED] wrote:
 

 same result
 [EMAIL PROTECTED] ~]# telnet 192.168.1.XYZ 25
 Trying 192.168.1.XYZ...
 Connected to ..com http://..com 
 http://..com (192.168.1.XYZ).
 Escape character is '^]'.
 Connection closed by foreign host.

 No, it is not tcp wrappers. Had the connection been denied by the tcp
 wrappers, you would not have gotten the line Connected to
 ..com http://..com http://..com (
 192.168.1.XYZ). A simple
  connection refused

 Did you check the qmail log files ? Did you try running it in
 non-daemon mode ?

 --
 Raj Shekhar Y!IM : lunatech3007
 blog : http://rajshekhar.net/blog home : http://rajshekhar.net
 Disclaimer : http://rajshekhar.net/disclaimer

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



Re: [ilugd] Find out Developing Studio like as MS-Visual Studio

2005-10-15 Thread Viksit Gaur
Hullo,


--- Udyan Kushwaha [EMAIL PROTECTED] wrote:

 .. developing realtime software
 as per requirements, which kind of platform of
 software, depending upon the users. Actually, we
 have experienced on window base softwares, develop
 realtime application such as simulators e.g. flight
 simulators etc., psychological tests which is
 related to human behavor, intelligence and aptitude
 levels, personality etc. We nid accurate time for
 output. 

In my opinion, the kind of work you're doing -
especially simulations need to be done on some kind of
a Real Time OS - Windows doesn't really qualify as
one.  You'd be much better off using Linux (RTLinux or
maybe UML alternatives), or even things like VxWorks,
QNX and such. Most of my realtime work is done on QNX
6.2..


  
 last 3 years our organisation change working
 environment and use LInux. We r using Qt Programming
 tools. And if u r a developer u know better this is
 not a user friendly software, we want developing
 facilities like VC++ or VB. these r user freindly
 softwares. 

Isn't that a good thing? :) If you've been using QT
for 3 years, I expect you should've started liking it
by now! Anyway, I'm not sure what you mean by Not
user friendly software. QTDesigner and
Kdevelop/Anjuta are both designed keeping in mind
user-friendliness. What exactly do you want from your
developing environment?

One click compiles? Ability to make forms?
Documentation? Syntax completion? All this is offered
by both the above mentioned programs. For more
functionality, there are tons of plugins you can use.

 
 One option may be eclipse, but we r not sure about
 this software, what do u think about this software.
 please write us.

Eclipse is great if you're doing Java stuff, and its
pretty decent for QT works as well - it is after all a
multipurpose IDE. *But I don't know anyone who uses
eclipse for QT work - mostly Java applications on it.

Cheers,
Viksit

--
Viksit Gaur   

viksit[dot]gaur[at]yale[dot]edu
http://viksit.com

Just because you have a mind like a hammer doesn't mean you should treat 
everyone else like a nail - Terry Pratchett




__ 
Yahoo! Mail - PC Magazine Editors' Choice 2005 
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/