[Ilugc] Update to ubuntu 9.04

2009-06-08 Thread Kannan
hi

i have installed the ubuntu 8.10 version.i got the new ubuntu 9.04 cd from
cananical.
how can i upgrade the system using this new cd?
help me..




With regards,

Kannan. R. P,
___
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] Thanks for your Support

2009-06-08 Thread mettur salem
Dear All,

   I Installed  successfully SVN   in Fedora 9 with 1.4.6 svn

   Thanks for your Great Support for the person  Like T.Shrinivasan ,
S.Senthilkumaran , Sivakumar,   Kenneth , Kapil
   Whenever I feel helpless those mails give me boon to move into next step
   Thanks for all luggies
   I Congrats to Each Everyone of Luggies for done a good job to society

   usercreation  providing rights and required knowlege about tortoise svn
of changing the author while  commit to server from client  are Pending
   Thanks for all

With Regards,
Mettur Mohan
09715407268
___
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] Update to ubuntu 9.04

2009-06-08 Thread Ravi Jaya
>
> i have installed the ubuntu 8.10 version.i got the new ubuntu 9.04 cd from
> cananical.
> how can i upgrade the system using this new cd?
> help me..

I am not a user of ubuntu, when I google, I came across this. pelase do
check wheather it would help in any way
https://help.ubuntu.com/community/UpgradeNotes,


cheers


-- 
Ravi Jaya
Independent FOSS Trainer & Consultant

Mobile: +91 9739013230
___
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] Update to ubuntu 9.04

2009-06-08 Thread Sahasranaman MS
On Mon, Jun 8, 2009 at 12:45 PM, Kannan  wrote:

>
> i have installed the ubuntu 8.10 version.i got the new ubuntu 9.04 cd from
> cananical.
> how can i upgrade the system using this new cd?
> help me..



Dear Kannan,

You can upgrade Ubuntu to the latest version either with the Alternate
Installation CD, the DVD or an online upgrade. You cannot upgrade to the
latest version using the Live CD sent by Canonical. Do a clean install with
the CD that you have recieved, or download and burn a copy of the Alternate
CD from the website.
___
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: stream.h and fstream.h NOT FOUND problem

2009-06-08 Thread Mohan R
bala chandar wrote:
> Hai,
> I recently installed Ubuntu 8.10.Actually I need g++ for my project.So
> I installed it through synaptic.I installed g++,g++ 4.1,g++4.2,g++ 4.3
> all shown in synaptic.
> But when i compile my project it says,
> stream.h - No Such File or Directory Found
> fstream.h - No Such File or Directory Found

I think you need to set proper 'CFLAGS' using 'pkg-config'. When I
searched for 'stream.h' it is inside 'directfb' directory.

$ find /usr -name 'stream.h'
/usr/include/directfb/direct/stream.h
$

Then I searched inside '.pc' files, These are the packages which
includes 'directfb' directory.

$ find /usr -name '*.pc' -exec grep -H 'Cflags:.*directfb' {} \;
/usr/lib/pkgconfig/direct.pc:Cflags: -D_REENTRANT
-I${prefix}/include/directfb

/usr/lib/pkgconfig/fusion.pc:Cflags: -I${prefix}/include/directfb

/usr/lib/pkgconfig/directfb.pc:Cflags: -D_REENTRANT
-I${prefix}/include/directfb

/usr/lib/pkgconfig/directfb-internal.pc:Cflags: -D_GNU_SOURCE
-I${prefix}/include/directfb-internal
$

I don't know what kind of programming you are doing, But you need to
include 'directfb' during compilation. Anyone of the below example will
include 'stream.h'

Eg:

$ g++ `pkg-config --cflags --libs 'direct'` -o output somefile.cpp
$ g++ `pkg-config --cflags --libs 'fusion'` -o output somefile.cpp
$ g++ `pkg-config --cflags --libs 'directfb'` -o output somefile.cpp
$ g++ `pkg-config --cflags --libs 'directfb-internal'` -o output
somefile.cpp

