[Ilugc] DNS addresses changes everytime

2009-12-06 Thread Balachandar
Hi guys,
   I set the newly released google's DNS in my /etc/resolv.conf file.But 
everytime when i restart the system the DNS server IP address is changed by the 
network manager applet.I m using fedora 11 and using BSNL NIC card to connect 
to 
the internet.Any help.

___
To unsubscribe, email ilugc-requ...@ae.iitm.ac.in with 
"unsubscribe  "
in the subject or body of the message.  
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Compiling XIIth standard State Board code on Linux

2009-12-06 Thread Roshan George
On Sun, 2009-12-06 at 02:06 +0530, Mehul Ved wrote:
> I don't know if it's something at your end but I am able to download
> it from http://prdownloads.sourceforge.net/dev-cpp/devcpp-4.9.9.2_setup.exe

This link works fine, Mehul, thank you. I'm not sure why I was unable to
get to it yesterday.

-- 
Roshan George 

___
To unsubscribe, email ilugc-requ...@ae.iitm.ac.in with 
"unsubscribe  "
in the subject or body of the message.  
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] DNS addresses changes everytime

2009-12-06 Thread Roshan George
On Sun, 2009-12-06 at 09:35 +, Balachandar wrote:
> Hi guys,
>I set the newly released google's DNS in my /etc/resolv.conf file.But 
> everytime when i restart the system the DNS server IP address is changed by 
> the 
> network manager applet.I m using fedora 11 and using BSNL NIC card to connect 
> to 
> the internet.Any help.

You're probably getting an IP address and DNS through dhclient. Add the
following to /etc/dhcp3/dhclient.conf

prepend domain-name-servers 8.8.8.8,8.8.4.4;

-- 
Roshan George 

___
To unsubscribe, email ilugc-requ...@ae.iitm.ac.in with 
"unsubscribe  "
in the subject or body of the message.  
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] Re: DNS addresses changes everytime

2009-12-06 Thread Balachandar
Roshan George  writes:

> You're probably getting an IP address and DNS through dhclient. Add the
> following to /etc/dhcp3/dhclient.conf
> 
>   prepend domain-name-servers 8.8.8.8,8.8.4.4;
> 

 I dont have any file like that there.



___
To unsubscribe, email ilugc-requ...@ae.iitm.ac.in with 
"unsubscribe  "
in the subject or body of the message.  
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] Re: Issues with multiple instances of mod_python websites on the same machine

2009-12-06 Thread L.Guruprasad
Hi all,

Guruprasad wrote:
> Hi all,
> In our college, we have a mod_python based web application for our
> intranet portal. We have a local testbed where the student devs have
> their own logins and they work on their own subversion working copies
> and publish their sites using mod_python configuration in
> /etc/apache2/sites-available/default and userdir module. But we very
> often face a problem like this.
> 
> All the users have their own copies of the web application and when
> one user opens and navigates through the web application when other
> user is doing the same with his copy, on clicking links and all, all
> the addresses start getting changed into those of the other user and
> not mine. We use Debian Lenny and the versions of apache2 and
> mod_python shipped with them with the mpm-prefork module. How to avoid
> such an issue.
> 
> For example when I click on a link in a site
> http://localhost/~user1/blah it gets changed it to
> http://localhost/~user2/blah and causes confusions. This issue happens
> only when the users publish their own sites and use them concurrently.

I have found a solution to the problem from
http://mailman.modpython.org/pipermail/mod_python/2009-December/026397.html.

The idea is to create a sub-interpreter for every published site by
using 'PythonInterpreter' directive. I can use directives like


PythonInterpreter site1



PythonInterpreter site2


where
PythonInterpreter directive has to be given a unique name that could be
anything.

Regards,
Guruprasad
___
To unsubscribe, email ilugc-requ...@ae.iitm.ac.in with 
"unsubscribe  "
in the subject or body of the message.  
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Re: DNS addresses changes everytime

2009-12-06 Thread Roshan George
On Sun, 2009-12-06 at 10:22 +, Balachandar wrote:
> 
>  I dont have any file like that there.
> 

I don't remember the exact name, I replaced my Fedora 11 install a while
back. Look under /etc for dhclient.conf or dhclient-[interface].conf.
You'll need to find out what the interface name of your BSNL card is and
choose the appropriate file.

-- 
Roshan George 

___
To unsubscribe, email ilugc-requ...@ae.iitm.ac.in with 
"unsubscribe  "
in the subject or body of the message.  
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Issues with multiple instances of mod_python websites on the same machine