For fstream.h, I searched in my system, not able to find, The above
procedure will help you to get 'fstream.h' file's pkg-config.

Regards,
Mohan R.

___
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] Problem in Chennai LUG Website.

2009-06-08 Thread S.PARTHASARATHY .
I could not able view our Chennai Linux User Group web site (*chennai*
lug.org/ )on 08.06.09 afternoon. Can any please guide me. Thank you.
___
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] Problem in Chennai LUG Website.

2009-06-08 Thread benjamin
please read this
http://www.ae.iitm.ac.in/pipermail/ilugc/2009-June/048650.html

-- 
benjamin rualthanzauva
http://twitter.com/rualthan
___
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] stream.h and fstream.h NOT FOUND problem

2009-06-08 Thread Shashwath T.R.
On Sun, Jun 7, 2009 at 9:42 AM, bala chandar wrote:
> Hai,
> I recently installed Ubuntu 8.10.Actually I need g++ for my project.So
> I installed it through synaptic.I installed g++,g++ 4.1,g++4.2,g++ 4.3
> all shown in synaptic.
> But when i compile my project it says,
> stream.h - No Such File or Directory Found
> fstream.h - No Such File or Directory Found
>
> I m really in need of these headers.Pls help me to get rid of it
> soon.Thank you
> cheers.

In the more modern C++ systems, you don't include fstream.h or
iostream.h; the correct form is:

#include 

using namespace std;

I think gcc and friends will yell at you if you don't follow this.

Regards,
Shash
___
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] regular expression the check if a string is absent

2009-06-08 Thread Kenneth Gonsalves
hi,
I am trying to build a regular expression that will find all strings that do 
not start with '2009/'. Any clues?
-- 
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


[Ilugc] Re: Thanks for your Support

2009-06-08 Thread Kenneth Gonsalves
On Monday 08 June 2009 13:01:26 you wrote:
>  I Installed  successfully SVN   in Fedora 9 with 1.4.6 svn
>
>    Thanks for your Great Support for the person  Like T.Shrinivasan ,
> S.Senthilkumaran , Sivakumar,   Kenneth , Kapil
>    Whenever I feel helpless those mails give me boon to move into next step
>    Thanks for all luggies
>    I Congrats to Each Everyone of Luggies for done a good job to society
>
>    usercreation  providing rights and required knowlege about tortoise svn
> of changing the author while  commit to server from client  are Pending
>    Thanks for all

now it is time for you to help us: please write a detailed document about all 
the problems you faced and how you solved them
-- 
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] regular expression the check if a string is absent

2009-06-08 Thread Sivakumar Gopalan
I am trying to build a regular expression that will find all strings
that do 
not start with '2009/'. Any clues?

Which language/script are you looking for, you can actually negate the
result like in perl it is '!~' also grep has a command line option to do
the same. 
___
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] regular expression the check if a string is absent

2009-06-08 Thread Gourav Shah
> I am trying to build a regular expression that will find all strings that
> do
> not start with '2009/'. Any clues?
>

I am assuming you could use grep here, if not, please specify how you intend
to do the pattern matching.

grep has a option to invert match, here is a snip from manpage,
...

   -v, --invert-match
  Invert the sense of matching, to select non-matching lines.
(-v is specified by POSIX.)

so if its grep, you could use,  grep "^2009/"  

e.g.

$ cat >> /tmp/t.txt
snfgd
fdnbfognbof errgirnbinr
kjfnfbjgnb 434fgv 54y 5obn
2009/ rgerigbir nr
vrgnbn
2009/ y fdgovrf23 3gp 4
bgfbog
232234
565
2009
regtrgm ^[[A^[[A
2009 enfvfrnv evirvir
vornbtr

$ grep "^2009/" /tmp/t.txt
2009/ rgerigbir nr
2009/ y fdgovrf23 3gp 4


$ grep -v "^2009/" /tmp/t.txt
snfgd
fdnbfognbof errgirnbinr
kjfnfbjgnb 434fgv 54y 5obn
vrgnbn
bgfbog
232234
565
2009 enfvfrnv evirvir
vornbtr


Thanks
Gourav
___
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: ilugc Digest, Vol 61, Issue 12

2009-06-08 Thread Ashok Gautham
On Mon, Jun 8, 2009 at 11:41 AM, Nishant Prakash
Kashyap wrote:
>
> I did not find any issues with regard to results shown by bing.com, the
> results were relevent, Karanbir has already attached sceenshot.
>
http://picasaweb.google.com/TheScriptDevil/Linux#5345011036176668466
Hope this throws some light

---

Ashok `ScriptDevil` Gautham
___
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] Try typing "linux" as the keyword in Bing.com

2009-06-08 Thread Karanbir Singh

On 08/06/09 05:09, Ashok Gautham wrote:

What about that do you find so odd ?


Do not click search. Just type in bing and wait fot the
auto-suggestions to pop up.


That is odd, I am guessing they are trying to do some grouping.

If you look at the wordtracker or the google keywords tool, you'll 
notice that 'linux windows' is almost never a search item, so its not 
something that bing is bringing in based on 'historically what people 
searched for'.


- KB
___
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] regular expression the check if a string is absent

2009-06-08 Thread Kenneth Gonsalves
On Monday 08 June 2009 18:10:26 Sivakumar Gopalan wrote:
> I am trying to build a regular expression that will find all strings
> that do
> not start with '2009/'. Any clues?
>
> Which language/script are you looking for, you can actually negate the
> result like in perl it is '!~' also grep has a command line option to do
> the same.

sorry, should have been more specific. This is an apache rewrite rule. My site 
is 

http://example.com

I want all calls to this site to be rewritten as
http://example.com/2009/. For example:
http://example.com/home/ should become http://example.com/2009/home/. So here 
the logic is that is the url does not start with '2009/', that should be 
inserted, otherwise it should be left alone.
-- 
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] regular expression the check if a string is absent

2009-06-08 Thread Venkatraman S
On Tue, Jun 9, 2009 at 10:19 AM, Kenneth Gonsalves
wrote:

> I want all calls to this site to be rewritten as
> http://example.com/2009/. For example:
> http://example.com/home/ should become http://example.com/2009/home/. So
> here
> the logic is that is the url does not start with '2009/', that should be
> inserted, otherwise it should be left alone.
>

Tried ReWriteCond + ReWriteRule?


RewriteCond $1 !^(2009)
RewriteRule ^(.*)$ /2009/$1


-V-
http://twitter.com/venkasub
___
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] To Delete GRUB Only

2009-06-08 Thread Ramkumar
Hi Friends,
 i would like to delete only Boot Loader in my machine. how
can i do it. i have dual boot (Linux & Windows XP) machine.







Thank You
Ramkumarcrk
-- 
www.opennetguru.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


[Ilugc] squid

2009-06-08 Thread Rajesh Kumar
Dear Ilugu

  I have used ubuntu Desktop. I like to configure squid in my
own system. How to I restric regex method in that system only. My system IP
is 192.168.0.55 and Gateway is 192.168.0.101. How to restric the google,
yahoo, cricinfo and raaga ...


By

Rajeshkumar
09894943041.
___
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] regular expression the check if a string is absent

2009-06-08 Thread Kenneth Gonsalves
On Tuesday 09 June 2009 10:41:29 Venkatraman S wrote:
> On Tue, Jun 9, 2009 at 10:19 AM, Kenneth Gonsalves
>
> wrote:
> > I want all calls to this site to be rewritten as
> > http://example.com/2009/. For example:
> > http://example.com/home/ should become http://example.com/2009/home/. So
> > here
> > the logic is that is the url does not start with '2009/', that should be
> > inserted, otherwise it should be left alone.
>
> Tried ReWriteCond + ReWriteRule?
>
> 
> RewriteCond $1 !^(2009)
> RewriteRule ^(.*)$ /2009/$1
> 

works

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


[Ilugc] Re: Problem Faced while install SVN

2009-06-08 Thread Kenneth Gonsalves
why are you sending this to me? Please send it to the LUG and put it up on the 
LUG wiki

On Tuesday 09 June 2009 11:15:01 you wrote:
>1. Install svn rpm via yum
>2. Initially I have  problem in BDB Installaion Error while install
>subversion  version is 1.4.6
>3.  Later I try to find out in website  with apr installation   and
>follow the procedure in the Read me file of SVN installation
>4.  I download from BDB Package and installed the apr
>5. Selinux is not able to allow my httpd port
>6. As discussed with T.Shrinivasan about this issue from Starting
> onwards he helped me  not  in spoon feed Manner  ( Thanks for that Approach
> )  I learn my Self Repeat and  Repeat Again  (Still I have some Doubts )  I
> solved to clear that Error
>7. later I have a Problem is in Repositary Authentication and
>Authorisation   Here I Thank to Stylesen Senthilkumaran   he clears me
>lot of doubt   I follow the svn book 1.4 version   he send me 1.6 with
>some latest information what I required .
>8. Modules are not loaded in svn   I installed separately after install
>apr  mod_auth, mod_authz, mod_authz_svn
>9. I implement what it says in that book as it is in before step by step
>I implement follow that book   svn implementation is worked
>10. I confused when I  provide password   for commit to server but
>mkactivity  403 forbidden error   ( From client place via tortoise svn )
>11. I feel  not connected or problem in server   but shrini tell about
> it go to step by step it works good
>12.  I do what he says   I watch the file error_log and access_ log file
>in server Find that the Default user( last user successfully commit to
>server ) is taking for commit to server   for that user I have
> permission for read only
>13. I changed the permission  read and write again check for commit  and
>clean the log of author usage to commit to the server  now it ask the
>authentication and authorization  and commit to server still I need to
>upgrade the svn 1.6.2  and (update the fedora 9 to 11 waiting for
> release )
>14. I am very happy at that moment  I try for this long periodMy MD
>is also very happy   Thanks for all Luggies
>
>  with Regards,
> Mettur Mohan

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


[Ilugc] Problem Faced in SVN Installation

2009-06-08 Thread mettur salem
   1. Install svn rpm via yum
   2. Initially I have  problem in BDB Installaion Error while install
   subversion  version is 1.4.6
   3.  Later I try to find out in website  with apr installation   and
   follow the procedure in the Read me file of SVN installation
   4.  I download from BDB Package and installed the apr
   5. Selinux is not able to allow my httpd port
   6. As discussed with T.Shrinivasan about this issue from Starting onwards
   he helped me  not  in spoon feed Manner  ( Thanks for that Approach )  I
   learn my Self Repeat and  Repeat Again  (Still I have some Doubts )  I
   solved to clear that Error
   7. later I have a Problem is in Repositary Authentication and
   Authorisation   Here I Thank to Stylesen Senthilkumaran   he clears me
   lot of doubt   I follow the svn book 1.4 version   he send me 1.6 with
   some latest information what I required .
   8. Modules are not loaded in svn   I installed separately after install
   apr  mod_auth, mod_authz, mod_authz_svn
   9. I implement what it says in that book as it is in before step by step
   I implement follow that book   svn implementation is worked
   10. I confused when I  provide password   for commit to server but
   mkactivity  403 forbidden error   ( From client place via tortoise svn )
   11. I feel  not connected or problem in server   but shrini tell about it
   go to step by step it works good
   12.  I do what he says   I watch the file error_log and access_ log file
   in server Find that the Default user( last user successfully commit to
   server ) is taking for commit to server   for that user I have permission
   for read only
   13. I changed the permission  read and write again check for commit  and
   clean the log of author usage to commit to the server  now it ask the
   authentication and authorization  and commit to server still I need to
   upgrade the svn 1.6.2  and (update the fedora 9 to 11 waiting for release
   )
   14. All These  mailing information are posting to LUG  and good Responses
   from lug members especially stylesen, t.shrinivasan, Kenneth, sivakumar
   15. I am very happy at that moment  I try for this long periodMy MD
   is also very happy   Thanks for all Luggies

 with Regards,
Mettur Mohan
___
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