2009-12-06 Thread Kenneth Gonsalves
On Sunday 06 Dec 2009 1:13:50 pm Guruprasad wrote:
> mod_python shipped with them with the mpm-prefork module. How to avoid
> such an issue.
> 

PythonInterpreter setting
-- 
regards
kg
http://lawgon.livejournal.com
___
To unsubscribe, email ilugc-requ...@ae.iitm.ac.in with 
"unsubscribe  "
in the subject or body of the message.  
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] DNS addresses changes everytime

2009-12-06 Thread Mehul Ved
On Sun, Dec 6, 2009 at 3:05 PM, Balachandar  wrote:
> Hi guys,
>   I set the newly released google's DNS in my /etc/resolv.conf file.But
> everytime when i restart the system the DNS server IP address is changed by 
> the
> network manager applet.I m using fedora 11 and using BSNL NIC card to connect 
> to
> the internet.Any help.

I don't have access to fedora machine right now to check but you
should find it as follows
1. Right click on NetworkManager applet.
2. Click on Edit Interfaces.
3. Select the interface you connect to.
4. Go to IPv4 settings and manually set DNS there.
See if this works
___
To unsubscribe, email ilugc-requ...@ae.iitm.ac.in with
"unsubscribe  "
in the subject or body of the message.
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] Re: DNS addresses changes everytime

2009-12-06 Thread Balachandar
Mehul Ved  writes:

> 1. Right click on NetworkManager applet.
> 2. Click on Edit Interfaces.
> 3. Select the interface you connect to.
> 4. Go to IPv4 settings and manually set DNS there.
> See if this works

   +1.Exact fix;-)


___
To unsubscribe, email ilugc-requ...@ae.iitm.ac.in with 
"unsubscribe  "
in the subject or body of the message.  
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] IS There Buisness Oppurtunity in FOSS ??????

2009-12-06 Thread mettur salem
Dear All,

 I have a Doubt in Buisness Oppurtunity in FOSS  ,  Yes I have an Idea about
Doing a Self Business in FOSS is There  Means Kindly Provide some Idea About
it

with Regards,
Mettur Mohan
9715407268
___
To unsubscribe, email ilugc-requ...@ae.iitm.ac.in with 
"unsubscribe  "
in the subject or body of the message.  
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] Re: Audio system for a class room of 1200 sq. ft.

2009-12-06 Thread gontlas
Hi Subhojit,

Thanks for your response. This is something new and it will really help
me in other ways.
Actually my requirement is, while the Teacher teaches, it has to be live
on the speakers after amplification through the computer.

Thanks
subba


Date: Sat, 5 Dec 2009 16:33:58 +0530
From: subhojit ojha 
Subject: Re: [Ilugc] Audio system for a class room of 1200 sq. ft.
To: ILUG-C 
Message-ID:
   
Content-Type: text/plain; charset=ISO-8859-1

hi subba,
   some day before i tried festival command...its so amazing..u can
use it like this
just connect speaker to ur machine and give command like this
echo "how are you" | festival --tts
the festival command will speak out the words in us english also it can read
a file content like
cat /etc/passwd | festival --tts
also u can use it with for or while loopits really amazing, just try
this to see linux power..

from
subhojit ojha
___
To unsubscribe, email ilugc-requ...@ae.iitm.ac.in with 
"unsubscribe  "
in the subject or body of the message.  
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Re: Audio system for a class room of 1200 sq. ft.

2009-12-06 Thread Prasanna
2009/12/7 gontlas 

> Hi Subhojit,
>
>Thanks for your response. This is something new and it will really help
> me in other ways.
>Actually my requirement is, while the Teacher teaches, it has to be live
> on the speakers after amplification through the computer.
>
>

Take a look at sox. http://sox.sourceforge.net/

You could connect your mic into the laptop and do
sox -d -d

The amplified output will go into the speaker.

HTH
-- 
Prasanna
___
To unsubscribe, email ilugc-requ...@ae.iitm.ac.in with 
"unsubscribe  "
in the subject or body of the message.  
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] IS There Buisness Oppurtunity in FOSS ??????

2009-12-06 Thread Kenneth Gonsalves
On Monday 07 Dec 2009 11:49:36 am mettur salem wrote:
> I have a Doubt in Buisness Oppurtunity in FOSS  ,  Yes I have an Idea about
> Doing a Self Business in FOSS is There  Means Kindly Provide some Idea
>  About it
> 
do you have any idea what kind of business? software and hardware installation 
and support? customisation, installation and support of FOSS software? offering 
software as a service?
-- 
regards
kg
http://lawgon.livejournal.com
___
To unsubscribe, email ilugc-requ...@ae.iitm.ac.in with 
"unsubscribe  "
in the subject or body of the message.  
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc