Re: [ilugd] Database Clustering using php

2012-02-11 Thread Rakesh Kumar
On Sat, Feb 11, 2012 at 2:32 PM, S B  wrote:

>
> Hi Rakesh,
>
> Did you get any useful inputs?
>
> Thanks,
> Sid
>
> -Original Message-
> From: ilugd-bounces+siliconpinews=gmail@lists.linux-delhi.org
> [mailto:ilugd-bounces+siliconpinews=gmail@lists.linux-delhi.org] On
> Behalf Of Rakesh Kumar
> Sent: Friday, February 10, 2012 11:04 AM
> To: The Linux-Delhi mailing list
> Subject: [ilugd] Database Clustering using php
>
> Hi All,
> I am facing a problem and that is, i have to create an web application
> which requires 24x7 Availability and so they asked me to have a clustered
> database. In this case if one server in down/unavailable we can retrieve
> data from other server, a kind of master slave database system. This will
> definitely provide better availability to the users. Now my problem is i
> have never developed this sort of system before and i have to create it
> preferably in PHP.
> There are several problems that i have analyzed so far are followings-
> 1 - How data is going to be stored on the servers simultaneously?
> 2 - If one server is down/unavailable and we perform some transactions from
> one server, how this will get updated from other server so that when it
> becomes available, it uses updated information?
> I want some guidance from here.
>
> --
> Regards
> RAKESH KUMAR
> http://raakeshkumar.wordpress.com
> ___
> Ilugd mailing list
> Ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
>
>

Not Yet.. Please provide any fruitful suggestion to solve this. My
experience based on studies done so far is, i can have a master database
and other slave database servers would be connected with this via LAN and
master would be responsible to update other slaves.
But this is still doubtful that when master is down slaves should serve the
requests and so they must be updated so that every instance viewed by the
user should give them correct information and same should be with master
server.
-- 
Regards
RAKESH KUMAR
http://raakeshkumar.wordpress.com
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


[ilugd] Database Clustering using php

2012-02-09 Thread Rakesh Kumar
Hi All,
I am facing a problem and that is, i have to create an web application
which requires 24x7 Availability and so they asked me to have a clustered
database. In this case if one server in down/unavailable we can retrieve
data from other server, a kind of master slave database system. This will
definitely provide better availability to the users. Now my problem is i
have never developed this sort of system before and i have to create it
preferably in PHP.
There are several problems that i have analyzed so far are followings-
1 - How data is going to be stored on the servers simultaneously?
2 - If one server is down/unavailable and we perform some transactions from
one server, how this will get updated from other server so that when it
becomes available, it uses updated information?
I want some guidance from here.

-- 
Regards
RAKESH KUMAR
http://raakeshkumar.wordpress.com
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] MySql Bug

2012-02-09 Thread Rakesh Kumar
On Thu, Feb 9, 2012 at 3:03 PM, Rakesh Kumar  wrote:

>
>
> On Thu, Feb 9, 2012 at 3:01 PM, Rakesh Kumar  wrote:
>
>>
>>
>> On Thu, Feb 9, 2012 at 2:49 PM, Gaurav Paliwal <
>> gaurav.paliwal1...@gmail.com> wrote:
>>
>>> hi,
>>> which engine you are currently using ?
>>>
>>> On 2/9/12, Rakesh Kumar  wrote:
>>> > Hi All,
>>> > I am facing a problem in MySql that even if i set 'NOT NULL' constraint
>>> > while creating a table, mysql allows null values in the database. Is it
>>> > true with every mysql distribution or is an error in my server? I have
>>> > searched on internet and found that many people have reported this
>>> thing as
>>> > a bug. Can somebody suggest me something fruitful?
>>> >
>>> > --
>>> > Thanks and Regards
>>> > RAKESH KUMAR
>>> > http://raakeshkumar.wordpress.com
>>> > ___
>>> > Ilugd mailing list
>>> > Ilugd@lists.linux-delhi.org
>>> > http://frodo.hserus.net/mailman/listinfo/ilugd
>>> >
>>>
>>>
>>> --
>>> With Regards,
>>> Gaurav Paliwal
>>> http://gauravpaliwal.com
>>>
>>
>>
>> InnoDb Engine.. and version is 5.5.8...
>> --
>> Regards
>> RAKESH KUMAR
>> http://raakeshkumar.wordpress.com
>>
>>
>>
> Sorry i forgot to send it to group...
> Engine is InnoDb Engine.. and version is 5.5.8...
>
> --
> Regards
> RAKESH KUMAR
> http://raakeshkumar.wordpress.com
>
>
>

And I am using phpMyAdmin for this though i have a separate java program to
do this... Ok now at this point i wanna ask that is it that if i use
different engines then syntax of query also change accordingly? I have
facing a problem here that is i have set few fields which can be blank and
used innodb engine then i wrote a query to select which was-
SELECT * from tablename WHERE field IS NULL
then when i imported this database to other system with MyIsam engine this
query didn't work and i had to change the query which was:
SELECT * from tablename WHERE field = "";
Please guide me..
-- 
Regards
RAKESH KUMAR
http://raakeshkumar.wordpress.com
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] MySql Bug

2012-02-09 Thread Rakesh Kumar
On Thu, Feb 9, 2012 at 3:01 PM, Rakesh Kumar  wrote:

>
>
> On Thu, Feb 9, 2012 at 2:49 PM, Gaurav Paliwal <
> gaurav.paliwal1...@gmail.com> wrote:
>
>> hi,
>> which engine you are currently using ?
>>
>> On 2/9/12, Rakesh Kumar  wrote:
>> > Hi All,
>> > I am facing a problem in MySql that even if i set 'NOT NULL' constraint
>> > while creating a table, mysql allows null values in the database. Is it
>> > true with every mysql distribution or is an error in my server? I have
>> > searched on internet and found that many people have reported this
>> thing as
>> > a bug. Can somebody suggest me something fruitful?
>> >
>> > --
>> > Thanks and Regards
>> > RAKESH KUMAR
>> > http://raakeshkumar.wordpress.com
>> > ___
>> > Ilugd mailing list
>> > Ilugd@lists.linux-delhi.org
>> > http://frodo.hserus.net/mailman/listinfo/ilugd
>> >
>>
>>
>> --
>> With Regards,
>> Gaurav Paliwal
>> http://gauravpaliwal.com
>>
>
>
> InnoDb Engine.. and version is 5.5.8...
> --
> Regards
> RAKESH KUMAR
> http://raakeshkumar.wordpress.com
>
>
>
Sorry i forgot to send it to group...
Engine is InnoDb Engine.. and version is 5.5.8...
-- 
Regards
RAKESH KUMAR
http://raakeshkumar.wordpress.com
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


[ilugd] MySql Bug

2012-02-08 Thread Rakesh Kumar
Hi All,
I am facing a problem in MySql that even if i set 'NOT NULL' constraint
while creating a table, mysql allows null values in the database. Is it
true with every mysql distribution or is an error in my server? I have
searched on internet and found that many people have reported this thing as
a bug. Can somebody suggest me something fruitful?

-- 
Thanks and Regards
RAKESH KUMAR
http://raakeshkumar.wordpress.com
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] Increasing fonts of the website dynamically

2012-01-30 Thread Rakesh Kumar
On Tue, Jan 31, 2012 at 12:50 PM, Vivek Puri
wrote:

> Can i do the similar thing for background and other stuffs provided in
>> "mit" website? Please help.
>>
>
> Yes you can. I think this thread has enough info for you to get going.
> Only thing missing is for someone to write the code for you ;)
>
> rgds
> vivek
>
>
> --
> http://www.twitter.com/vivpuri | http://www.machint.com
>
>
> __**_
> Ilugd mailing list
> Ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/**mailman/listinfo/ilugd<http://frodo.hserus.net/mailman/listinfo/ilugd>
>


I haven't asked for the code yet. It's because i am not a designer and
whenever my designers talk vague which seems to be illogical, i raise
questions here.
-- 
Regards
RAKESH KUMAR
http://raakeshkumar.wordpress.com
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] Increasing fonts of the website dynamically

2012-01-30 Thread Rakesh Kumar
On Tue, Jan 31, 2012 at 1:13 AM, Viksit Gaur  wrote:

>
>
> > From: Rakesh Kumar 
> > How can i put font attribute in the body tag when my page is using
> > different fonts at different place.
> > I @Swapnil... I am not using any CMS but php code itself. For the time
> > being i have done it by creating different CSSs but this doesn't seem to
> be
> > very logical for varying font size.
> > --
>
> Doing this required a CSS change on your side. If you look at the
> mit.nic.in website, adding a 'font-size: 1em' to the body tag changes the
> page as you'd like. Try it out on firebug or chrome developer tools. The
> main object here is - specify a font-size in the body, and have all the
> other font-sizes on the page be percentages or ems.
>
> - Viksit
>
>

Can i do the similar thing for background and other stuffs provided in
"mit" website? Please help.
-- 
Regards
RAKESH KUMAR
http://raakeshkumar.wordpress.com
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] Increasing fonts of the website dynamically

2012-01-30 Thread Rakesh Kumar
On Mon, Jan 30, 2012 at 2:45 PM, Swapnil Bhartiya <
swapnil.bhart...@gmail.com> wrote:

> On 01/30/2012 08:24 AM, Viksit Gaur wrote:
>
>> - Original Message -
>>
>> From: Rakesh Kumar
>> To: The Linux-Delhi mailing 
>> list
>> >
>> Cc:
>> Sent: Friday, January 27, 2012 1:27 AM
>> Subject: [ilugd]  Increasing fonts of the website dynamically
>>
>> Hi All,
>> We are working on a web project and we have been asked to develop this in
>> such a way that visitors can change the site's font dynamically as they
>> wish.
>> This is a reference site, please take a look and help-
>> http://www.mit.gov.in.
>> In the mean time i am also googling it.
>> First i thought to create different CSSs for this but this doesn't seem to
>> be helpful in this case because this site saves the font size you have set
>> once.
>>
>
> Which CMS are you using? If using Drupal/WordPress there are
> plugins/modules to do it easily.
>
> Swapnil
>
>
>
>>
> __**_
> Ilugd mailing list
> Ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/**mailman/listinfo/ilugd<http://frodo.hserus.net/mailman/listinfo/ilugd>
>


How can i put font attribute in the body tag when my page is using
different fonts at different place.
I @Swapnil... I am not using any CMS but php code itself. For the time
being i have done it by creating different CSSs but this doesn't seem to be
very logical for varying font size.
-- 
Regards
RAKESH KUMAR
http://raakeshkumar.wordpress.com
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] Increasing fonts of the website dynamically

2012-01-27 Thread Rakesh Kumar
On Fri, Jan 27, 2012 at 2:57 PM, Rakesh Kumar  wrote:

> Hi All,
> We are working on a web project and we have been asked to develop this in
> such a way that visitors can change the site's font dynamically as they
> wish.
> This is a reference site, please take a look and help-
> http://www.mit.gov.in. In the mean time i am also googling it.
> First i thought to create different CSSs for this but this doesn't seem to
> be helpful in this case because this site saves the font size you have set
> once.
>
> --
> Thanks and Regards
> RAKESH KUMAR <http://raakeshkumar.wordpress.com>
>
>
>

What we store font size in php session and have different CSSs for each? or
is there any short method to do this?
-- 
Regards
RAKESH KUMAR
http://raakeshkumar.wordpress.com
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


[ilugd] Increasing fonts of the website dynamically

2012-01-27 Thread Rakesh Kumar
Hi All,
We are working on a web project and we have been asked to develop this in
such a way that visitors can change the site's font dynamically as they
wish.
This is a reference site, please take a look and help- http://www.mit.gov.in.
In the mean time i am also googling it.
First i thought to create different CSSs for this but this doesn't seem to
be helpful in this case because this site saves the font size you have set
once.

-- 
Thanks and Regards
RAKESH KUMAR <http://raakeshkumar.wordpress.com>
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


[ilugd] [commercial] Need a job in Java/J2EE as a fresher

2011-07-18 Thread Rakesh Kumar
Hi,
I am a fresher and looking for a job in Java/J2EE development. Can
somebody please suggest me any job or can give me some ideas regarding
this.

Qualification: B Tech(CSE) in 2011 with 70.53%
Key Skills: Java, J2EE, PHP.
Preferred Job Location: Delhi/NCR


-- 
Thanks and Regards
RAKESH KUMAR

___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] Query

2011-05-08 Thread Rakesh Kumar
[...]
On Sun, May 8, 2011 at 1:07 AM, Swapnil Bhartiya  wrote:
>
> The best solution is use MiniTube app which has a download button.
> Swapnil
>
>
> ___
> Ilugd mailing list
> Ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
>
[...]
There is nothing like best, you can try anyone of them. I particularly use
an addon "Download Helper". It not only download videos for me but can
change the format of videos also. I can use it to download light form of
video as well as HD form of the same video by just clicking on options.
AFAIK this add-on works not only for youtube but for any downloadable
resource.

-- 
Regards
RAKESH KUMAR
http://www.openwebtech.in
http://raakeshkumar.wordpress.com


WebRep
Overall rating
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] Question about SWAP and tempfs

2011-04-25 Thread Rakesh Kumar
[...]
On Mon, Apr 25, 2011 at 12:49 PM, Amit Sharma  wrote:

> Hi,
>
> Couple of questions:
>
> 1. SWAP partition must always be 2 x RAM? My machien has 48 GB RAM. I have
> to create 96GB SWAP partition? Isn't 4 GB or 8 GB good enough?
>
[...]
SWAP partition should be and not "must be" 2 x RAM. It's a rule of thumb
that you should have this much RAM. Your swap size depends upon the
applications you are gonna use. I agree with Ankit and would suggest that
8-10 GB swap is enough and keep monitoring it.
As i know modern kernels comes with a parameter *swappiness* and it's
parameters varies from 1 to 100. Higher values lead to more pages being
swapped, and lower values lead to more applications being kept in memory,
even if they are idle. By default it's set to 60(not sure) so you can change
it also to see if it fits you.

>
> 2. tempfs consumes half of RAM i.e. 24GB in my case as I have 48 GB of
> physical RAM installed. Can I reduce it to say 8GB? Can it be done? How? Is
> it recommended to reduce tempfs?
>
regards,
> Amit Sharma
>
>
> Thanks and Regards,
> Amit Sharma
>
> ___
> Ilugd mailing list
> Ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
>



-- 
Regards
RAKESH KUMAR
http://www.openwebtech.in
http://raakeshkumar.wordpress.com
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] [Off-topic] Need Help to write a twitter application

2011-04-11 Thread Rakesh Kumar
On Tue, Apr 12, 2011 at 1:31 AM, Sahil Dave  wrote:

>
>
> On Tue, Apr 12, 2011 at 12:44 AM, Rakesh Kumar wrote:
>
>>
>> I have been using OAuth API for php to login and do required stuffs. I am
>> not aware of json. can you tell me how to deploy it on my local server?
>> And thanks for your help.
>>
>>
> JSON is just a platform independent data interchange format, like XML.
> You'd be better off reading up on JSON first, http://www.json.org/
>
> I am not a php guy, but almost all modern languages give you a library
> module to play around using JSON. Find one for php.
>
Yes i got it..

> Hope this helps.
>
> --
> Sahil Dave
>

Thanks to both of you for helping me. Otherwise i would have been working
with that OAuth API and couldn't get appropriate result.

-- 
Regards
RAKESH KUMAR
http://www.openwebtech.in
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] [Off-topic] Need Help to write a twitter application

2011-04-11 Thread Rakesh Kumar
On Mon, Apr 11, 2011 at 11:59 PM, Gaurav Mishra wrote:

> On Mon, Apr 11, 2011 at 5:38 PM, Rakesh Kumar  wrote:
> > For example if i want to search tweets of "Cloud Magic(a user)" and i
> search
> > with it's post id "cldmgc", at least 10 results show be fetched in one
> > result set.
> >
>
> Twitter search api need not to authenticate, to get search results a
> simple json query via the url
> http://search.twitter.com/search.json?q=Cloud%20Magic would be enough.
>
> >  Although i came to know that it can be done by writing some lines of php
> > codes(APIs provided by others) but it only shows one result related to
> that
> > keyword.
>
> Above URL shows more than 1 result, what is the API call you are using ?
>
> Regards,
> Gaurav Mishra
>
> # Blog: http://www.gmishra.com
> # Twitter: http://www.twitter.com/gmishra
> # LinkedIn:http://www.linkedin.com/in/gauravmishra7
>
> ___
> Ilugd mailing list
> Ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
>


I have been using OAuth API for php to login and do required stuffs. I am
not aware of json. can you tell me how to deploy it on my local server?
And thanks for your help.
-- 
Thanks and Regards
RAKESH KUMAR
http://www.openwebtech.in
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


[ilugd] Need Help to write a twitter application

2011-04-11 Thread Rakesh Kumar
Hi,
I am writing a web application to view, update, and find tweets from any
twitter account. Means anybody can log in to his/her twitter account and
control it. In this regard i have got some results but there is a problem
that i am not able to find anything which could facilitate to search any
tweet by keyword.
For example if i want to search tweets of "Cloud Magic(a user)" and i search
with it's post id "cldmgc", at least 10 results show be fetched in one
result set.

 Although i came to know that it can be done by writing some lines of php
codes(APIs provided by others) but it only shows one result related to that
keyword.
If anybody has any experience in this context, please help me.

-- 
Thanks and Regards
RAKESH KUMAR
http://www.openwebtech.in
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


[ilugd] [commercial] KNMIET workshop, Need a teacher

2011-04-05 Thread Rakesh Kumar
Hi All,
An Engineering college Dr K N Modi Institute of Engineering
and Technology,Ghaziabad is going to organize a national level summit
on Environment Saving and as a part of this they are organizing a
workshop on Web Development for their college students. Topics that
should be covered are:

1: Basic and Advance Java Script and J query(optional).
2: CMSs (preferably Drupal and Wordpress).
3: Hosting a websites (issues in hosting like securities,maintenance and all).

This a one day paid workshop and so tutor will be paid. This workshop
will be organized on 10th of April and interested persons are
requested to contact me offline by tomorrow evening with their
requirements(if any).

Contact Details: kumar3...@gmail.com
Phone No: +91-9580089901

-- 
Regards
RAKESH KUMAR
http://www.openwebtech.in

___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] ILUGD meeting

2011-03-29 Thread Rakesh Kumar
[...]

On Tue, Mar 29, 2011 at 4:59 PM, Gora Mohanty  wrote:
>
> On Tue, Mar 29, 2011 at 4:37 PM, Pratul Kalia  wrote:
> > On Tue, Mar 29, 2011 at 4:34 PM, Gaurav Mishra  
> > wrote:
> [...]
> > Me.
> > Also, every time you send a rich text email, Gora kills a kitten. Don't do 
> > that.
> [...]
>
> Hmm, was it rich text. Hadn't noticed. However, you are
> right, I will now have to kill someone on general principle.
>
> Regards,
> Gora
>
> ___
> Ilugd mailing list
> Ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd

[...]
Sorry i couldn't understand above thread. By the way any weekend would
be fine. Count me in.

--
Regards
RAKESH KUMAR
http://www.openwebtech.in

___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] Detections of GPL violations, and compliance efforts

2011-03-28 Thread Rakesh Kumar
On Mon, Mar 28, 2011 at 9:14 AM, Gora Mohanty  wrote:

> Hello everyone,
>
> Are people interested in becoming involved in efforts
> by SFLC, India in detecting violations of open-source
> licenses, and in bringing software vendors into compliance?
> There are largely two parts to this:
> * The first is looking for violations in binary code, usually
>   in embedded devices. The most common form of
>   violation here is the unauthorised use of BusyBox.
>   As people here might not be familiar with the subject,
>   SFLC, India is willing to arrange a 2-3 day training session
>   with an expert from the US. While the session will be
>   open to all, the expense can be justified only if at
>   least a few people commit some time (say, a few
>   hours/week) to working with SFLC, India on this.
> * The second part is compliance efforts. Often, these
>   are not antagonistic, i.e., software vendors are
>   willing to have their code audited for licensing violations
>   that they were not aware of. This should be of interest
>   to people working on machine learning, and similarity.
>  There can also be a commercial angle to this: Black
>   Duck software, for example, has (closed-source) commercial
>   tools that do this:
>   http://www.blackducksoftware.com/learn/open-source-compliance
>
> Please note that in both cases above, the intent is to
> bring violators into compliance, and *not* to spawn
> litigation. If you are interested, please follow up here.
> Especially for the first part, the training session will happen
> only if there is sufficient committed interest.
>
> Regards,
> Gora
>
> ___
> Ilugd mailing list
> Ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
>


I am also interested in this. Count me in...
-- 
Regards
RAKESH KUMAR
http://www.openwebtech.in
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] Events: GNOME 3 Launch, Firefox 4 Launch, Document Freedom Day

2011-03-07 Thread Rakesh Kumar
count me in.

On 3/4/11, Gaurang Aggarwal  wrote:
> Myself
>
>   Gaurang aggarwal
>
> On Mar 4, 2011 12:10 PM, "Pratul Kalia"  wrote:
>
> On Fri, Mar 4, 2011 at 11:55 AM, Kinshuk Sunil 
> wrote:
>> I was wondering if ...
> [ snipped ]
>
> self.
>
>
> --
> dum vivimus, vivamus
> pratul == lut4rp
> http://pratul.in
>
>
> ___
> Ilugd mailing list
> Ilugd@lists.linux-delhi.org
> http...
> ___
> Ilugd mailing list
> Ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
>


-- 
Regards
RAKESH KUMAR
http://www.openwebtech.in

___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] Looking for volunteers for workshop(s) in AKG Engineering College, Ghaziabad: Feb. 5th/19th

2011-01-28 Thread Rakesh Kumar
On Fri, Jan 28, 2011 at 3:34 PM, Gaurang Aggarwal wrote:

> I won't be able to come on either dates . Please schedule it according to
> your timings .
>
@Gora Sir,
This is a mail sent to me by Gaurang. Now what do you say?

> On Jan 27, 2011 8:04 PM, "Rakesh Kumar"  wrote:
>
> On Wed, Jan 26, 2011 at 11:25 AM, Rakesh Kumar 
> wrote:
>
> >
> >
> > On Wed, Jan 26, 2...
> Hi all,
>As Gaurang is available on 5th only, shall we reschedule it? I
> haven't seen any post regarding this. Please finalize it now. And i don't
> think that we can teach anybody programming in MVC or three tier
> architecture in just one day until he/she doesn't know about it (at least
> theoretically IMHO). So i would suggest to keep Zend session optional and
> in
> advance topics i will try to cover all those things that will be left by
> Arindam.
> --
>
> Regards
> RAKESH KUMAR
> http://www.openwebtech.in
> ___
> Ilugd...
>
>


-- 
Regards
RAKESH KUMAR
http://www.openwebtech.in
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] Looking for volunteers for workshop(s) in AKG Engineering College, Ghaziabad: Feb. 5th/19th

2011-01-27 Thread Rakesh Kumar
On Fri, Jan 28, 2011 at 12:40 PM, Gora Mohanty  wrote:

> On Tue, Jan 25, 2011 at 1:14 PM, Rakesh Kumar  wrote:
> [...]
> > Can i come with some new foss people who actually want to learn PHP?
> There
> > are two or three people who want to come along with me.
> [...]
>
> Yes, you can have them come along.
>
> We have always insisted that any such workshops be open
> to students from all colleges, and I will emphasise that again
> when I talk to Prof. Mittal at AKGEC.
>
> Regards,
> Gora
>
> ___
> Ilugd mailing list
> Ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
>


Ok then finalize it. I am ready with this. But even if my session is on 19th
i would like to come there on 5th also, to learn from others.
-- 
Regards
RAKESH KUMAR
http://www.openwebtech.in
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] Looking for volunteers for workshop(s) in AKG Engineering College, Ghaziabad: Feb. 5th/19th

2011-01-27 Thread Rakesh Kumar
On Wed, Jan 26, 2011 at 11:25 AM, Rakesh Kumar  wrote:

>
>
> On Wed, Jan 26, 2011 at 9:49 AM, neeraj kumar wrote:
>
>> Hi All,
>>
>> Are we circulating a mail requesting the Name, Email Id of students who
>> are interested in attending the program from AKG ?
>>
>> I believe their email ids would help us exchange few mails before we
>> actually go and present there on 5th Feb.
>>
>> Through those mails we can share content which will stimulate them to
>> attend the program. We would mention some facts, what we are discussing and
>> how it would help them get competitive advantage in their career...
>>
>> Just got an idea... need your suggestions and comments.
>>
>> Thanks
>> Neeraj
>>
>> On Tue, Jan 25, 2011 at 1:14 PM, Rakesh Kumar wrote:
>>
>>> On Tue, Jan 25, 2011 at 1:10 PM, Rakesh Kumar 
>>> wrote:
>>>
>>> >
>>> >
>>> > On Tue, Jan 25, 2011 at 11:32 AM, Gaurang Aggarwal >> >wrote:
>>> >
>>> >> Hello
>>> >> I am okay with zend and I am only available on 5th .
>>> >>
>>> > Gora Sir will reply on it better.
>>> >
>>> >>  Rakesh , we should have basic introduction on drupal on 5 th
>>> >>
>>> > I am ready but look at the previous postings. I totally agree with Gora
>>> Sir
>>> > but if you are available on 5th and comfortable with Zend then we both
>>> can
>>> > present on Zend (MVC and other architectures).
>>> >
>>> >> Also I love giving interactive sessions so I would give on php
>>> >> intermediate level , drupal
>>> >>
>>> > If you are coming on 5th we together can give interactive session on
>>> PHP
>>> > and Drupal but before that let Gora Sir clarify it.
>>> >
>>> >> Also you can't teach programing in few hours .
>>> >>
>>> > Definitely, but we are not going to teach them but to introduce them
>>> with
>>> > PHP, and not as a lecturer. "No one can become a programmer without
>>> > programming". We all are open source evangelists and this is not our
>>> duty to
>>> > force other to accept but all we can do is we can promote open source
>>> let
>>> > them decide whether they want to accept it.
>>> >
>>> > And i think we should finalize it now.
>>> >
>>> >> On Jan 25, 2011 10:12 AM, "Rakesh Kumar"  wrote:
>>> >>
>>> >> On Sun, Jan 23, 2011 at 10:40 PM, Gora Mohanty 
>>> >> wrote:
>>> >>
>>> >> > Hi,
>>> >> >
>>> >> > Sorry. Had mis...
>>> >> Ok that's it. Lets finalize it. I will present Advance topics and use
>>> of
>>> >> Zend framework.
>>> >>
>>> >> --
>>> >> Regards
>>> >> RAKESH
>>> >> openwebtech.in
>>> >>
>>> >> ___
>>> >>
>>> >> Ilugd mailing list
>>> >> Ilugd@lists.linux-delhi.org
>>> >> http:...
>>> >>
>>> >>
>>> >
>>> >
>>> > --
>>> > Regards
>>> > RAKESH
>>> > "Allow Your Own Inner Light to Guide You"
>>> >
>>>
>>> Can i come with some new foss people who actually want to learn PHP?
>>> There
>>> are two or three people who want to come along with me.
>>>
>>> --
>>> Regards
>>> RAKESH KUMAR
>>> http://www.openwebtech.in
>>> ___
>>> Ilugd mailing list
>>> Ilugd@lists.linux-delhi.org
>>> http://frodo.hserus.net/mailman/listinfo/ilugd
>>>
>>
>>
>>
>> --
>> Thanks & Regards,
>>
>> Neeraj Kumar
>> PGDM, Marketing and Operations
>> IMT G!
>> Contact#9312645457
>> Follow me on Twitter:  @neerajimtg
>> Join me on Facebook:  http://www.facebook.com/myself.neeraj
>> Check my profile on LinkedIn: http://www.linkedin.com/in/neerajimtg
>> Check my Blogs: http://blogs.e-bizznet.com
>>
>
>
> Neeraj first of all keep all persons on the list when you post anything. I
> don't think we really need that.
> --
> Regards
> RAKESH KUMAR
> http://www.openwebtech.in
>
>
>

Hi all,
As Gaurang is available on 5th only, shall we reschedule it? I
haven't seen any post regarding this. Please finalize it now. And i don't
think that we can teach anybody programming in MVC or three tier
architecture in just one day until he/she doesn't know about it (at least
theoretically IMHO). So i would suggest to keep Zend session optional and in
advance topics i will try to cover all those things that will be left by
Arindam.
-- 
Regards
RAKESH KUMAR
http://www.openwebtech.in
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] Looking for volunteers for workshop(s) in AKG Engineering College, Ghaziabad: Feb. 5th/19th

2011-01-25 Thread Rakesh Kumar
On Wed, Jan 26, 2011 at 9:49 AM, neeraj kumar wrote:

> Hi All,
>
> Are we circulating a mail requesting the Name, Email Id of students who are
> interested in attending the program from AKG ?
>
> I believe their email ids would help us exchange few mails before we
> actually go and present there on 5th Feb.
>
> Through those mails we can share content which will stimulate them to
> attend the program. We would mention some facts, what we are discussing and
> how it would help them get competitive advantage in their career...
>
> Just got an idea... need your suggestions and comments.
>
> Thanks
> Neeraj
>
> On Tue, Jan 25, 2011 at 1:14 PM, Rakesh Kumar  wrote:
>
>> On Tue, Jan 25, 2011 at 1:10 PM, Rakesh Kumar 
>> wrote:
>>
>> >
>> >
>> > On Tue, Jan 25, 2011 at 11:32 AM, Gaurang Aggarwal > >wrote:
>> >
>> >> Hello
>> >> I am okay with zend and I am only available on 5th .
>> >>
>> > Gora Sir will reply on it better.
>> >
>> >>  Rakesh , we should have basic introduction on drupal on 5 th
>> >>
>> > I am ready but look at the previous postings. I totally agree with Gora
>> Sir
>> > but if you are available on 5th and comfortable with Zend then we both
>> can
>> > present on Zend (MVC and other architectures).
>> >
>> >> Also I love giving interactive sessions so I would give on php
>> >> intermediate level , drupal
>> >>
>> > If you are coming on 5th we together can give interactive session on PHP
>> > and Drupal but before that let Gora Sir clarify it.
>> >
>> >> Also you can't teach programing in few hours .
>> >>
>> > Definitely, but we are not going to teach them but to introduce them
>> with
>> > PHP, and not as a lecturer. "No one can become a programmer without
>> > programming". We all are open source evangelists and this is not our
>> duty to
>> > force other to accept but all we can do is we can promote open source
>> let
>> > them decide whether they want to accept it.
>> >
>> > And i think we should finalize it now.
>> >
>> >> On Jan 25, 2011 10:12 AM, "Rakesh Kumar"  wrote:
>> >>
>> >> On Sun, Jan 23, 2011 at 10:40 PM, Gora Mohanty 
>> >> wrote:
>> >>
>> >> > Hi,
>> >> >
>> >> > Sorry. Had mis...
>> >> Ok that's it. Lets finalize it. I will present Advance topics and use
>> of
>> >> Zend framework.
>> >>
>> >> --
>> >> Regards
>> >> RAKESH
>> >> openwebtech.in
>> >>
>> >> ___
>> >>
>> >> Ilugd mailing list
>> >> Ilugd@lists.linux-delhi.org
>> >> http:...
>> >>
>> >>
>> >
>> >
>> > --
>> > Regards
>> > RAKESH
>> > "Allow Your Own Inner Light to Guide You"
>> >
>>
>> Can i come with some new foss people who actually want to learn PHP? There
>> are two or three people who want to come along with me.
>>
>> --
>> Regards
>> RAKESH KUMAR
>> http://www.openwebtech.in
>> ___
>> Ilugd mailing list
>> Ilugd@lists.linux-delhi.org
>> http://frodo.hserus.net/mailman/listinfo/ilugd
>>
>
>
>
> --
> Thanks & Regards,
>
> Neeraj Kumar
> PGDM, Marketing and Operations
> IMT G!
> Contact#9312645457
> Follow me on Twitter:  @neerajimtg
> Join me on Facebook:  http://www.facebook.com/myself.neeraj
> Check my profile on LinkedIn: http://www.linkedin.com/in/neerajimtg
> Check my Blogs: http://blogs.e-bizznet.com
>


Neeraj first of all keep all persons on the list when you post anything. I
don't think we really need that.
-- 
Regards
RAKESH KUMAR
http://www.openwebtech.in
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] [JIITU-LUG:1103] Super Awesome News - GSoC 2011 is on!!

2011-01-25 Thread Rakesh Kumar
On Tue, Jan 25, 2011 at 3:16 PM, flyankur  wrote:

> For to get help selecting your Mentoring organisation, here is a
> categorized
> list of all opensource organisations participating
>
> http://opensource.jiitu.org/wiki/index.php?title=GSoC_Organisations
>  <http://opensource.jiitu.org/wiki/index.php?title=GSoC_Organisations>
> - Ankur Saxena
>
>
> On Tue, Jan 25, 2011 at 3:07 PM, flyankur  wrote:
>
> >
> > -- Forwarded message --
> > From: Vishal Garg 
> > Date: Tue, Jan 25, 2011 at 11:13 AM
> > Subject: [JIITU-LUG:1103] Super Awesome News - GSoC 2011 is on!!
> > To: jiit...@googlegroups.com
> >
> >
> > Hi,
> >
> > Google Summer of Code '11 was announced yesterday! For those of you who
> do
> > not know about GSoC, it as an annual Open source internship program run
> and
> > sponsored by Google. Students get to work with amazing organizations and
> > developers for more than 3 months. If that is not enough, you also get
> > awesome Google SWAG, certificate and 5000$ stipend :)
> >
> > The number of students that are going to be selected this year has been
> > increased by 25% (~1250) this year.
> >
> > Complete info - http://socghop.appspot.com/
> >
> > Spread the word around, since we need to increased the awareness.
> >
> > How about a lecture/talk on GSoC?
> >
> >
> > *VISHAL GARG*
> > __
> > Linux User # 487206
> > Twitter : http://twitter.com/vishalgarg09
> >
> > PS: Replying using bottom post/in-line post makes email conversations
> whole
> > lot easier for meaningful dialogue. Snip out what is not relevant. Adopt
> > this and spread the message.
> >
> > --
> > You are a proud member of JIIT-LUG Community.
> > Have something to share, send an email to jiit...@googlegroups.com
> > To unsubscribe from this group, send email to
> > jiitlug+unsubscr...@googlegroups.com
> 
> >
> > Check out for more options:
> > http://groups.google.com/group/jiitlug?hl=en?hl=en
> >
> >
> ___
> Ilugd mailing list
> Ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
>


I visited that but perhaps student registration will open in march.
-- 
Regards
RAKESH KUMAR
http://www.openwebtech.in
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] KEYBOARD Problem

2011-01-24 Thread Rakesh Kumar
On Tue, Jan 25, 2011 at 12:49 PM, Amar Akshat  wrote:

> With Lenovo series laptops, i faced the same problem, but that was due
> to moisture which creped through the pores in the keyboard. I used a
> hair dryer and it started working fine. What basically happens is the
> moisture sticks to the dust particles inside the keyboard, and it
> forms a thick syrup kind of thing which somehow makes the laptop
> behave weirdly !
>
> Thanks and Regards
>
> ~A
>
> On Tue, Jan 25, 2011 at 11:57 AM, Anil Seth  wrote:
> > You may need to explain what is Windows 7 on this list.
> >
> > Anill
> >
> > On 25 January 2011 10:13, ashish gupta  wrote:
> >> Hi All,
> >>
> >> My keyboard is not working properly from last couple of the days.I m
> have
> >> lenovo Y500 series laptop with windows 7 . Without pressing function
> key(Fn)
> >> its working as when i press fn key .and shift+ those key for capital
> latter
> >> (ex I,O,P) is not working .
> >> if any body know what should i have to do to overcome with this problem
> >> .please let me know
> >>
> >> thanks
> >>
> >> --
> >> *Regards *
> >> *Ashish Kumar *
> >> *mob No :9989273252*
> >> ___
> >> Ilugd mailing list
> >> Ilugd@lists.linux-delhi.org
> >> http://frodo.hserus.net/mailman/listinfo/ilugd
> >>
> >
> > ___
> > Ilugd mailing list
> > Ilugd@lists.linux-delhi.org
> > http://frodo.hserus.net/mailman/listinfo/ilugd
> >
>
>
>
> --
> Amar Akshat
> Wells Fargo
>
> "Real Programmers always confuse Christmas and Halloween because Oct31
> == Dec25."
>
> ___
> Ilugd mailing list
> Ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
>


Totally agree with Anil. We don't know WINDOWS 7.
-- 
Regards
RAKESH KUMAR
http://www.openwebtech.in
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] Looking for volunteers for workshop(s) in AKG Engineering College, Ghaziabad: Feb. 5th/19th

2011-01-24 Thread Rakesh Kumar
On Tue, Jan 25, 2011 at 1:10 PM, Rakesh Kumar  wrote:

>
>
> On Tue, Jan 25, 2011 at 11:32 AM, Gaurang Aggarwal wrote:
>
>> Hello
>> I am okay with zend and I am only available on 5th .
>>
> Gora Sir will reply on it better.
>
>>  Rakesh , we should have basic introduction on drupal on 5 th
>>
> I am ready but look at the previous postings. I totally agree with Gora Sir
> but if you are available on 5th and comfortable with Zend then we both can
> present on Zend (MVC and other architectures).
>
>> Also I love giving interactive sessions so I would give on php
>> intermediate level , drupal
>>
> If you are coming on 5th we together can give interactive session on PHP
> and Drupal but before that let Gora Sir clarify it.
>
>> Also you can't teach programing in few hours .
>>
> Definitely, but we are not going to teach them but to introduce them with
> PHP, and not as a lecturer. "No one can become a programmer without
> programming". We all are open source evangelists and this is not our duty to
> force other to accept but all we can do is we can promote open source let
> them decide whether they want to accept it.
>
> And i think we should finalize it now.
>
>> On Jan 25, 2011 10:12 AM, "Rakesh Kumar"  wrote:
>>
>> On Sun, Jan 23, 2011 at 10:40 PM, Gora Mohanty 
>> wrote:
>>
>> > Hi,
>> >
>> > Sorry. Had mis...
>> Ok that's it. Lets finalize it. I will present Advance topics and use of
>> Zend framework.
>>
>> --
>> Regards
>> RAKESH
>> openwebtech.in
>>
>> ___
>>
>> Ilugd mailing list
>> Ilugd@lists.linux-delhi.org
>> http:...
>>
>>
>
>
> --
> Regards
> RAKESH
> "Allow Your Own Inner Light to Guide You"
>

Can i come with some new foss people who actually want to learn PHP? There
are two or three people who want to come along with me.

-- 
Regards
RAKESH KUMAR
http://www.openwebtech.in
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] Looking for volunteers for workshop(s) in AKG Engineering College, Ghaziabad: Feb. 5th/19th

2011-01-24 Thread Rakesh Kumar
On Tue, Jan 25, 2011 at 11:32 AM, Gaurang Aggarwal wrote:

> Hello
> I am okay with zend and I am only available on 5th .
>
Gora Sir will reply on it better.

> Rakesh , we should have basic introduction on drupal on 5 th
>
I am ready but look at the previous postings. I totally agree with Gora Sir
but if you are available on 5th and comfortable with Zend then we both can
present on Zend (MVC and other architectures).

> Also I love giving interactive sessions so I would give on php intermediate
> level , drupal
>
If you are coming on 5th we together can give interactive session on PHP and
Drupal but before that let Gora Sir clarify it.

> Also you can't teach programing in few hours .
>
Definitely, but we are not going to teach them but to introduce them with
PHP, and not as a lecturer. "No one can become a programmer without
programming". We all are open source evangelists and this is not our duty to
force other to accept but all we can do is we can promote open source let
them decide whether they want to accept it.

And i think we should finalize it now.

> On Jan 25, 2011 10:12 AM, "Rakesh Kumar"  wrote:
>
> On Sun, Jan 23, 2011 at 10:40 PM, Gora Mohanty  wrote:
>
> > Hi,
> >
> > Sorry. Had mis...
> Ok that's it. Lets finalize it. I will present Advance topics and use of
> Zend framework.
>
> --
> Regards
> RAKESH
> openwebtech.in
>
> ___
>
> Ilugd mailing list
> Ilugd@lists.linux-delhi.org
> http:...
>
>


-- 
Regards
RAKESH
"Allow Your Own Inner Light to Guide You"
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] Looking for volunteers for workshop(s) in AKG Engineering College, Ghaziabad: Feb. 5th/19th

2011-01-24 Thread Rakesh Kumar
On Sun, Jan 23, 2011 at 10:40 PM, Gora Mohanty  wrote:

> Hi,
>
> Sorry. Had mistakenly sent this only to Rakesh earlier. Here is a
> revised idea of the schedule, based on earlier comments from
> Rakesh. My follow-up to Rakesh is below.
>
> 5/2/2011
> -
>   * 11am - 11.30am: Introductory FOSS talk
>
>   * 11.30 -1pm: Introduction to PHP, and using mysql though PHP:
>Arindam
>
>   * 1pm-1.30pm: Lunch
>
>   * 1.30pm - 4.30pm: Advanced PHP: Using the Zend framework:
>Rakesh
>
> 19/2/2011
> --
>   * 11am - 1pm: WordPress workshop: Neeraj
>
>   * 1pm-1.30pm: Lunch
>
>   * 1.30pm - 4.30pm: Drupal workshop: Gaurang
>
>
> On Mon, Jan 24, 2011 at 11:59 AM, Rakesh Kumar 
> wrote:
> [...]
> > I have not worked so much on Zend (Not as a professional) but on
> common
> > editors. So i don't think i am appropriate person to present talk on Zend
> > but yes if somebody else is ready to present with me on Zend, i am up.
> May
> > be Gaurang could help me as he was with me at RKGIT also. As far as it is
> > concerned with the Advance topics, i am ready.
> [...]
>
> Gaurang/Rakesh, could you figure out between the two of you who can
> cover Zend. Or, could someone else familiar with Zend volunteer?
>
> > PS: Arindam is very new to this field so let him finalize whether he
> would
> > present the talk on PHP-MySql. And if not i am reday to present session
> on
> > Basics of PHP also.
> [...]
>
> Everyone has to start some day, so if Arindam is willing, let him have a
> go. We can help him out on his presentation, if he prepares it ahead of
> time.
>
> >   Please shift the Gaurang's Session on 5th Feb if he
> is
> > agree so that people may enjoy the session after a exhaustive session of
> > continuous programming.
>
> I had thought to have all PHP, and PHP-framework related stuff in the
> first workshop, with CMSes like Wordpress, and Drupal in the second.
> This allows the audience to choose their area of preference.
>
> Regards,
> Gora
>
> ___
> Ilugd mailing list
> Ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
>

Ok that's it. Lets finalize it. I will present Advance topics and use of
Zend framework.

-- 
Regards
RAKESH
openwebtech.in
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] Looking for volunteers for workshop(s) in AKG Engineering College, Ghaziabad: Feb. 5th/19th

2011-01-23 Thread Rakesh Kumar
On Mon, Jan 24, 2011 at 10:21 AM, Gora Mohanty  wrote:

> On Mon, Jan 24, 2011 at 12:49 AM, Rakesh Kumar 
> wrote:
> [...]
> > Don't you think that we have allotted very few time for
> PHP
> > and MySql ? I think we should give a separate session for hands on
> > experience of PHP-MySql and at least one hour session for Frameworks e.g.
> > Zend (IMHO).
> [...]
>
> I was going by the wishes of the college, and was also not sure if
> people were familiar with Zend. However, I agree with you that we
> should be promoting programming with frameworks, rather than in
> raw PHP. Also, I think that an in-depth discussion of the finer points
> of mysql would miss the target audience.
>
> Thus, below, is my revised idea of the schedule. Maybe, the afternoon
> session on the 5th should be broken up two smaller sessions. If so,
> please give me your thoughts on that. I have also tentatively attached
> names to the presentations, though that can still be changed.
>
> Let us try to finalise this by tomorrow (Tue.) at the latest. So, all
> volunteers
> please let me know if you are unavailable on those dates.
>
> 5/2/2011
> -
>* 11am - 11.30am: Introductory FOSS talk
>
>* 11.30 -1pm: Introduction to PHP, and using mysql though PHP:
> Arindam
>
>* 1pm-1.30pm: Lunch
>
>* 1.30pm - 4.30pm: Advanced PHP: Using the Zend framework:
> Rakesh
>
> 19/2/2011
> --
>* 11am - 1pm: WordPress workshop: Neeraj
>
>* 1pm-1.30pm: Lunch
>
>* 1.30pm - 4.30pm: Drupal workshop: Gaurang
>
> Regards,
> Gora
>

Sir,
 I have not worked so much on Zend (Not as a professional) but on common
editors. So i don't think i am appropriate person to present talk on Zend
but yes if somebody else is ready to present with me on Zend, i am up. May
be Gaurang could help me as he was with me at RKGIT also. As far as it is
concerned with the Advance topics, i am ready.
I am ready to present talk on any of the above mentioned topics except
WordPress, if anybody is not available on those days.
Gora Sir, Are you not coming there?

PS: Arindam is very new to this field so let him finalize whether he would
present the talk on PHP-MySql. And if not i am reday to present session on
Basics of PHP also. Please shift the Gaurang's Session on 5th Feb if he is
agree so that people may enjoy the session after a exhaustive session of
continuous programming.

-- 
Regards
RAKESH
"Allow Your Own Inner Light to Guide You"
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] Looking for volunteers for workshop(s) in AKG Engineering College, Ghaziabad: Feb. 5th/19th

2011-01-23 Thread Rakesh Kumar
On Sun, Jan 23, 2011 at 11:26 AM, Gora Mohanty  wrote:

> Hi,
>
> Thanks to everyone who has volunteered. I have created stubs
> for the two events on the Wiki:
> http://wiki.linux-delhi.org/cgi-bin/twiki/view/Main/AKGECWorkshop20110205
> http://wiki.linux-delhi.org/cgi-bin/twiki/view/Main/AKGECWorkshop20110219
> There is a tentative plan on those pages, but that can be altered.
> I have gone by the topics that people had volunteered for, but have
> not put in names for the moment.
>
> Volunteers, if you have not already done so, please take a look
> at http://wiki.linux-delhi.org/cgi-bin/twiki/view/Main/CollegeWorkshops .
> You can edit the workshop planning pages by creating a Wiki
> account. It would also be good if you could put a short plan for
> your presentation on the Wiki page.
>
> We still need volunteers for doing an introductory FOSS talk
> at each event.
>
> Regards,
> Gora
>
> ___
> Ilugd mailing list
> Ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
>

@Gora Sir,
Don't you think that we have allotted very few time for PHP
and MySql ? I think we should give a separate session for hands on
experience of PHP-MySql and at least one hour session for Frameworks e.g.
Zend (IMHO).

-- 
Regards
RAKESH
"Allow Your Own Inner Light to Guide You"
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] Looking for volunteers for workshop(s) in AKG Engineering College, Ghaziabad: Feb. 5th/19th

2011-01-22 Thread Rakesh Kumar
On Fri, Jan 21, 2011 at 7:57 PM, Gora Mohanty  wrote:

> Hi Rakesh, Neeraj, and Arindam,
>
> Thanks for volunteering to do the workshops. The college actually
> wants workshops on both the 5th, and the 19th of Feb.  So, please
> clarify which of the dates that you can be available for. Also, please
> put your names against the topics below that you can address, and/or
> propose other topics.
>
I will be available for both dates.

>
> * Web design: Could be graphic design, user interface, or scalability
>  of sites.
> * PHP: If there is any special topic that you would like to address here,
>  please elaborate
>
I  am available for PHP & MySQL both.

> * CMS:
>  - Drupal
>
available for this as well.

>  - Wordpress
>  - Joomla
>  - Others
> * Frameworks
> * Databases
>  - Mysql
>  - Postgresql
>  - Others: Please specify
>
> Other people are also welcome to chime in, as we will probably
> need more volunteers to cover both days.
>
> Regards,
> Gora
>
> ___
> Ilugd mailing list
> Ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
>

Is it like the workshop, we organized at RKGIT like they wanted a broader
session not deeper.

-- 
Regards
RAKESH
"Allow Your Own Inner Light to Guide You"
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] Looking for volunteers for workshop(s) in AKG Engineering College, Ghaziabad: Feb. 5th/19th

2011-01-20 Thread Rakesh Kumar
On Thu, Jan 20, 2011 at 10:06 AM, neeraj kumar wrote:

> I am Neeraj Narayan. I participated in Drupal7 release party.
>
> I am also in. I am local to Ghaziabad so let me know if you need some
> help regarding route or anything.
>
> On Wednesday, January 19, 2011, Rakesh Kumar  wrote:
> > I am in. I would suggest to organize this in the same way as we did at
> > RKGIT, Ghaziabad.
> >
> > --
> > Regards
> > RAKESH
> > "Allow Your Own Inner Light to Guide You"
> >
> > ___
> > Ilugd mailing list
> > Ilugd@lists.linux-delhi.org
> > http://frodo.hserus.net/mailman/listinfo/ilugd
> >
>
> --
> Thanks & Regards,
>
> Neeraj Kumar
> PGDM, Marketing and Operations
> IMT G!
> Contact#9312645457
> Follow me on Twitter:  @neerajimtg
> Join me on Facebook:  http://www.facebook.com/myself.neeraj
> Check my profile on LinkedIn: http://www.linkedin.com/in/neerajimtg
> Check my Blogs: http://blogs.e-bizznet.com
>


I can present talk also. Gora Sir please fix the date asap.
-- 
Regards
RAKESH
"Allow Your Own Inner Light to Guide You"
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] Looking for volunteers for workshop(s) in AKG Engineering College, Ghaziabad: Feb. 5th/19th

2011-01-19 Thread Rakesh Kumar
I am in. I would suggest to organize this in the same way as we did at
RKGIT, Ghaziabad.

-- 
Regards
RAKESH
"Allow Your Own Inner Light to Guide You"

___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] ubuntu 10.10

2011-01-15 Thread Rakesh Kumar
On Sat, Jan 15, 2011 at 7:28 AM, Aman Thakur wrote:

> Hi vivek,
>
> Vivek do you have any other OS installed in your hard drive? I mean is it a
> dual boot machine or just a ubuntu? If it is a dual boot, then, Is your
> machine working fine with the other Operating system? Even i faced this
> problem with my P4 machine. It was a dual boot machine having Ubuntu 9.10
> and WinXP, and it was hanging after 10-15 min of boot. But that was an
> hardware issue. So, you should check your hardware also. One way to do that
> and ensure that your hardware is working fine is, try running Ubuntu Live
> session with the ubuntu CD/DVD. If it hangs the live session then its
> definitely a hardware problem else your hardware is working fine, it just a
> problem with the software.
>
> So, then you can try upgrading your ubuntu system if its possible else
> re-installing is the best way to fix all issue...:)
>
> Regards
> Aman Thakur
> ___
> Ilugd mailing list
> Ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
>


Installing ubuntu on 1 GB RAM machine should not cause any problem. There
must be something else and will you please elaborate, when your system
exactly started hanging . I mean what did you do to your system before it
hanged? Your question seems to be incomplete.
Re installing every time is not the appropriate solution rather you should
understand the base of the problem cause. I would suggest you to check your
x.org configuration.
-- 
Regards
RAKESH
"Allow Your Own Inner Light to Guide You"
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] For Indian Debian Lovers like me - Please join its mailing list

2010-12-27 Thread Rakesh Kumar
Sorry i am not against Debian.
but I have never seen any unstable thing in ubuntu except 10.x versions.


On 12/27/10, Mahesh T. Pai  wrote:
> I am not contradicting you, just putting forth a different PoV.
>
> Narendra Sisodiya said on Mon, Dec 27, 2010 at 03:58:44PM +0530,:
>
>  > I am now migrating from Ubuntu to Debian because Debian give all things
>  > which ubuntu provide in a stable form.
>
> Welcome!!!
>
>  > Debian has three branch
>  > 1) Stable
>  > 2) Testing
>  > 3) Unstable..
>
> With "Stable", if some software is not working, you can be assured
> that it is because you have misconfigured it. Current Stable version
> is called Lenny.
>
> Current Testing is called "Squeeze".
>
> Unstable is always called Sid. Sid is the character in the film "Toy
> Story"; he keeps on breaking your toys.
>
> For real advanced users, who can fix their broken toys, there are (4)
> Experimental, and (5) Incoming too. Have not used "incoming"
> though. Both are not technically distros, just a repository of latest
> packages. The official Debian "customer support" will not answer
> support questions for anything except "stable". You are not supposed
> other distros unless you know enough about them to use them.
>
> I started off with "Woody", (I think a PC Quest Magazine distro,
> probably compiled by Atul Chitnis - not very sure, then some RH
> version, and then moved over to Woody). That was some time in 2000
> April. 2 years later, moved to testing.
>
> For past 6-7 years, using Unstable, upgraded every 2-3 weeks. Yes, my
> system is broken quite often. I have had to re-install it 2-3 times in
> past 8 years.
>
> IMO, the names "testing", Unstable and Experimental are very
> misleading; the packages are far more stable than most other distros,
> including Ubuntu.
>
>  > Ubuntu and other product are derived from Unstable branch and meant
>  > for mass testing,
>
> ??
>
> Not sure what exactly you meant here.
>
> AFAIK, Ubuntu uses sources from Debian's unstable branch, and are
> compiled against later versions of the libraries using latest
> compiler version(s).
>
>  > Ubuntu never cared about bug and stick to time table, the famous
>  > 10/10/10 release were having bugs and they released because they
>  > wanted to release it on time.
>
> I would rather rephrase it as "Ubuntu gives more importance to timely
> releases".
>
>  > Above all, I do not to live with a OS which is controlled by a
>  > company who is targeting on MacOS. Look and feel and behavior of
>  > ubuntu is going towards mac os.
>
> What is wrong with that??
>
> In fact, it is not Ubuntu which is imititating OSX. It is the GNOME
> desktop environment. (correct me if I am wrong).
>
> BTW, the film "Toy Story" was produced by Pixar, and Pixar is owned by
> Steve Jobs, the owner of Apple.
>
> You can definitely switch over to KDE from within Ubuntu, without
> installing Kubuntu. May be you can use Xfce. Icewm, fluxbox etc.  Not
> sure, how to go about doing it, though.
>
>  > I want to devote my rest of the life for advocating and improving
>  > Debian in India.
>
> Welcome. But please do that without pulling down other distros.
>
> All distros share their improvements between them. Several Debian
> developers are paid by Canonical.
>
> Debian takes its bits and pieces from even Red Hat In fact, we should
> be thankful to Red Hat, they have sponsored some of the best fonts in
> al most all Indic languages. (and several volunteer groups have
> contributed excellent fonts for each language)
>
> The point, each distro does its bit towards improving GNU/Linux. Each
> distro has its own niche.
>
>  > Those who want a better look and feel can try latest mint which is
>  > also based on debian -
>  > http://blog.linuxmint.com/?p=1604
>  > http://desktoplinuxreviews.com/2010/09/07/linux-mint-9-debian/
>
> Why mint rather than Ubuntu or Debian?
>
> --
> Mahesh T. Pai   ||  http://[paivakil|fizzard].blogspot.com
> Distributing free copies of non-free software is --
> -- like advertising drugs.
>
> ___
> Ilugd mailing list
> Ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
>


-- 
Regards
RAKESH
"Allow Your Own Inner Light to Guide You"

___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] For Indian Debian Lovers like me - Please join its mailing list

2010-12-27 Thread Rakesh Kumar
Sorry i am not against Debian.
I have never seen any unstable thing in ubuntu except 10.x versions.


On 12/27/10, Mahesh T. Pai  wrote:
> I am not contradicting you, just putting forth a different PoV.
>
> Narendra Sisodiya said on Mon, Dec 27, 2010 at 03:58:44PM +0530,:
>
>  > I am now migrating from Ubuntu to Debian because Debian give all things
>  > which ubuntu provide in a stable form.
>
> Welcome!!!
>
>  > Debian has three branch
>  > 1) Stable
>  > 2) Testing
>  > 3) Unstable..
>
> With "Stable", if some software is not working, you can be assured
> that it is because you have misconfigured it. Current Stable version
> is called Lenny.
>
> Current Testing is called "Squeeze".
>
> Unstable is always called Sid. Sid is the character in the film "Toy
> Story"; he keeps on breaking your toys.
>
> For real advanced users, who can fix their broken toys, there are (4)
> Experimental, and (5) Incoming too. Have not used "incoming"
> though. Both are not technically distros, just a repository of latest
> packages. The official Debian "customer support" will not answer
> support questions for anything except "stable". You are not supposed
> other distros unless you know enough about them to use them.
>
> I started off with "Woody", (I think a PC Quest Magazine distro,
> probably compiled by Atul Chitnis - not very sure, then some RH
> version, and then moved over to Woody). That was some time in 2000
> April. 2 years later, moved to testing.
>
> For past 6-7 years, using Unstable, upgraded every 2-3 weeks. Yes, my
> system is broken quite often. I have had to re-install it 2-3 times in
> past 8 years.
>
> IMO, the names "testing", Unstable and Experimental are very
> misleading; the packages are far more stable than most other distros,
> including Ubuntu.
>
>  > Ubuntu and other product are derived from Unstable branch and meant
>  > for mass testing,
>
> ??
>
> Not sure what exactly you meant here.
>
> AFAIK, Ubuntu uses sources from Debian's unstable branch, and are
> compiled against later versions of the libraries using latest
> compiler version(s).
>
>  > Ubuntu never cared about bug and stick to time table, the famous
>  > 10/10/10 release were having bugs and they released because they
>  > wanted to release it on time.
>
> I would rather rephrase it as "Ubuntu gives more importance to timely
> releases".
>
>  > Above all, I do not to live with a OS which is controlled by a
>  > company who is targeting on MacOS. Look and feel and behavior of
>  > ubuntu is going towards mac os.
>
> What is wrong with that??
>
> In fact, it is not Ubuntu which is imititating OSX. It is the GNOME
> desktop environment. (correct me if I am wrong).
>
> BTW, the film "Toy Story" was produced by Pixar, and Pixar is owned by
> Steve Jobs, the owner of Apple.
>
> You can definitely switch over to KDE from within Ubuntu, without
> installing Kubuntu. May be you can use Xfce. Icewm, fluxbox etc.  Not
> sure, how to go about doing it, though.
>
>  > I want to devote my rest of the life for advocating and improving
>  > Debian in India.
>
> Welcome. But please do that without pulling down other distros.
>
> All distros share their improvements between them. Several Debian
> developers are paid by Canonical.
>
> Debian takes its bits and pieces from even Red Hat In fact, we should
> be thankful to Red Hat, they have sponsored some of the best fonts in
> al most all Indic languages. (and several volunteer groups have
> contributed excellent fonts for each language)
>
> The point, each distro does its bit towards improving GNU/Linux. Each
> distro has its own niche.
>
>  > Those who want a better look and feel can try latest mint which is
>  > also based on debian -
>  > http://blog.linuxmint.com/?p=1604
>  > http://desktoplinuxreviews.com/2010/09/07/linux-mint-9-debian/
>
> Why mint rather than Ubuntu or Debian?
>
> --
> Mahesh T. Pai   ||  http://[paivakil|fizzard].blogspot.com
> Distributing free copies of non-free software is --
> -- like advertising drugs.
>
> ___
> Ilugd mailing list
> Ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
>


-- 
Regards
RAKESH
"Allow Your Own Inner Light to Guide You"

___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] Ubuntu 10.04 got crashed

2010-12-27 Thread Rakesh Kumar
Hi I firstly tried to look into the partition table by using # fdisk
-l, but it was showing windows partitions only.
It's not my laptop so i can't perform experiments on it.
I've not worked on ubuntu so much but in Red Hat i preferably use this
to delete grub:
dd if=/dev/zero of=/dev/sda bs=256 count=1

So i want to ask you whether this will work, to delete grub and
reinstall it using installation media?

On 12/26/10, Mahesh T. Pai  wrote:
> Rakesh Kumar said on Sun, Dec 26, 2010 at 12:38:45PM +0530,:
>
>  > We already tried to solve it through grub command line but didn't
>  > work..
>
> What did you do? Explaining that may help. Is this an ext4 partition?
> Is the issue related to inability of certain versions of grub to load
> ext4 partitions?
>
> If so, installing the relevant module from grub command line may help.
>
> I faintly recall breaking this system when I encountered that problem,
> and none of the rescue CDs I had could support ext4. Was forced to do
> a reinstall, first one in a loong time!!
>
> Have you checked that?
>
> --
> Mahesh T. Pai   ||  http://[paivakil|fizzard].blogspot.com
> Distributing free copies of non-free software is --
> -- like advertising drugs.
>
> ___
> Ilugd mailing list
> Ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
>


-- 
Regards
RAKESH
"Allow Your Own Inner Light to Guide You"

___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] Buying a New Dell Laptop Without Windows

2010-12-25 Thread Rakesh Kumar
Hi,

1: No matter whether you buy a Dell laptop with or without windows, it
will support Linux in either ways.
2: Yes dell provides laptops with Linux preinstalled and definitely it
will reduce cost.

On 12/26/10, Aman Thakur  wrote:
> Hi subodh,
>
> This is very reasonable question. Even i wanna know if it is possible to
> have a laptop without windows. Some one told me that we have a that kind of
> choice in ACER laptops but for DELL i have now idea. So do let me know if
> you get the answers. Since, even i am thinking of buying a DELL laptop and i
> want FOSS on my machine.:)
>
> Regards
> Aman Thakur
> ___
> Ilugd mailing list
> Ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
>


-- 
Regards
RAKESH
"Allow Your Own Inner Light to Guide You"

___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] Ubuntu 10.04 got crashed

2010-12-25 Thread Rakesh Kumar
On 12/24/10, Aman Thakur  wrote:
> Hi Rakesh,
>
> I agree with the Mahesh in his both the above messages. I think there should
> be a different /home partition.
I don't think she would probably have different /home partition.

 And for fixing your broken ubuntu system,
> you should try to go in rescue mode and reinstall the grub. If unsuccessfull
> then try to goto into the grub command line fix it as mahesh said above
We already tried to solve it through grub command line but didn't work..


> But i am not sure whether it works out for you or not. Since problem came
> during update, so it might a problem of broken packages. So try fixing grub
> first then let us know the output..so that we can have more idea of the
> problem.
Now i think it might be a bug or some thing else (like broken package
etc). Because while searching on internet, similar type of results
were shown to me. Few of them have solved it but most of them couldn't
and so many people have reported the same problem. I have always been
updating and upgrading my ubuntu (any version except 10.04) so
suggested her to do same. Might be she wouldn't have read the
instructions carefully.
>
> Regards
> Aman Thakur
> ___
> Ilugd mailing list
> Ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
>


-- 
Regards
RAKESH
"Allow Your Own Inner Light to Guide You"

___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


[ilugd] Ubuntu 10.04 got crashed

2010-12-24 Thread Rakesh Kumar
Hi,
One of my friend was using ubuntu 10.04. Today she tried to update
the ubuntu (as she told me) then shut down her laptop (ubuntu not
asked to restart). When after few hours she tried to turn on her
laptop it couldn't be loaded showing an error message "The disk drive
for / is not ready yet or not present. Continue to wait or press S to
skip mounting or M for manual recovery". I told her to try in
accordance with the instructions but it couldn't recover her system.
As i could think that may be grub couldn't be updated due to
incorrect parameters or may kernel couldn't be updated properly.

I think she should delete the grub
by using :
dd if=/dev/zero of=/dev/sda bs=256 count=1
or using "hda" instead of "sda"

and reinstall it by using the media. Please if any one has experienced
this problem, share your experience and suggest me something..

-- 
Regards
RAKESH
"Allow Your Own Inner Light to Guide You"

___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] LVM and ext3 size relationship

2010-11-17 Thread Rakesh Kumar
On Wed, Nov 17, 2010 at 1:09 PM, Sirtaj Singh Kang wrote:

> On 11/17/2010 10:57 AM, Rakesh Kumar wrote:
> [snip]
>
>  Great to know this because i have never seen this ever. But i want to know
>> one thing that when i studied this, found that we keep this size bigger
>> because of metadata. And if it is correct metadata will increase with the
>> size of PV and VG then how can a specific formula be derived.
>>
>
> The PV and VG are irrelevant here, the goal is to find out how much logical
> ext3fs capacity we get from a raw block device of
> a certain size. When creating an LV we get a block device, ext3fs doesn't
> care whether it's an LV or a raw disk partition.
>
> Note that lvextend increases only the _unformatted_ capacity. So if you
> extend by 2G, the useful capacity you get for new files on the ext3
> filesystem on that volume is approximately 1.58% less than 2G due to ext3fs
> overhead.

OK that's why you derived this 1*1.0158. Thanks for posting such an useful
formula,

>
>
> -Taj.
>
> ___
> Ilugd mailing list
> Ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
>



-- 
Regards
RAKESH
"Allow Your Own Inner Light to Guide You"
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] LVM and ext3 size relationship

2010-11-16 Thread Rakesh Kumar
On Wed, Nov 17, 2010 at 10:57 AM, Rakesh Kumar  wrote:

>
>
> On Sat, Nov 13, 2010 at 6:02 PM, Sirtaj Singh Kang wrote:
>
>>
>> On 13-Nov-10, at 12:39 PM, Raj Mathur (राज माथुर) wrote:
>> [snip]
>>
>>  He wanted a formula.  He has not got a formula.
>>>
>>
>> Here's a formula:
>>
>> y = x * 1.0158
>>
>> Explanation:
>>
>> I decided to check the ext3 overhead empirically, since I not keen to
>> delve into the resize2fs sources. I've attached a simple python script that
>> I used on a bunch of machines to measure the difference between block device
>> size (reported by /proc/partitions)
>> and fs size (as reported by statfs). It currently reports on all mounted
>> ext2 and ext3 filesystems.
>>
> Great to know this because i have never seen this ever. But i want to know
> one thing that when i studied this, found that we keep this size bigger
> because of metadata. And if it is correct metadata will increase with the
> size of PV and VG then how can a specific formula be derived.
>
>>
>> I might be doing something really dumb, but it looks like there is
>> 1.56-58% overhead for almost all ext3 filesystems over 1G in size created
>> with default mkfs flags. It gets higher for smaller filesystems. Note that
>> the journal overhead may not be included in this value.
>>
>> If anyone gets different values or finds any errors in the attached script
>> I'd appreciate a note.
>>
>
>
>>  End of story.
>>>
>>
>> It's kind of a boring story.
>>
>> -Taj.
>>
>>
>>
>>
>> ___
>> Ilugd mailing list
>> Ilugd@lists.linux-delhi.org
>> http://frodo.hserus.net/mailman/listinfo/ilugd
>>
>>
>
> Sorry if i wrote rudely anywhere but my intention was not to disrespect
> anyone. Everybody is doing his/her work at their respected places and is
> here to learn from other and contribute for others. So their shouldn't be
> any matter of unnecessary dispute type of discussions.
>
> --
> Regards
> RAKESH
> "Allow Your Own Inner Light to Guide You"
>

And why do we keep the size greater than the desired. I mean if i want to
extend the size by 2G, doesn't it work?
# lvextend -L+2G /dev/Volume_group/lvm
# resize_reiserfs -f /dev/Volume_group/lvm
-- 
Regards
RAKESH
"Allow Your Own Inner Light to Guide You"
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] LVM and ext3 size relationship

2010-11-16 Thread Rakesh Kumar
On Sat, Nov 13, 2010 at 6:02 PM, Sirtaj Singh Kang wrote:

>
> On 13-Nov-10, at 12:39 PM, Raj Mathur (राज माथुर) wrote:
> [snip]
>
>  He wanted a formula.  He has not got a formula.
>>
>
> Here's a formula:
>
> y = x * 1.0158
>
> Explanation:
>
> I decided to check the ext3 overhead empirically, since I not keen to delve
> into the resize2fs sources. I've attached a simple python script that I used
> on a bunch of machines to measure the difference between block device size
> (reported by /proc/partitions)
> and fs size (as reported by statfs). It currently reports on all mounted
> ext2 and ext3 filesystems.
>
Great to know this because i have never seen this ever. But i want to know
one thing that when i studied this, found that we keep this size bigger
because of metadata. And if it is correct metadata will increase with the
size of PV and VG then how can a specific formula be derived.

>
> I might be doing something really dumb, but it looks like there is 1.56-58%
> overhead for almost all ext3 filesystems over 1G in size created with
> default mkfs flags. It gets higher for smaller filesystems. Note that the
> journal overhead may not be included in this value.
>
> If anyone gets different values or finds any errors in the attached script
> I'd appreciate a note.
>


>  End of story.
>>
>
> It's kind of a boring story.
>
> -Taj.
>
>
>
>
> ___
> Ilugd mailing list
> Ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
>
>

Sorry if i wrote rudely anywhere but my intention was not to disrespect
anyone. Everybody is doing his/her work at their respected places and is
here to learn from other and contribute for others. So their shouldn't be
any matter of unnecessary dispute type of discussions.
-- 
Regards
RAKESH
"Allow Your Own Inner Light to Guide You"
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] LVM and ext3 size relationship

2010-11-16 Thread Rakesh Kumar
2010/11/13 Raj Mathur (राज माथुर) 

> On Saturday 13 Nov 2010, Rakesh Kumar wrote:
> > I think nobody is here to teach you, but as far as it is concerned to
> > solve any problem, i have already answered you.
>
> With all due respect, you haven't.  Taj asked a very specific question:
>
> > If I want to grow an ext3 fs by size X in mb, how do I calculate the
> > size Y by which I have to first resize the LVM volume on which it
> > resides? Most sources I've read online say something like "make it a
> > little bigger just to be safe" but I'm hoping there is a better and
> > more accurate formula than that.
>
> I haven't seen an answer on this list so far.  And if Taj, with his
> gazillions of years of experience, can't come up with an answer, I doubt
> if there are too many people on this list with the necessary technical
> qualifications who can.  I know I certainly can't.  I was hoping one of
> the deep-dive and/or broad implementation experience types like Ashish
> or Karanbir would have an idea, but given their lack of response, I
> assume they're as clueless as the rest of us on this matter.
>
I don't know about the "gazillions of years of experience" for anyone but my
work that i have done on Linux. And there are some very experienced person
on this list but this doesn't mean that a concept will be changed.
I think if someone is not able to answer, he/she shouldn't post unnecessary
replies IMHO.

>
> Please note that "read up on OS theory" and "read up on LVM
> fundamentals", while useful in themselves, are no use in closing the
> issue that was raised.  He wanted a formula.  He has not got a formula.
> End of story.
>
I have only suggested him to read the concepts from the book(if available)
and was not intended to finish this. This is a very useful book and an
internationally accepted book.

>
> Regards,
>
> -- Raju
> --
> Raj Mathurr...@kandalaya.org  http://kandalaya.org/
>   GPG: 78D4 FC67 367F 40E2 0DD5  0FEF C968 D0EF CC68 D17F
> PsyTrance & Chill: http://schizoid.in/   ||   It is the mind that moves
>
> ___
> Ilugd mailing list
> Ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
>

Sorry if i couldn't explain the topic but i was only intended help him to
find the exact formula. Because i as much i have experienced, i never found
any error in LVM even i have never used any formula.

-- 
Regards
RAKESH
"Allow Your Own Inner Light to Guide You"
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] LVM and ext3 size relationship

2010-11-12 Thread Rakesh Kumar
On Sat, Nov 13, 2010 at 2:07 AM, Sirtaj Singh Kang wrote:

>
> On 08-Nov-10, at 4:16 PM, Sirtaj Singh Kang wrote:
> [snip]
>
>
>>
>> I'd like some assistance in understanding the relationship between the
>> size of an LVM2 logical volume and ext3.
>>
>>
>
> While nobody appears to have an answer to my question (if a good answer
> exists)

I think nobody is here to teach you, but as far as it is concerned to solve
any problem, i have already answered you.

> , I did some more hunting. For those who are interested, this blog post is
> worth a look:
>
>
> http://www.lisnichenko.com/articles/ext3-file-system-overhead-disclosed-part-2.html
>
Very good article. Again i would say there is nothing special in this
article. If you know little bit mathematics basics of file system you can
perform it. For more detail on this topic i would prefer you to take a look
at book "Operating System Concept by Galvin". You would definitely like it
and probably you would find the remedy.

> Unfortunately it doesn't address my specific situation, ie it doesn't
> explain what happens during resize, but it's still a useful summary.
>
> Look there is nothing special in this. Operating Systems has a very special
algorithm to handle resizing of file systems which take care of files
written in the it.
Think of it once that how do we access any file on the disk?
Every file system has a link associated with the file to access it, more
likely the info about the files in a file system is stored in a table.
Nowadays dynamic file systems are also in use(/proc directory in Unix and
Linux), but we should talk on general scenarios here.
A file system is devided in smaller unit called block, particularly ext3 has
the block size of 4kb.
When we perform resizing OS first look in the file system table and then
perform the resizing operation. It does not gurantees for the protection of
data, however.
It was a brief of file system resizing, but it has a lot more to think and
discuss upon. I would suggest you to read that book.
And yes don't get confuse between LVM and et3 these are two different things
and are controlled by each other.

>
> -Taj.
>
> ___
> Ilugd mailing list
> Ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
>



-- 
Regards
RAKESH
"Allow Your Own Inner Light to Guide You"
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] LVM and ext3 size relationship

2010-11-08 Thread Rakesh Kumar
On Tue, Nov 9, 2010 at 1:14 AM, Sirtaj Singh Kang  wrote:

>
> On 09-Nov-10, at 12:57 AM, Rakesh Kumar wrote:
> [snip]
>
>  First of all i would suggest you to go through some good tutorial on it.
>> Thereafter i would add that LVM is basically something which is very helpful
>> when you are running out of disk capacity. And it allows you to expand the
>> disk size without loosing any data. ext3 is the format of file system.
>>
>
> Thanks for the tip, I guess I was a little unclear. The volgroup has plenty
> of unallocated space, I just need to increase the size of one of the ext3
> partitions that resides in a logical volume on the volgroup.
>
>
>  This concludes that if you have to increase the size of ext3 partition by
>> x, you should increase the size of LV by just slightly greater than your
>> need, to get the optimum results.
>>
>
> Yes that is what I gathered from elsewhere too. What I am hoping for is a
> precise definition of "slightly." Is it a fixed amount indepedent of fs
> size? Simply a multiple of fs block size? A recurring amount to accommodate
> new backups of the superblock? I'm able to guess these, but I'd really like
> something resembling hard numbers.
> "Slighly" has not a very big significant here. but you can increase your
> size equal to the size of LV, but may be because the fs is divided into
> small blocks so you might have take the size of fs slightly greater or equal
> to the size of LV.
>
> -Taj.
>
> ___
> Ilugd mailing list
> Ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
>



-- 
Regards
RAKESH
"Allow Your Own Inner Light to Guide You"
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] LVM and ext3 size relationship

2010-11-08 Thread Rakesh Kumar
On Mon, Nov 8, 2010 at 4:16 PM, Sirtaj Singh Kang  wrote:

> Hi all,
>
> I'd like some assistance in understanding the relationship between the size
> of an LVM2 logical volume and ext3.
>
First of all i would suggest you to go through some good tutorial on it.
Thereafter i would add that LVM is basically something which is very helpful
when you are running out of disk capacity. And it allows you to expand the
disk size without loosing any data. ext3 is the format of file system.

>
> If I want to grow an ext3 fs by size X in mb, how do I calculate the size Y
> by which I have to first resize the LVM volume on which it resides?

Look LVM works on three tier architecture and that are 1:Physical Volume 2:
Volume Group 3: Logical Volume. Logical volume resides on the upper layer of
this architecture which means if you increase the size of LVM, you will have
to increase the size of physical volumes(ext3). This concludes that if you
have to increase the size of ext3 partition by x, you should increase the
size of LV by just slightly greater than your need, to get the optimum
results.

> Most sources I've read online say something like "make it a little bigger
> just to be safe" but I'm hoping there is a better and more accurate formula
> than that.
>
Very true..Today's file systems have become so efficient that may be
you don't need to explicitly expand the size of ext3s but formally it was
necessary to increase the file system to fill the remaining free space by
expanding the file system to protect if from getting corrupted.

>
> Any RTFM pointers appreciated.
>
> -Taj.
>
> ___
> Ilugd mailing list
> Ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
>



-- 
Regards
RAKESH
"Allow Your Own Inner Light to Guide You"
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] Searching for appropriate videoconfresing tool

2010-11-07 Thread Rakesh Kumar
On Sun, Nov 7, 2010 at 1:59 AM, Nandeep Mali  wrote:

> Replying to your Java/non-Java query from the other thread...
>
> On Sat, Nov 6, 2010 at 11:13 PM, Rakesh Kumar  wrote:
> >
> > Agreed but i could not find it as a solution for Java, as it only has PHP
> > and Python API / lib not Java lib. But finally i got to know that a new
> API
> > called JMF has been added to Java library and trying to work on that.
> > Please correct me if i went wrong anywhere to justify Justin.tv because i
> > couldn't find any Java API available for conferencing.
>
> From what I understand you are writing a web application and *not* a
> Java Applet. So you can use a flash player on the client to show the
> video. Correct me if I am wrong.
>
> In that case, using the Justin.tv API is _not_ dependent on the
> language you are using. As documented at their site [1] it is a REST
> based API, which means you can use your favorite curl-type library in
> Java to communicate with this service. It even has a JSONP support so
> you can use Javascript/JQuery directly on the client side. Couple that
> with their flash player and you should be able to create a web
> conferencing application. The Python/PHP libraries are just their for
> convenience but are not required to make a Justin.tv based
> application.
>
As i could find, it has just given an authority to use their tool to
broadcast, but we can't embed them in our own application. It will be like,
using third party tool. Can't i write my own code to develop it.

>
> Off topic, but is Java an absolute requirement for this web
> application? Of course, ignore this if you are attempting to do all
> this via an Applet.
>
Yes java is my absolute requirement?
While browsing this i found JMF,a java API  for broadcasting. Have any one
of you experienced it or have idea to work on it.

>
> Link:
> [1] http://apiwiki.justin.tv/mediawiki/index.php/REST_API_Documentation
>



-- 
Regards
RAKESH
"Allow Your Own Inner Light to Guide You"
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] Ilugd Digest, Vol 12, Issue 3

2010-11-06 Thread Rakesh Kumar
On Sat, Nov 6, 2010 at 6:30 PM, Nandeep Mali  wrote:

> @Aman Thakur
>
> Please do not reply to digest mails. It breaks the conversation flow
> and is most annoying. It is in fact mentioned in the digest mail at
> the top:
>
> "When replying, please edit your Subject line so it is more specific
> than "Re: Contents of Ilugd digest..." "
>
> On Sat, Nov 6, 2010 at 1:25 PM, Rakesh Kumar  wrote:
> [...]
> > Why don't you understand that i am not looking for any messenger or any
> tool
> > rather i want to develop an application for my web based project. Please
> > suggest me with accordance to the subject.
>
> I already did point you to the most relevant solution in my knowledge
> which you can integrate in your app. Justin.tv has an API that can be
> used in any web based application.
>


Agreed but i could not find it as a solution for Java, as it only has PHP
and Python API / lib not Java lib. But finally i got to know that a new API
called JMF has been added to Java library and trying to work on that.
Please correct me if i went wrong anywhere to justify Justin.tv because i
couldn't find any Java API available for conferencing.
Sorry to post against "Digest Mail" ,as i just replied to Aman.
-- 
Regards
RAKESH
"Allow Your Own Inner Light to Guide You"
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] Ilugd Digest, Vol 12, Issue 3

2010-11-06 Thread Rakesh Kumar
On Sat, Nov 6, 2010 at 1:00 PM, Aman Thakur wrote:

> Use ekiga...thats a nice tool in linux for video conferencing and freely
> available.
>
> On Sat, Nov 6, 2010 at 12:30 AM,  >wrote:
>
> > Send Ilugd mailing list submissions to
> >ilugd@lists.linux-delhi.org
> >
> > To subscribe or unsubscribe via the World Wide Web, visit
> >http://frodo.hserus.net/mailman/listinfo/ilugd
> > or, via email, send a message with subject or body 'help' to
> >ilugd-requ...@lists.linux-delhi.org
> >
> > You can reach the person managing the list at
> >ilugd-ow...@lists.linux-delhi.org
> >
> > When replying, please edit your Subject line so it is more specific
> > than "Re: Contents of Ilugd digest..."
> >
> >
> > Today's Topics:
> >
> >   1. Re:  Searching for appropriate videoconfresing tool (Rakesh Kumar)
> >   2. Re:  Searching for appropriate videoconfresing tool (Nandeep Mali)
> >   3. Re:  Searching for appropriate videoconfresing tool (Rakesh Kumar)
> >
> >
> > --
> >
> > Message: 1
> > Date: Fri, 5 Nov 2010 17:05:50 +0530
> > From: Rakesh Kumar 
> > To: The Linux-Delhi mailing list 
> > Subject: Re: [ilugd] Searching for appropriate videoconfresing tool
> > Message-ID:
> >
> > Content-Type: text/plain; charset=ISO-8859-1
> >
> > On Fri, Oct 29, 2010 at 10:12 AM, Rakesh Kumar 
> > wrote:
> >
> > > Hi all,
> > > As a project i am looking to implement video confrensing in
> > > my web project. I am working on J2EE and Server used is WebSphere
> > > (IBM). As i know Websphere is a properitery tool so can somebody
> > > suggest me a tool which is platform independent and can run on any
> > > server.
> > > And i don't want just a video streaming tool but a complete
> > > video confrensing tool which could allow one to one conversation
> > > between to user. Or if there is other way to develop it please
> > > suggest.
> > >  Thank you
> > >
> > Please if somebody could suggest any open source tool or anything for
> video
> > conferencing?
> >
> > > --
> > > Regards
> > > RAKESH
> > > "Allow Your Own Inner Light to Guide You"
> > >
> >
> >
> >
> > --
> > Regards
> > RAKESH
> > "Allow Your Own Inner Light to Guide You"
> >
> >
> > --
> >
> > Message: 2
> > Date: Fri, 5 Nov 2010 18:01:50 +0530
> > From: Nandeep Mali 
> > To: Rakesh Kumar 
> > Cc: The Linux-Delhi mailing list 
> > Subject: Re: [ilugd] Searching for appropriate videoconfresing tool
> > Message-ID:
> >
> > Content-Type: text/plain; charset=UTF-8
> >
> > How do you plan to show many to many conferencing using video?
> >
> > You could try some way using the Justin.tv API?
> >
> >
> >
> > --
> >
> > Message: 3
> > Date: Sat, 6 Nov 2010 00:20:06 +0530
> > From: Rakesh Kumar 
> > To: Nandeep Mali 
> > Cc: The Linux-Delhi mailing list 
> > Subject: Re: [ilugd] Searching for appropriate videoconfresing tool
> > Message-ID:
> >
> > Content-Type: text/plain; charset=ISO-8859-1
> >
> > On Fri, Nov 5, 2010 at 6:01 PM, Nandeep Mali 
> wrote:
> >
> > > How do you plan to show many to many conferencing using video?
> > >
> > > You could try some way using the Justin.tv API?
> > >
> >
> > actually i am working on a project which would include a video
> conferencing
> > facility and that will be one to one conversation. The project is being
> > developed in J2ee. I have searched a lot on net but couldn't get anything
> > fruitful. I have found a tool Lotus ( An IBM tool) but not able to use
> that
> > properly.
> >
> > --
> > Regards
> > RAKESH
> > "Allow Your Own Inner Light to Guide You"
> >
> >
> > --
> >
> > ___
> > Ilugd mailing list
> > Ilugd@lists.linux-delhi.org
> > http://frodo.hserus.net/mailman/listinfo/ilugd
> >
> >
> > End of Ilugd Digest, Vol 12, Issue 3
> > 
> >
> ___
> Ilugd mailing list
> Ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
>

Why don't you understand that i am not looking for any messenger or any tool
rather i want to develop an application for my web based project. Please
suggest me with accordance to the subject.

-- 
Regards
RAKESH
"Allow Your Own Inner Light to Guide You"
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] Searching for appropriate videoconfresing tool

2010-11-05 Thread Rakesh Kumar
On Fri, Nov 5, 2010 at 6:01 PM, Nandeep Mali  wrote:

> How do you plan to show many to many conferencing using video?
>
> You could try some way using the Justin.tv API?
>

actually i am working on a project which would include a video conferencing
facility and that will be one to one conversation. The project is being
developed in J2ee. I have searched a lot on net but couldn't get anything
fruitful. I have found a tool Lotus ( An IBM tool) but not able to use that
properly.

-- 
Regards
RAKESH
"Allow Your Own Inner Light to Guide You"
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] Searching for appropriate videoconfresing tool

2010-11-05 Thread Rakesh Kumar
On Fri, Oct 29, 2010 at 10:12 AM, Rakesh Kumar  wrote:

> Hi all,
> As a project i am looking to implement video confrensing in
> my web project. I am working on J2EE and Server used is WebSphere
> (IBM). As i know Websphere is a properitery tool so can somebody
> suggest me a tool which is platform independent and can run on any
> server.
> And i don't want just a video streaming tool but a complete
> video confrensing tool which could allow one to one conversation
> between to user. Or if there is other way to develop it please
> suggest.
>  Thank you
>
Please if somebody could suggest any open source tool or anything for video
conferencing?

> --
> Regards
> RAKESH
> "Allow Your Own Inner Light to Guide You"
>



-- 
Regards
RAKESH
"Allow Your Own Inner Light to Guide You"
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


[ilugd] Searching for appropriate videoconfresing tool

2010-10-28 Thread Rakesh Kumar
Hi all,
 As a project i am looking to implement video confrensing in
my web project. I am working on J2EE and Server used is WebSphere
(IBM). As i know Websphere is a properitery tool so can somebody
suggest me a tool which is platform independent and can run on any
server.
 And i don't want just a video streaming tool but a complete
video confrensing tool which could allow one to one conversation
between to user. Or if there is other way to develop it please
suggest.
 Thank you
-- 
Regards
RAKESH
"Allow Your Own Inner Light to Guide You"

___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] Need someone to do a PHP tutorial at RKGIT , Sun. , Oct. 24th

2010-10-20 Thread Rakesh Kumar
I am up and it would a great pleasure to go there. But tell me which
type of audience they are. I mean will there be an expert type of talk
or they are just new to PHP.

On 10/18/10, g...@sarai.net  wrote:
> Hi,
>
> I had mentioned this to a few people, but had forgotten
> to send it to the list at large, and now it has become
> a little urgent, as they would like a PHP expert to give
> a tutorial on this coming Sun., the 24th of Oct.
>
> This is part of an ongoing engagement with CSI-Ghaziabad,
> and RKGIT in particular, so it would be good if someone
> would step forward. I think that the required commitment
> would be a few hours on Sun., and transport to RKGIT would
> be arranged, or reimbursed. Please let me know if you would
> like to volunteer for this, either in private email, or by
> following up here. Thanks.
>
> Regards,
> Gora
>
>
>
> ___
> Ilugd mailing list
> Ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
>


-- 
Regards
RAKESH
"Allow Your Own Inner Light to Guide You"

___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] Fwd: [barcampdelhi: 1109] Android Developer Labs @ Gurgaon (Oct 20th)

2010-10-04 Thread Rakesh Kumar
Can a student come there to learn. I have never experienced it so will
it be worthy for me come there.

On 10/4/10, Gaurav Mishra  wrote:
> FYI
>
> Regards,
> Gaurav Mishra
>
> Head- Strategic Planning and Operations
> - Media Redefined -
> " A social media branding & consulting studio. "
>
> # Web: http://www.mediaredefined.com
> # Blog: http://www.gmishra.com
> # Twitter: http://www.twitter.com/gmishra
> # LinkedIn:http://www.linkedin.com/in/gauravmishra7
>
>
> -- Forwarded message --
> From: Google Developer Relations 
> Date: Mon, Oct 4, 2010 at 12:37 PM
> Subject: [barcampdelhi: 1109] Android Developer Labs @ Gurgaon (Oct 20th)
> To: barcampdelhi 
>
>
> Our Android Advocates are going on a world tour, traveling to
> locations all around the globe! Hear about the state of the Android
> platform, get hands-on with the latest version of the SDK, meet like-
> minded Android engineers, test your apps, and ask your questions
> directly to Android team members.
>
> Register here for our Gurgaon event:
> https://sites.google.com/site/androiddeveloperlabsindia/home
>
> -Google Developer Relations(India)
>
> --
> You received this message because you are subscribed to the Google Groups
> "barcampdelhi" group.
> To post to this group, send email to barcampde...@googlegroups.com.
> To unsubscribe from this group, send email to
> barcampdelhi+unsubscr...@googlegroups.com
> .
> For more options, visit this group at
> http://groups.google.com/group/barcampdelhi?hl=en.
> ___
> Ilugd mailing list
> Ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
>


-- 
Regards
RAKESH
"Allow Your Own Inner Light to Guide You"

___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] Minutes of meeting (19th September)

2010-10-03 Thread Rakesh Kumar
Can you please give any links where we can find the project you've
discussed upon? So that we, who couldn't attend that meeting, can get
some essential things.
Actually due to minor/internal exams in my college, i couldn't attend
that meeting, and so request you to post some links/info with regard
to those discussions.

On 10/2/10, Gaurav Mishra  wrote:
> Guys,
>
> We had a lovely crowd gathered at JNU campus and this time our
> localhost "Andrew Sir" welcomed us with a nice conference hall and
> some samosas to add in the flavour.
>
> We were 8 people in total and at the end whole session took a BOF form
> , we started with a session from Dhiraj Gaur on Open source maturity
> model. And it threw up some very discussion and insights on support
> model offered by different vendors on open source softwares. It was
> total fun and informative both at the same time to see the business
> and social opportunities in support. Dhiraj promised to repost this
> OSMM presentation on ILUGD mailing list for more reviews and insights.
>
> We finished off the meet with a brief discussion on freed.in and some
> projects for students from engineering college. After which the
> flagship eating ceremony happened at our JNU canteen. It was a a fun
> meetup with some light weight discussions thrown by.
>
> Look forward to meet everyone in next meetup.
>
> Cheers..
>
> Gaurav Mishra
>
> Co-founder
> - Media Redefined -
> " A social media branding & consulting studio. "
>
> # Web: http://www.mediaredefined.com
> # Blog: http://www.gmishra.com
> # Twitter: http://www.twitter.com/gmishra
> # LinkedIn:http://www.linkedin.com/in/gauravmishra7
>
> ___
> Ilugd mailing list
> Ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
>


-- 
Regards
RAKESH
"Allow Your Own Inner Light to Guide You"

___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] FOSS.IN/2010 - Call for Participation

2010-09-28 Thread Rakesh Kumar
Great. Finally it is declared, i was waiting for a long time.

On 9/27/10, Kishore Bhargava  wrote:
> Hello All,
>
> We may be running a little late here but the CfP is finally out. Hurry
> and submit so that you can be part of the event. In case you missed the
> announcement, do look here:
>
> http://foss.in/news/foss-in2010-call-for-participation.html
>
> Follow us on twitter (@fossdotin):
>
> http://twitter.com/fossdotin
>
> On Facebook we are at:
>
> http://www.facebook.com/FOSS.IN
>
> The CfP closes 10-Oct-2010 (23:59 GMT+5:30) so you do want to hurry.
>
> See you at FOSS.IN/2010
>
> Cheers...Kishore
> --
> Advertising may be described as the science of arresting the human
> intelligence long enough to get money from it.
>
> ___
> Ilugd mailing list
> Ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
>


-- 
Regards
RAKESH
"Allow Your Own Inner Light to Guide You"

___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


[ilugd] I am facing problem with my Graphics card

2010-09-11 Thread Rakesh Kumar
Hi,
 I have recently installed ubuntu 9.10 on my laptop but my my laptop
does not seems to support graphics card.
Video controller for my laptop: "SiS Mirage3+ Graphics embedded in SiS M672
Chipset".
I searched here
"http://ncc-1701a.homelinux.net/~linux-sis/index.php?page=Downloads";
also and installed one of the driver and configured xorg.conf accordingly
but it didn't work. Now one more problem is arisen that my laptop report an
error while starting asking me to reconfigure xorg.conf or use at low
resolution.
Here is xorg.conf file which i have configured





rg.conf (X.Org X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type "man xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
# sudo dpkg-reconfigure -phigh xserver-xorg

Section "InputDevice"
Identifier "Generic Keyboard"
Driver "kbd"
Option "XkbRules" "xorg"
Option "XkbModel" "pc105"
Option "XkbLayout" "es"
EndSection

Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
EndSection

Section "InputDevice"
Identifier "Synaptics Touchpad"
Driver "synaptics"
Option "SendCoreEvents" "true"
Option "Device" "/dev/psaux"
Option "Protocol" "auto-dev"
Option "HorizEdgeScroll" "0"
EndSection
Section "Device"
Identifier "Configured Video Device"
Boardname "VESA driver (generic)"
Busid "PCI:1:0:0"
Driver "sis"
Screen 0
EndSection

Section "Monitor"
Identifier "Configured Monitor"
Vendorname "Generic LCD Display"
Modelname "LCD Panel 1280x800"
Horizsync 31.5-50.0
Vertrefresh 56.0 - 65.0
modeline "640x...@60" 25.2 640 656 752 800 480 490 492 525 -vsync -hsync
modeline "800x...@56" 36.0 800 824 896 1024 600 601 603 625 +hsync +vsync
modeline "800x...@60" 40.0 800 840 968 1056 600 601 605 628 +hsync +vsync
modeline "1024x...@60" 65.0 1024 1048 1184 1344 768 771 777 806 -vsync
-hsync
modeline "1280x...@60" 83.46 1280 1344 1480 1680 800 801 804 828 -hsync
+vsync

Gamma 1.0
EndSection

Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
Defaultdepth 24
SubSection "Display"
Depth 24
Virtual 1280 800
Modes "1280x...@60" "1024x...@60" "800x...@60" "800x...@56" "640x...@60"
EndSubSection
EndSection

Section "ServerLayout"
Identifier "Default Layout"
screen 0 "Default Screen" 0 0
Inputdevice "Synaptics Touchpad"
EndSection
Section "Module"
Load "glx"
Load "GLcore"
Load "v4l"
EndSection
Section "device" #
Identifier "device1"
Boardname "VESA driver (generic)"
Busid "PCI:1:0:0"
Driver "sis"
Screen 1
EndSection
Section "screen" #
Identifier "screen1"
Device "device1"
Defaultdepth 24
Monitor "monitor1"
EndSection
Section "monitor" #
Identifier "monitor1"
Gamma 1.0
EndSection
Section "ServerFlags"
EndSection


And this configuration file was suggested in the description of that driver
package. Please suggest me something to get rid of this problem. And yes my
lapy is currently working on 800*600px resolution and when i open "Display
Preferences" it shows "Unknown monitor" means it is not able to find any
display driver.
Please help me.

-- 
Thanks & Regards
RAKESH
"Allow Your Own Inner Light to Guide You"
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


[ilugd] I am not able to use Red Hat on my system. Need Help

2010-08-31 Thread Rakesh Kumar
Hi,
I am using "HCL Notebook B30 C2D" and i bought it in 2008 march. I have
been using Windows on my system and Red Hat on VMWare because my machine is
supporting Linux(Particularly LAN card, SIS chip) and when i asked Customer
Support Executives, they told me that it wouldn't support Linux. Yesterday
I've got Red Hat's latest 5.4 version and tried to install it on my laptop.
This time it is supporting W LAN but not Ethernet card.
   I searched for it on Internet also but couldn't get anything fruitful.
Can you tell me how can i get any driver for it or anything which could
enable LAN card. Now i want to switch to Linux completely and i am thinking
to buy a new laptop if it will not support Linux, but before that i want to
try my best to make my system Linux supportable. Meanwhile i am searching on
net also.
-- 
Regards
RAKESH
"Allow Your Own Inner Light to Guide You"
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] [X-Post] Guest account in Ubuntu 10.04

2010-08-01 Thread Rakesh Kumar
On Sun, Aug 1, 2010 at 11:40 PM, Sudhanwa Jogalekar
wrote:

> Mandriva comes up with a Xguest account by default.
>
> This guest user has similar permissions/access rights like any generic
> user.
> However, nothing is saved on the disk. Once the user logs out, whatever the
> contents has created is lost.
>
> Not sure if you want similar functionality for user. May be you can try it
> out once and decide.
>
> Best regards,
> -Sudhanwa
>
> ~!~!~!~!~!~!~!~!~!~!~!~!~!~!~!~!~!~!~!~!~!~!
> www.sudhanwa.com
> ___
> Ilugd mailing list
> Ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
>
Can't we do this by samba? As it will allow the user to log in to the main
server machine under the restricted permission.


-- 
Regards
RAKESH
"Allow Your Own Inner Light to Guide You"
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] Need J2EE help

2010-07-09 Thread Rakesh Kumar
On Fri, Jul 9, 2010 at 11:43 PM, Ashish SHUKLA  wrote:

> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA512
>
> Rakesh Kumar writes:
>
> [...]
>
> > Okay alright tell me one thing that is there anything like classpath in
> > Linux. If yes please tell me how to set classpath in Linux?
>
> You probably mean CLASSPATH for Java applications, which you can set by
> passing '-cp' argument to the 'java' command-line. For details, RTFM
> java(1)
> OR the documentation of the Servlet container, if you're looking for
> configuration of your servlet container.
>
Yeah! but please can you elaborate it please?

>
> - --
> Ashish SHUKLA
>
> “Software and cathedrals are much the same - first we build them, then
> we pray.” (anonymous)
> -BEGIN PGP SIGNATURE-
> Version: GnuPG v2.0.15 (GNU/Linux)
>
> iQIcBAEBCgAGBQJMN2bcAAoJEMdGz6nnT6SwRnUP/3SgtYo2gwIc5UapXrzFWMja
> Sz/UJA94K+rUfxGHFxyIYE+HFbDEUx+0uTKtwXllPA7j/paA/jMAimNtHkdmRdh/
> ogd80YXQDOTh8m1Y3WInKbDQoyjvHzq8AG6tvngwnlj7ObOLHz14JkNThGVVuQe+
> K7Rjcuzreb+4usG0INiso37HrehnA1zir5+qqeSmnzmzaGcEW82LHJCm0Fb3YBtL
> G7u5eHNt5LFyRNomcZfctqJCXogag8d9T1bdM5DJzMUJvE6/8L8t5bJe55OM4XjG
> Hc6phFnbcuOfhcIFQ/HU5qtk6Fj17jtSjoximWnEWp8nEbh4hYJpJF7te9Xf2d7P
> EhM8i1Lc8vHLk+5XCPu1f+nnl2Ylzo5dtdT85MoNQiywMcmkrmhe+kfd3Q+R+iQG
> 4vFoPggVhmQ1shn+/f9cfIGFOPRSmp3AhaxKhEUnxXnJLVTyWP//9+rqXdUKCDVF
> PFBjFXY4oRHzHqEic5dxhmkXwZVLad9r3R5LU4Ul92qdZhHTu2M4jdGuQa9vKFV4
> NRzRpLfCY10mcWLMy2zhCpNgg+8xgNGosWue2oCUOHq8hVf7vNUSa7xPpwbzUNvU
> jdt1pBIDDFaiPeg8E+gucw68cXX+dRbi7O23QzhdjVX0MoX931YgxIQPHB6xDgTz
> WcyxAZDNx5IN0ZiGBBsz
> =j9vl
> -END PGP SIGNATURE-
>



-- 
Regards
RAKESH
"The true sense of knowledge is not intelligence, but the imagination"
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] Need J2EE help

2010-07-09 Thread Rakesh Kumar
On Fri, Jul 9, 2010 at 5:17 AM, Ashish SHUKLA  wrote:

> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA512
>
> Rakesh Kumar writes:
> > Hi all,
> > I have started working on J2EE(Servlets and JSPs) on LINUX. I
> have
> > been working on this language on windows only but now i have some free
> time
> > and i want to learn, how can i run my servlets on Linux. I have no
> > experience in servlets on LINUX so before i start working on it i thought
> to
> > ask this question to you this would help me to start properly.
>
> 1. Install OpenJDK, IcedTea or Sun JDK, whatever your GNU/Linux
> distribution
>   provides through its package repository. Download JDK from Sun iff your
>   distribution doesn't provide packages.
>
> 2. Install a servlet container (e.g. Apache Tomcat[1]), by downloading and
>   extracting the tarball in your $HOME. This is preferred, even when
>   distribution provides a package for the same in their repository, as most
>   of the distributions tend to split the package according to their file
>   system hierarchy conventions, which conflicts with the paths you
> encounter
>   in the documentation, which you might find difficult. Other than this
> there
>   is no harm in distribution packages, on the contrary for production use,
>   always go with distribution's packages whenever available, OR package it
>   yourself, if packages aren't available.
>
> 3. The rest of the steps (like starting/stopping) should be same as
>   Windows. The configuration should also be the same with just the
> difference
>   in path conventions.
>
Okay alright tell me one thing that is there anything like classpath in
Linux. If yes please tell me how to set classpath in Linux?


>
> References:
> [1]  http://tomcat.apache.org/
>
> HTH
> - --
> Ashish SHUKLA  | GPG: F682 CDCC 39DC 0FEA E116  20B6 C746 CFA9 E74F
> A4B0
> freebsd.org!ashish | 
> http://people.freebsd.org/~ashish/<http://people.freebsd.org/%7Eashish/>
>
> “But it was all right, everything was all right, the struggle was
> finished. He had won the victory over himself. He loved Big Brother.”
> (George Orwell, "Nineteen Eighty-Four", 1949)
> -BEGIN PGP SIGNATURE-
> Version: GnuPG v2.0.15 (GNU/Linux)
>
> iQIcBAEBCgAGBQJMNmOiAAoJEMdGz6nnT6SwfXAQAJBuJakPaCoyIj/v6C8bNrSW
> BVHddsboWkWILD5k/U6qyN4m7UFyPjIAnu+nL8iLfzT8hkvJEP7TAu7Y50Fm3Ivi
> y9Fg13935xWivuGXtHbGvinVHWEjwrTO11nvGLxo64919+5Q7lVns7OIt252BUI8
> 9EWtLU+EjJMoO4/NBo5ySL0nrwhwHQPqvRTHv8IeP+GM0NSEsyz4uMoHscC/d5LN
> DNh6wRCgwPVKcxdQdUcgTks6vrhoHF6FX7hU/xBBzzGiJwovijvobBlm5H9emoI9
> +X0/nzSLwgGAt24pzxHaZvjoOrSpuGCtdHjZMcHvKNoiDshXuNkuL7xef5NCJqz7
> ekwCx+vLWvhKqyFkSnu5K7HHo8qa6YahyAkLlMl9EIJyQxBFrr4Wj/07FYPgM1OM
> TolMJUk9Iq1KSDecnaNJEmx5OSfmNrByO15vHu2LF2ZA4RwMgUPD78lKsvk1qeQy
> 6OYk3MbsWM+RqIHPrR5XDvmD2rbildw3ZAOEk7HIzKIDXdjffOR+qSeSd1YVEyzj
> VDUpqpySiov9IOZvSNPueS7WeirQ/I2lNb6XMPFmxXTpdVIbqdz3nre4szpcmKDc
> I0F+8YAplL696u+kymNoIqHhTC7d89abyevqq8V3vLrCvEx4UEJ27MNAm8UnTb+N
> DEqXRmevhvRFBFn4Seo/
> =Vpmt
> -END PGP SIGNATURE-
>



-- 
Regards
RAKESH
"The true sense of knowledge is not intelligence, but the imagination"
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


[ilugd] Need J2EE help

2010-07-08 Thread Rakesh Kumar
Hi all,
I have started working on J2EE(Servlets and JSPs) on LINUX. I have
been working on this language on windows only but now i have some free time
and i want to learn, how can i run my servlets on Linux. I have no
experience in servlets on LINUX so before i start working on it i thought to
ask this question to you this would help me to start properly.
-- 
Thanks & Regards
RAKESH
"The true sense of knowledge is not intelligence, but the imagination"
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


[ilugd] Need PHP help

2010-06-30 Thread Rakesh Kumar
Hi,
Today i started working on WAMP so that i can work with PHP on Windows
also. While checking it's functionality i wrote few lines of code but found
an unexpected error even according to me code is absolutely correct. Here it
is:


0;$i=$i-4,$j=$j-3)
{
 if($color==$white)
  {
   $color=$gold;
  }
 else
 {
  $color=$white;
 }
imagefilledrectangle($image,400-$i,300-$j,$i,$j,$color);
}
imagejpeg($image);
imagedestroy($image);
?>


*The error i found was :*
  *Fatal error*: Call to undefined function
imagecreate() in *C:\wamp\www\myphp\image1.php* on line *2*

After that
1: I checked the php.ini file also and everything according to me is right.
2: Tried to run the same code on Linux but on Linix
*imagejpeg($image);*line was not working. I used the same
function(imagejpeg();) in other
program on Linux and it was working properly.
Please help me to get rid of this problem. I am unable to understand
the problem.
-- 
Regards
RAKESH
"The true sense of knowledge is not intelligence, but the imagination"
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] [ilug]Need Mysql Help

2010-06-23 Thread Rakesh Kumar
On Tue, Jun 22, 2010 at 8:15 PM, Robin Ladwal wrote:

>
> Dear Anupam
>
> I agree to what you advised but my only intention to get it build from
> source was because if you have noticed the release you mentioned (5.2.24rc)
> is a release candidate and prone to lots of bugs and stability too doubtful.
> Other release (5.1.18a) is too an alpha release and also under testing.
>

> The only intention was to save the from unstability and bugs which a newbie
> might not be aware of. Building from source is what i guess is usually not
> so tough and also enhance the knowledge of the user too.
>
> Please comment. I apologize if i made any mistake.
>
   I totally agree with you.

>
> Thanks & Regards
> ---
> Robin Ladwal
> CEO
> Arahan Solutions (P) Ltd.
>
> Website: http://www.arahansolutions.com
> Official Email ID: robin.lad...@arahansolutions.com
>
>
>
> Date: Tue, 22 Jun 2010 11:30:47 +0530
> Subject: Re: [ilugd] [ilug]Need Mysql Help
> From: ajn...@gmail.com
> To: robin_lad...@hotmail.com
> CC: kumar3...@gmail.com; ilugd@lists.linux-delhi.org
>
> On Sun, Jun 20, 2010 at 8:36 PM, Robin Ladwal 
> wrote:
>
>
>
> Dear Rakesh
>
>
>
> Please check out the following link:
>
>
>
> http://www.mysql.com/downloads/workbench/5.0.html
>
>
>
> You need to download source code and then compile it on your distro. Its
>  easy read "readme.txt" or "install.txt" before installing it.
>
>
>
>
>
>
>
> Er.. No, please don't ask people new to Linux to build from source when
> there are better alternatives (even if it is "easy"). There are pre-built
> Mysql
> Workbench packages available for several Linux distributions here -
>
  What's the matter if someone suggested something according to him. I
think if someone asks us any question each individual will have his/her own
opinion. And how can you justify a person whether he is new to Linux or any
technology unless or until he mentions.
  Please do not think anyone a newbie without proper justification. By
the way i have solved my problem now.

>
>
>
> http://dev.mysql.com/downloads/workbench/5.2.html
>
>
>
-- 
Regards
RAKESH
"Try not to become a man of success,but the man of value"
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] [ilug]Need Mysql Help

2010-06-20 Thread Rakesh Kumar
On Sun, Jun 20, 2010 at 5:34 PM, Robin Ladwal 
wrote:
> Dear Rakesh
>
> I don't know whether you know or not but i will suggest you to try MYSQL
GUI
> TOOLS which are available at MySql official site and this is also
available
> in Debian/Ubuntu standard repos and can be installed using apt-get or
> aptitude. MySql GUI Tools is a bundle of frequently needed utilities.
>
> More over Knoda is also a good light weight tool for database frontend
based
> on KDE Linux. Its worth a try.
>
> Thanks & Regards
> --
> Robin Ladwal
> CEO
> Arahan Solutions Private Limited
>
> Contact No. 0-276826
>
>
>
>
>> Date: Sun, 20 Jun 2010 16:20:32 +0530
>> From: kumar3...@gmail.com
>> To: npkash...@gmail.com
>> CC: ilugd@lists.linux-delhi.org
>> Subject: Re: [ilugd] [ilug]Need Mysql Help
>>
>> On Sat, Jun 19, 2010 at 11:15 PM, Nishant Prakash Kashyap
>>  wrote:
>> > I use Windows, but i'm not using MySql I dont have any issues
>> > why
>> > are you giving me your suggestions
>> >
>> >
>> >
>> > On Sat, Jun 19, 2010 at 11:04 PM, abhishek jain
>> > wrote:
>> >
>> >>
>> >>
>> >> On Sat, Jun 19, 2010 at 6:02 PM, Nishant Prakash Kashyap <
>> >> npkash...@gmail.com> wrote:
>> >>
>> >>> my OS is Windows XP-SP3
>> >>>
>> >>>
>> >> If you are using windows and you being a newbie i would rather
>> >> recommend ,
>> >> SQLYog. It is an executable and easy to get start with that.
>> >> thanks
>> >> abhi
>> >>
>> >
>> >
>> >
>> > --
>> > Warm Regards,
>> > Nishant Prakash Kashyap
>> > ___
>> > Ilugd mailing list
>> > Ilugd@lists.linux-delhi.org
>> > http://frodo.hserus.net/mailman/listinfo/ilugd
>> >
>> Hi,
>> Actually i have seen a graphical interface in a version of MYSQL
>> which is windows compatible. I was thinking if i could have an
>> interface on Linux also. The size of data is very large and each
>> product has twenty six attribute.
>> Writing a program(probably in PHP with HTML) which could give an
>> interface to fill the data is the last option. I was curious to know
>> if there is a graphical interface in Windows(inbuilt) then why not for
>> Linux. After all it is an Open Source.
>> --
>> Regards
>> RAKESH
>> "The true sense of knowledge is not intelligence, but the imagination"
>>
>> ___
>> Ilugd mailing list
>> Ilugd@lists.linux-delhi.org
>> http://frodo.hserus.net/mailman/listinfo/ilugd
>
> 
> Manage your finance and manage money through MSN Money Special Drag n'

Hi
   Can you give me the link to download mysql-gui-tool for linux. While i
was searching, i could only find the tools for windows.
Actually i use Red Hat 5.3 and yum repose to install package and i does not
include any mysql-gui-tool.

@Mehul i didn't mean that. I was just thinking, when i could not find
any fruitful result, that mysql is an open source and if it has a GUI tool
for windows then why not for *LINUX*. I am a student and never worked on
other platform as you mentioned about CLI. Knowing this, if you can help me
creating the database?

For the time being i have downloaded a tool which i could find on mysql site
named MYSQL WORKBENCH. I will see whether it works for me?


-- 
Regards
RAKESH
"The true sense of knowledge is not intelligence, but the imagination"
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] [ilug]Need Mysql Help

2010-06-20 Thread Rakesh Kumar
On Sat, Jun 19, 2010 at 11:15 PM, Nishant Prakash Kashyap
 wrote:
> I use Windows, but i'm not using MySql I dont have any issues why
> are you giving me your suggestions
>
>
>
> On Sat, Jun 19, 2010 at 11:04 PM, abhishek jain
> wrote:
>
>>
>>
>> On Sat, Jun 19, 2010 at 6:02 PM, Nishant Prakash Kashyap <
>> npkash...@gmail.com> wrote:
>>
>>> my OS is Windows XP-SP3
>>>
>>>
>> If you are using windows and you being a newbie i would rather recommend ,
>> SQLYog. It is an executable and easy to get start with that.
>> thanks
>> abhi
>>
>
>
>
> --
> Warm Regards,
> Nishant Prakash Kashyap
> ___
> Ilugd mailing list
> Ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
>
Hi,
 Actually i have seen a graphical interface in a version of MYSQL
which is windows compatible. I was thinking if i could have an
interface on Linux also. The size of data is very large and each
product has twenty six attribute.
 Writing a program(probably in PHP with HTML) which could give an
interface to fill the data is the last option. I was curious to know
if there is a graphical interface in Windows(inbuilt) then why not for
Linux. After all it is an Open Source.
-- 
Regards
RAKESH
"The true sense of knowledge is not intelligence, but the imagination"

___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


[ilugd] [ilug]Need Mysql Help

2010-06-18 Thread Rakesh Kumar
Hello,
  I am Currently working on a project in my college with my
professor. This is a website development project and i have chosen
MYSQL for database. Now my problem is he has  very huge database and i
have to fill entire data into database. I have been working with the
database using shell. My question is-Is there any way or any graphical
interface so that i can fill data easily into database.
  Actually i am familiar with only MYSQL- PHP connectivity.
Please help me.
-- 
Regards
RAKESH
"The true sense of knowledge is not intelligence, but the imagination"

___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] [ILUG-BOM] [commercial][cross-post] Launch of FOSS Site Muktware

2010-05-05 Thread Rakesh Kumar
I took a look at this website. It's really a good effort to get all
the foss people at one plateform. great!!!

On Wed, May 5, 2010 at 12:51 AM, narendra sisodiya
 wrote:
> On Tue, May 4, 2010 at 4:45 AM, Swapnil Bhartiya > wrote:
>
>> Hi friends,
>>
>> I have been working as a foss journalist for over 6 years now. I am glad to
>> share with you that we are launching 'muktware.com', a complete FOSS and
>>
>
> I always try to put equation
> Hope for
> Effort <= Outcome.
>
>  <= (less then or equal to )
> --
> ┌─┐
> │    Narendra Sisodiya ( नरेन्द्र सिसोदिया )
> │    Society for Knowledge Commons
> │    Web : http://narendra.techfandu.org
> └─┘
> ___
> Ilugd mailing list
> Ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
>



-- 
Regards
RAKESH
"The true sense of knowledge is not intelligence, but the imagination"
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] Fedora Repo in RHEL

2010-04-19 Thread Rakesh Kumar
Why do want to install fedora packages in RHEL? When RHEL itself have
all and even more than fedora packages.

On 4/19/10, sankarshan  wrote:
> On Mon, Apr 19, 2010 at 7:41 PM, subodh  wrote:
>> Can I use fedora repository to install software in RHEL ?? If yes then how
>
> You are probably looking for 
>
>
> --
> sankarshan mukhopadhyay
> 
>
> ___
> Ilugd mailing list
> Ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
>


-- 
Regards
RAKESH
"The true sense of knowledge is not intelligence, but the imagination"

___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] Ubuntu Release Party - Guys Lets meet and lets rocks with Lucid

2010-04-19 Thread Rakesh Kumar
I am up wherever you organize.

On 4/19/10, arjuna  wrote:
> Im up for india habitat center!
>
> On Mon, Apr 19, 2010 at 1:20 AM, narendra sisodiya <
> narendra.sisod...@gmail.com> wrote:
>
>> Hey,, we will be having party for NCR region on Ubuntu Release at 2 May
>> 2010.(sunday). Lets plan venue and date and possibilities,,
>>
>> # who will be joining  ??
>> # we will burn Ubuntu 10.04 CDs and coke !!
>> # I vote for India Habitat Center Or Some where in Malviya Nagar or May be
>> JNU campus..
>>
>> PS: guy may you please edit the chart -
>> https://wiki.ubuntu.com/LucidReleaseParties#Asia
>>
>>
>> --
>> ┌─┐
>> │Narendra Sisodiya ( नरेन्द्र सिसोदिया )
>> │Society for Knowledge Commons
>> │Web : http://narendra.techfandu.org
>> └─┘
>> ___
>> Ilugd mailing list
>> Ilugd@lists.linux-delhi.org
>> http://frodo.hserus.net/mailman/listinfo/ilugd
>>
>
>
>
> --
> Best regards,
> arjuna
> ___
> Ilugd mailing list
> Ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
>


-- 
Regards
RAKESH
"The true sense of knowledge is not intelligence, but the imagination"

___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] RHEL bootable via pen drive....

2010-04-19 Thread Rakesh Kumar
Hi,
If you have installed RHEL then you can use yum repose to get the
liveusb-creator package and check how it works.

On 4/17/10, Sawrub  wrote:
> On 04/17/2010 11:02 AM, manish wrote:
>> Is it possible to make boot able pen drive for  Red Hat Linux
> Have not tried with RHEL, but yes for fedora its possible
> http://fedoraproject.org/wiki/FedoraLiveCD/USBHowTo . Also as a heads up
> will like to tell that it works fine if USB drive is <= 2Gigs as i tried
> the same with 4Gigs but the live system was not able to provide me with GDM.
> Also can try 'unetbootin'.
>
> --
> Saurabh Sharma
> Linux user number: 490644
> http://sawrub-blog.blogspot.com/
> Open your doors...It's time to look beyond Windows
>
>
> ___
> Ilugd mailing list
> Ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
>


-- 
Regards
RAKESH
"The true sense of knowledge is not intelligence, but the imagination"

___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] Php problem

2010-04-12 Thread Rakesh Kumar
Hi,
 You can do it via another way also. If you have the fedora dvd, contain
all the packages. Pick two packages named httpd and php*, install it. write
your php code like test.php save it at the location, which can be accessed
by your server, and it's done. Now you can see it from your browser.

On Mon, Apr 12, 2010 at 1:16 PM, arjuna  wrote:

> Do a google search for LAMP and install it. This will install apache
> itself.
> Type in http://localhost/ and if that works then apache is already
> installed...Put your php files in var/www and then type
> http://localhost/filename.php and your file should appear if apache is
> installed. If it is not installed do a search for LAMP and you should be
> able to install it as a package in one shot (ie apache, mysql, php) Hope
> that helps...
>
> On Mon, Apr 12, 2010 at 1:34 AM,  wrote:
>
> > I dont hav installed apache server on fedora12 Bt php5 is
> preinstalled.
> > How can i configure my php sothat i can see my php files in web browser??
> >
> > Send instant messages to your online friends
> http://in.messenger.yahoo.com
> >
> > ___
> > Ilugd mailing list
> > Ilugd@lists.linux-delhi.org
> > http://frodo.hserus.net/mailman/listinfo/ilugd
> >
>
>
>
> --
> Best regards,
> arjuna
> ___
> Ilugd mailing list
> Ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
>



-- 
Regards
RAKESH
"The true sense of knowledge is not intelligence, but the imagination"
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] Issue with HP LaserJet 1020 printer (was: Re: Ujwal Gupta would like to add you as a friend on Skoost)

2010-03-17 Thread rakesh kumar
The best place to search about it is google. I have also faced same problem
six months ago, but eventually fixed it. Actually i did this for my college
and so don't remember the exact code that you need to configure in
"cup(complex unix printer)" file, but you can find it on internet easily.

On Tue, Mar 16, 2010 at 11:33 PM, Gora Mohanty  wrote:

> On Tue, 16 Mar 2010 23:21:03 +0530
> Amit Sharma  wrote:
> [...]
> > if u want step by step details/ document, contact me offlist.
> [...]
>
> It is great that you are willing to be so helpful, but why not make
> about the same amount of effort to put these instructions up at
> some public location? One possible place is
> http://wiki.linux-delhi.org (you would need to create an account for
> yourself).
>
> Regards,
> Gora
>
> ___
> Ilugd mailing list
> Ilugd@lists.linux-delhi.org
> http://frodo.hserus.net/mailman/listinfo/ilugd
>



-- 
Regards
RAKESH
"The true sense of knowledge is not intelligence, but the imagination"
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


[ilugd] [ilug] What is dump frequency?

2010-02-22 Thread rakesh kumar
Hi,
 Can anybody explain me about "DUMP FREQUENCY" for backups in Linux?
Meanwhile i am searching on Internet.
Thanks
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] I am unable to understand this C code

2010-02-12 Thread rakesh kumar
On Fri, Feb 12, 2010 at 1:46 AM, Ankit Chaturvedi <
ankit.chaturv...@gmail.com> wrote:

>
>
> On Thu, Feb 11, 2010 at 7:16 PM, rakesh kumar  wrote:
>
>>
>>
>> On Thu, Feb 11, 2010 at 3:33 PM, Ankit Chaturvedi <
>> ankit.chaturv...@gmail.com> wrote:
>>
>>> On Sun, Feb 7, 2010 at 5:05 PM, SUBODH ROHILLA >> >wrote:
>>>
>>> > I have tried compling it with g++ and also with g++ -Wall , but it
>>> gives no
>>> > error warning message. It runs smoothly
>>> >
>>> > On Sun, Feb 7, 2010 at 4:51 PM, Prashant Batra >> > >wrote:
>>> >
>>> > > On Sat, Feb 6, 2010 at 4:29 PM, rakesh kumar 
>>> > wrote:
>>> > > > Hi all,
>>> > > > Today while studying a book i just saw the following lines
>>> of
>>> > > code:
>>> > > > int main(void)
>>> > > > {
>>> > > >  int printf(const char *n,...);
>>> > > The local declaration(prototype of the function)
>>> > > >  int a=1;
>>> > > >  printf("abcdef");
>>> > > Calls the C library printf() function.at the time of linking.
>>> > > > return 0;
>>> > > > }c
>>> > > >
>>> > > >  and the output was: abcdef
>>> > > > When i tried to run this code, it ran well without any error and
>>> this
>>> > was
>>> > > > asked in GATE exam also. I am confused, how it ran without
>>> ,
>>> > > when i
>>> > > > used printf() function and gave the same output as printf gives.
>>> Okay
>>> > > after
>>> > > > that i commented the third line "int printf(const char *n,);",
>>> the
>>> > > > output didn't get affected. Now i am thinking when we can use
>>> printf()
>>> > > > function without any prototype or defining any header, then why do
>>> we
>>> > > need
>>> > > > to use #include<> in our program, because when i changed this
>>> program a
>>> > > bit
>>> > > > by substituting printf() with scanf() it worked fine like scanf()
>>> does
>>> > > > normally.
>>> > > >  Can anyone explain me,what is this?
>>> > > The C compiler is a bit lenient in syntactic analysis part for
>>> > > functions. It assumes a default declaration. And while linking links
>>> > > your printf() call to the library fucntion.But it should give
>>> > > warning(saying some implicit declaration).
>>> > > just try compiling with -Wall option set, you will get the warning.
>>> > > Also compile the code using g++, it will give error, saying prototype
>>> not
>>> > > found.
>>> > > > Thanks
>>> >
>>>
>>> No. It won't generate any warnings as -lc (link with C library flag) is
>>> implicit in gcc ver 3.3+ (gcc now has its own builtin libc). IIRC,
>>> -fno-builtin should generate an error.
>>>
>>  I think you are right but as you wrote, will it work with other C
>> code? I mean like i wrote earlier it worked well scanf(), will it work other
>> lib functions?
>>
>
> Not necessarily. Only those libc functions are implicit that are truly
> cross-platform, arch-independent. For example i/o functions (printf,scanf,
> read, write etc) are available on all platforms regardless of the
> architecture but some functions (like those of string family) depend upon
> machine specific features (endianness, in case of strings) so libc functions
> related to these might not be available on all platforms. Then you need to
> explicitly include the machine specific header to enforce that particular
> implementation.
>
> In either case, always include headers. GCC is not the only (or best) C
> compiler.
>
Okay!!! Now i got it. Today i was searching about it, but couldn't get
anything logical but some of them have written almost the same thing. But
can you explain me what is need of third line printf() prototype?
   Thanks a lot to all of you

>
>
>>
>>
>>> > > ___
>>> > > > Ilugd mailing list
>>> > > > Ilugd@lists.linux-delhi.org
>>> > > > http://frodo.hserus.net/mailman/listinfo/ilugd
>>> > > >
>>> > >
>>> > > ___
>>> > > Ilugd mailing list
>>> > > Ilugd@lists.linux-delhi.org
>>> > > http://frodo.hserus.net/mailman/listinfo/ilugd
>>> > >
>>> > ___
>>> > Ilugd mailing list
>>> > Ilugd@lists.linux-delhi.org
>>> > http://frodo.hserus.net/mailman/listinfo/ilugd
>>> >
>>>
>>>
>>>
>>> --
>>> --
>>> Ankit Chaturvedi
>>> GPG: 05DE FDC5 468B 7D9F 9F45 72F1 F7B9 9E16 ECA2 CC23
>>> <http://www.google.com/profiles/ankit.chaturvedi>
>>> ___
>>> Ilugd mailing list
>>> Ilugd@lists.linux-delhi.org
>>> http://frodo.hserus.net/mailman/listinfo/ilugd
>>>
>>
>>
>
>
> --
> --
> Ankit Chaturvedi
> GPG: 05DE FDC5 468B 7D9F 9F45 72F1 F7B9 9E16 ECA2 CC23
> <http://www.google.com/profiles/ankit.chaturvedi>
>
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


[ilugd] What happened in today's meeting

2010-02-07 Thread rakesh kumar
Hi,
Sorry i couldn't get there today but curiously waiting what happened in
today's meeting. Have the date for freed.in been decided today?
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] I am unable to understand this C code

2010-02-06 Thread rakesh kumar
  * I think that GATE questions are generally being asked on the basis
of logic and not depend how intelligent our compiler is*. I never
experienced that any GATE question have been asked based other than the
logic.
   Sudhir, as you wrote that at first time in the third line, when
printf was used, it was declaration but i want to ask if it is a declaration
then where is the body of the function? and again if it is declaration then
when i used the declared function then it should work according to how it
was declared no matter that we have used a function that is already declared
in C library because function overloading is allowed. It didn't show any
warning or anything. I think as it appeared to me,this program has used the
library defined printf() function and if compiler can use printf() or
scanf() function without declaring prototype then it is out of our
convention that we use in our C program and so i think it is something other
than the intelligence of compiler.
   Haven't you ever experienced this type of problem or question? Please
tell me some fruitful solution and logic that i can use to solve other
question asked in GATE or in other respected exams.
Thanks
On Sat, Feb 6, 2010 at 4:52 PM, sudhir kumar  wrote:

> On Sat, Feb 6, 2010 at 4:29 PM, rakesh kumar  wrote:
> > Hi all,
> > Today while studying a book i just saw the following lines of
> code:
> > int main(void)
> > {
> >  int printf(const char *n,...);
> This is pretty obvious and is declaration of a local function.
> >  int a=1;
> >  printf("abcdef");
> This call willl result in the call to above defined local printf()
> function.
> > return 0;
> > }
> >
> >  and the output was: abcdef
> > When i tried to run this code, it ran well without any error and this was
> > asked in GATE exam also. I am confused, how it ran without ,
> when i
> > used printf() function and gave the same output as printf gives. Okay
> after
> > that i commented the third line "int printf(const char *n,);", the
> I think this is because of the improved intelligence in today's
> compilers. However the
> compiler warns you about the declaration of the function, but during
> linkage time since
> it links the program to the standard c library and hence the printf()
> function from there
> is called.
>
> > output didn't get affected. Now i am thinking when we can use printf()
> > function without any prototype or defining any header, then why do we
> need
> > to use #include<> in our program, because when i changed this program a
> bit
> One scenario I can think of is portability, other may be conflct which
> may arise because
> of a similar declaration of the function somewhere else in the code.
>
> > by substituting printf() with scanf() it worked fine like scanf() does
> > normally.
> >  Can anyone explain me,what is this?
> > Thanks
> > ___
> > Ilugd mailing list
> > Ilugd@lists.linux-delhi.org
> > http://frodo.hserus.net/mailman/listinfo/ilugd
> >
>
>
>
> --
> Sudhir Kumar
>
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


[ilugd] I am unable to understand this C code

2010-02-06 Thread rakesh kumar
Hi all,
 Today while studying a book i just saw the following lines of code:
int main(void)
{
 int printf(const char *n,...);
 int a=1;
 printf("abcdef");
return 0;
}

 and the output was: abcdef
When i tried to run this code, it ran well without any error and this was
asked in GATE exam also. I am confused, how it ran without , when i
used printf() function and gave the same output as printf gives. Okay after
that i commented the third line "int printf(const char *n,);", the
output didn't get affected. Now i am thinking when we can use printf()
function without any prototype or defining any header, then why do we need
to use #include<> in our program, because when i changed this program a bit
by substituting printf() with scanf() it worked fine like scanf() does
normally.
 Can anyone explain me,what is this?
Thanks
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] Hosting a website

2009-12-01 Thread rakesh kumar
On Mon, Nov 30, 2009 at 10:47 PM, Gaurav Gehani
wrote:

> Hi,
> need of dns is that you wont be feeling much comfortable by telling your IP
> address to everyone. Will you be rather thn name?. Also if your IP is
> dynamic, lets say it changes everytime u restart your system thn ip will
> change too
> so that name u get from dyndns (name u choose to create, for ex say
> www.rakeshkumar.dyndns.org , you can update it repeatedly to change to
> point
> to your IP address or you can have tools to do that probably. I use HFS
> file
> server to host files on my system and that automatically updates the IP for
> dns server each time ip is changed.
>   Okay now i got the concept. I will try to do that.
>
thanks
reg
rakesh

> On Mon, Nov 30, 2009 at 9:13 PM, rakesh kumar  wrote:
>
> >  I have visited the given site. Please confirm me that you mean to say if
> i
> > want my server to run on network i will need to have a DNS which can
> > translate any one's query into my IP address?
> >
> > On Mon, Nov 30, 2009 at 2:58 AM, Gaurav Gehani <
> gauravforyou...@gmail.com
> > >wrote:
> >
> > > On Sun, Nov 29, 2009 at 5:01 PM, rakesh kumar 
> > wrote:
> > >
> > > > Hi
> > > >  Actually it is a project which i am working on and it is a live
> > > > project means i will have to show this website at the time of
> > > presentation
> > > > perhaps they will give me some network or whatever i also don't know
> > > > exactly. That's why i asked this question to you all. I am a student
> > and
> > > i
> > > > don't have so much experience so if you have experienced this type of
> > > live
> > > > project then please share your experience also it would be valuable
> for
> > > me
> > > > and resolve my doubt also.
> > > > Awaited for response
> > > > reg
> > > > rakesh
> > > > B. Tech 3rd Year
> > > >
> > > > On Fri, Nov 27, 2009 at 11:09 PM, Mehul Ved 
> > > wrote:
> > > >
> > > > > On Fri, Nov 27, 2009 at 3:49 PM, rakesh kumar  >
> > > > wrote:
> > > > > > Hi all,
> > > > > >  Can any one tell me what is the best method to host a
> > > website.
> > > > I
> > > > > > have studied apache so if can tell me about this then it would be
> > > great
> > > > > for
> > > > > > me.
> > > > >
> > > > > What kind of website? Is it just a testing site on your own server?
> A
> > > > > website for LAN? Or you want it to be visible on the internet?
> > > > > Either ways you can use apache as your web server.
> > > > >
> > > > > > I know about apache but still i want some thing on this topic
> from
> > > you,
> > > > > like
> > > > > > your experiences,some good methods and all. Meanwhile i am
> > searching
> > > on
> > > > > > google also.
> > > > > >  Actually i am working on a live project in my college so
> i
> > > > want
> > > > > it
> > > > > > to be a better project. Your experience will help me to make it
> > > better.
> > > > >
> > > > > You won't really get any meaningful replies unless you state what
> you
> > > > > are doing and what your queries are.
> > > > >
> > > > > ___
> > > > > 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/
> > > >
> > >
> > >
> > > Hi Rakesh
> > >
> > > Probably you should work on APACHE-MYSQL-PHP combination u can install
> > > wamp/lamp according to your need.
> > > Also you just need to make sure that your server (apache) is running
> and
> > > haves a public IP address

Re: [ilugd] How to configure PHP

2009-12-01 Thread rakesh kumar
Thanks a lot to you all. Now i am able to work with php properly. Thanks
again for your co-operation.
reg
rakesh

On Mon, Nov 30, 2009 at 11:27 PM, narendra sisodiya <
narendra.sisod...@gmail.com> wrote:

> On Mon, Nov 30, 2009 at 9:47 PM, rakesh kumar  wrote:
> > Sir i know PHP but didn't work on linux. I have been working on php only
> on
> > windows. I have books also but i never saw this thing that if i want to
> run
> > php scripts i should be saved in any specified folder. I know it is a
> server
> > side script but didn't have experienced it too much. Please tell me if i
> > need to go for training for my some queries then ..
>
> In this case, I do not think that you need training,, you just need to
> understand few concepts,
>
> ___
> 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] How to configure PHP

2009-11-30 Thread rakesh kumar
Sir i know PHP but didn't work on linux. I have been working on php only on
windows. I have books also but i never saw this thing that if i want to run
php scripts i should be saved in any specified folder. I know it is a server
side script but didn't have experienced it too much. Please tell me if i
need to go for training for my some queries then ..

On Mon, Nov 30, 2009 at 9:28 PM, narendra sisodiya <
narendra.sisod...@gmail.com> wrote:

> On Mon, Nov 30, 2009 at 9:07 PM, rakesh kumar  wrote:
> > Do i need to save all php scripts in /var/www/html folder?
> Yes...
> I suggest to have some training first. OR
> atleast get some decent php learning book.
>
> ___
> 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] FTP error while running script in cron

2009-11-30 Thread rakesh kumar
Can you emphasize the term script, i mean what did you do exactly?
regards
rakesh

On Mon, Nov 30, 2009 at 1:03 PM, Amit Sharma  wrote:

> Hi
>
> I have facing a strange problem while uploading data file using FTP in
> cron.
>
> I have made a script to upload 40GB approx tar.gz file to a FTP location.
>
> When I run the script in console, it works fine and uploads the file
> without any issue.
>
> When I schedule it in cron and make it run automatically, FTP upload fails
> with error :
>
> 426 Connection closed; Not Enough Disk Space. Aborting..
>
> But when I run the script again in command prompt, the data gets uploaded
> without any issue.
>
> Any pointers?
>
> regards,
> amit
>
>
>  The INTERNET now has a personality. YOURS! See your Yahoo! Homepage.
> http://in.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/
>
___
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] Hosting a website

2009-11-30 Thread rakesh kumar
  I have visited the given site. Please confirm me that you mean to say if i
want my server to run on network i will need to have a DNS which can
translate any one's query into my IP address?

On Mon, Nov 30, 2009 at 2:58 AM, Gaurav Gehani wrote:

> On Sun, Nov 29, 2009 at 5:01 PM, rakesh kumar  wrote:
>
> > Hi
> >  Actually it is a project which i am working on and it is a live
> > project means i will have to show this website at the time of
> presentation
> > perhaps they will give me some network or whatever i also don't know
> > exactly. That's why i asked this question to you all. I am a student and
> i
> > don't have so much experience so if you have experienced this type of
> live
> > project then please share your experience also it would be valuable for
> me
> > and resolve my doubt also.
> > Awaited for response
> > reg
> > rakesh
> > B. Tech 3rd Year
> >
> > On Fri, Nov 27, 2009 at 11:09 PM, Mehul Ved 
> wrote:
> >
> > > On Fri, Nov 27, 2009 at 3:49 PM, rakesh kumar 
> > wrote:
> > > > Hi all,
> > > >  Can any one tell me what is the best method to host a
> website.
> > I
> > > > have studied apache so if can tell me about this then it would be
> great
> > > for
> > > > me.
> > >
> > > What kind of website? Is it just a testing site on your own server? A
> > > website for LAN? Or you want it to be visible on the internet?
> > > Either ways you can use apache as your web server.
> > >
> > > > I know about apache but still i want some thing on this topic from
> you,
> > > like
> > > > your experiences,some good methods and all. Meanwhile i am searching
> on
> > > > google also.
> > > >  Actually i am working on a live project in my college so i
> > want
> > > it
> > > > to be a better project. Your experience will help me to make it
> better.
> > >
> > > You won't really get any meaningful replies unless you state what you
> > > are doing and what your queries are.
> > >
> > > ___
> > > 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/
> >
>
>
> Hi Rakesh
>
> Probably you should work on APACHE-MYSQL-PHP combination u can install
> wamp/lamp according to your need.
> Also you just need to make sure that your server (apache) is running and
> haves a public IP address that way you will be able to connect to it from
> outworld. Make sure that u keep a check on port number on which apache is
> running, to help you connect. If you want to have free domain name you can
> try
> www.dyndns.com
> if you are behind a router ( assuming u using internet from
> airtel/mtnl/bsnl... ) ull be and thn u will need to forward ur port also
> http://www.portforward.com/
> this will help you in that.
>
> --
> Thanks & Regards,
> Gaurav Gehani
> ___
> 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] How to configure PHP

2009-11-30 Thread rakesh kumar
Do i need to save all php scripts in /var/www/html folder?

On Mon, Nov 30, 2009 at 9:06 PM, rakesh kumar  wrote:

> How did you run it?
> Did you open it in a browser as
> http://localhost/test.php
> If so, what error did it give?
>  Actually i have tried this with other page, i have an already
> developed web page which runs properly and i didn't use
> http://localhost/test.php but rather i have tried this with my web page
> called index.html. But i could not understand why do i need to save the file
> in /var/www/html?
>  Can you explain this to me, how does it get affected if i save this in
> /var/www/html?
>  By the way i will try this and will get back to you if i will face any
> problem again.
>   But thanks to you all for helping me.
>
>
> On Sun, Nov 29, 2009 at 6:44 PM, Roshan Singh wrote:
>
>> Check this out http://fedoraunity.org/solved/server-solutions/lamp-stack,
>> it has all the steps and do try out the phpinfo() script.
>> And place all your php files in /var/www/html, this is where apache looks
>> for files in fedora.
>>
>> --
>> Roshan Kumar Singh
>> http://roshansingh.wordpress.com
>> http://sourceforge.net/projects/gscribble
>> ___
>> 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] How to configure PHP

2009-11-30 Thread rakesh kumar
How did you run it?
Did you open it in a browser as
http://localhost/test.php
If so, what error did it give?
 Actually i have tried this with other page, i have an already developed
web page which runs properly and i didn't use http://localhost/test.php but
rather i have tried this with my web page called index.html. But i could not
understand why do i need to save the file in /var/www/html?
 Can you explain this to me, how does it get affected if i save this in
/var/www/html?
 By the way i will try this and will get back to you if i will face any
problem again.
  But thanks to you all for helping me.

On Sun, Nov 29, 2009 at 6:44 PM, Roshan Singh wrote:

> Check this out http://fedoraunity.org/solved/server-solutions/lamp-stack ,
> it has all the steps and do try out the phpinfo() script.
> And place all your php files in /var/www/html, this is where apache looks
> for files in fedora.
>
> --
> Roshan Kumar Singh
> http://roshansingh.wordpress.com
> http://sourceforge.net/projects/gscribble
> ___
> 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] Hosting a website

2009-11-29 Thread rakesh kumar
Hi
  Actually it is a project which i am working on and it is a live
project means i will have to show this website at the time of presentation
perhaps they will give me some network or whatever i also don't know
exactly. That's why i asked this question to you all. I am a student and i
don't have so much experience so if you have experienced this type of live
project then please share your experience also it would be valuable for me
and resolve my doubt also.
 Awaited for response
reg
rakesh
B. Tech 3rd Year

On Fri, Nov 27, 2009 at 11:09 PM, Mehul Ved  wrote:

> On Fri, Nov 27, 2009 at 3:49 PM, rakesh kumar  wrote:
> > Hi all,
> >  Can any one tell me what is the best method to host a website. I
> > have studied apache so if can tell me about this then it would be great
> for
> > me.
>
> What kind of website? Is it just a testing site on your own server? A
> website for LAN? Or you want it to be visible on the internet?
> Either ways you can use apache as your web server.
>
> > I know about apache but still i want some thing on this topic from you,
> like
> > your experiences,some good methods and all. Meanwhile i am searching on
> > google also.
> >  Actually i am working on a live project in my college so i want
> it
> > to be a better project. Your experience will help me to make it better.
>
> You won't really get any meaningful replies unless you state what you
> are doing and what your queries are.
>
> ___
> 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] How to configure PHP

2009-11-29 Thread rakesh kumar
Hi
 My problems are not getting resolved please tell me where i made the
mistake:
first i tried
#yum install httpd* -y
then
#yum install mysql* -y
and then
#yum install php* -y
through which i have all packages of apache mysql and php but when i tried
to check the php by writing



then saved it as test.php and gave it the executable permissions also but it
didn't run.
 Now please can any one tell me where i made the mistake or what should
i do?
reg
rakesh
On Fri, Nov 27, 2009 at 3:55 PM, Roshan Singh wrote:

> On Fri, Nov 27, 2009 at 3:31 PM, rakesh kumar  wrote:
>
> > Hi Kartik,
> >Thanks for your reply and yes you are right i am using
> > fedora 9. I have installed apache on fedora already and i can see a
> welcome
> > message on http://localhost but the package that i got for mysql was
> > mysql.5.4.xx.tar.gz but when i tried to install it, it showed a problem,
> > perhaps some file was missing in package but i am continuously looking
> for
> > this on internet.
> >   I have installed httpd using yum but i will try the way you
> > wrote me also then i will get back to you again.
> >
> >
> Dont try to compile source. use yum or add/remove software instead.
> # yum install mysql   should do.
>
> --
> Roshan Kumar Singh
> http://roshansingh.wordpress.com
> http://sourceforge.net/projects/gscribble
> ___
> 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/


[ilugd] Hosting a website

2009-11-27 Thread rakesh kumar
Hi all,
  Can any one tell me what is the best method to host a website. I
have studied apache so if can tell me about this then it would be great for
me.
I know about apache but still i want some thing on this topic from you, like
your experiences,some good methods and all. Meanwhile i am searching on
google also.
  Actually i am working on a live project in my college so i want it
to be a better project. Your experience will help me to make it better.
reg
rakesh
___
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] Opportunity for Freshers

2009-11-27 Thread rakesh kumar
great that this is for freshers.

On Fri, Nov 27, 2009 at 9:00 AM, Saurabh Sharma wrote:

> Cheers All,
>
> My company 'NexTag S/W and Services Pvt ltd' [www.nextag.com] posted a
> mail regarding opportunity for Freshers which i'm posting out here .
> Please recommend it to your friends or send in your CV to
> 'ssharm...@nextag.com' if the CV meets the below mentioned criteria.
> For small info about company please visit
> http://www.linkedin.com/companies/nextag
>
> [ Mail ]
>
> We are planning to hire few fresher (0–1 Year) in QA and Content team.
> Please recommend, send resume of your friends & relative.
>
> Required Skill:
>
> Qualification: B.Tech or MCA [Regular Computer Science or Electronics only]
> OS: Windows and Linux basic command knowledge.
> DB: Oracle/My SQL concepts and SQL queries.
> Networking: Basic knowledge.
> QA: QA concepts, SDLC
>
> Optional skills/Good to have:
> Web Technologies
> [Web server / Application server, cookies, java script, session etc.]
> Language: Core Java, HTML, XML
>
> [ /Mail ]
>
> Thanks
> Saurabh
>
> ___
> 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] How to configure PHP

2009-11-27 Thread rakesh kumar
Hi Kartik,
Thanks for your reply and yes you are right i am using
fedora 9. I have installed apache on fedora already and i can see a welcome
message on http://localhost but the package that i got for mysql was
mysql.5.4.xx.tar.gz but when i tried to install it, it showed a problem,
perhaps some file was missing in package but i am continuously looking for
this on internet.
   I have installed httpd using yum but i will try the way you
wrote me also then i will get back to you again.
 Thanks
reg
rakesh


On Thu, Nov 26, 2009 at 9:50 AM, Kartik Singhal wrote:

> Hi Rakesh,
>
> On Wed, Nov 25, 2009 at 10:53 PM, rakesh kumar 
> wrote:
>
> >  i would need to install
> > apache_x.x.xx.tar.gz package from apache.org.
> >
>
> As PHP is a server-side scripting language, what you need is a server
> software installed on your system. Apache is the best option available and
> that to for free.
>
> As you installed MySQL using yum, I assume you have some RedHat based
> distribution as your OS, most probably Fedora.
>
> For installing on Fedora follow these steps:
> 1. First login as root by typing the command: su- and giving your root
> password.
> 2. Then install Apache and php modules by typing: yum install -y httpd php
> php-mysql
> 3. Start Apache daemon using: service httpd start
> 4. Now you will be able to see a default page at http://localhost in your
> browser.
> 5. You can keep your php scripts in /var/www to execute them.
>


>
> Source for installation steps:
> http://albertux.ayalasoft.com/2009/09/04/lamp-server-fedora-core-11/
>
> --
> Kartik
> BTech CSE Student, NIT Calicut
> http://www.techglider.com
> Stephen Leacock<
> http://www.brainyquote.com/quotes/authors/s/stephen_leacock.html>
> - "I detest life-insurance agents: they always argue that I shall some
> day
> die, which is not so."
> ___
> 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/


[ilugd] How to configure PHP

2009-11-25 Thread rakesh kumar
Hi all,
  I was trying to do some programming in PHP and after writing
program i changed the permissions also but it didn't work. Actually i am
very new in PHP and never worked on it in LINUX. While i was searching on
google i got some stuffs also that i would need to install
apache_x.x.xx.tar.gz package from apache.org.
  I need some expert help regarding this which can help me
configuring PHP and i also want to connect it with MYSQL, which i have
already installed using "yum install mysql".
  Thanks
reg
rakesh
___
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] Postfix message sending limit and other limits on a webserver

2009-11-20 Thread rakesh kumar
If you want to host any website you can configure Apache server.

On Fri, Nov 20, 2009 at 2:07 PM, abhishek jain
wrote:

> Hi friends,
> I want to create a webhosting server, i am using webmin as the control
> panel, and i need to know what are the different limits i need to impose
> for
> this shared webhosting server for security , i am using Webmin /
> Virtualmin,
> should i stick with it or can you suggest some other price effective sol.
> Also in the limits, i also want that users should not be able to see other
> users files, even if has read permissions, and limit number of emails in a
> day for every domain hosted.
> I am using postfix.
>
> Please advice,
> Prompt replied will be appreciated.
> --
> Thanks and kind 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/
>
___
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] how to convert an airtel pdf bill into a spreadsheet using FOSS tools or apps?

2009-11-13 Thread rakesh kumar
How can you open this if it is password protected. If there is any tool then
please post about that.

On Thu, Nov 12, 2009 at 7:03 PM, Sawrub  wrote:

> On 11/12/2009 05:55 PM, Sudev Barar wrote:
>
>> 2009/11/12 Linux Lingam:
>>
>>
>>> any clues on how i may convert it into a usable spreadsheet file?


>>>
>>> just tried PDFedit, but it can't do much with the 'standard-encrypted'
>>> file, even though the software offers
>>> a nice export to txt, and a pdf to xml option elsewhere.
>>>
>>>
>>>
>> pdftotext and pdftohtml show option to use:
>>  -upw  : user password (for encrypted files)
>>
>> Can text file thereafter be taken in to spreadsheet?
>>
>>
>>
> I usually used to open the file using 'evince' and copy the data to
> gnumeric. Acrobat Reader does not allowed me copying.
>
> --
> Saurabh Sharma
> Linux user number: 490644
> http://sawrub-blog.blogspot.com/
> Open your doors...It's time to look beyond Windows
>
>
>
> ___
> 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] Possible Workshop at NIT Jaipur

2009-11-13 Thread rakesh kumar
I will definitely try to come tomorrow.

On Thu, Nov 12, 2009 at 10:46 PM, Nandeep Mali  wrote:

> On Thu, Nov 12, 2009 at 5:19 PM, Srinivasan Sundararajan
>  wrote:
> >
> > In case it is not already done, you could consider involving Dr. Manoj
> Joshi
> > , Dept of CSE, in this event. Apart from nurturing open source at NIT
> > Jaipur, he has been advocating use of FOSS alternatives in engg colleges
> (he
> > visits many of them as part of AICTE evaluation team).
>
> Thank you for your mail. I am indeed in touch with him on this matter.
> In fact he has been very supportive previously as well. Sometimes he
> has allowed the use of premises for LUG Jaipur meets.
>
> I will try and update this mailing list with how it goes.
>
> Thanks and Kind Regards
> Nandeep
>
> ___
> 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] configure Open Ldab

2009-11-04 Thread rakesh kumar
Sorry for spell mistake but actually i am searching it with appropriate word
and found some data but still your help is important.

On Thu, Nov 5, 2009 at 12:45 AM, PJ  wrote:

> rakesh kumar  writes:
>
> > I am trying to manage lots of users by configuring Open Ldab on
> the
> > linux server. Actually i  am a student and not a practised server
> > administrator but i know some stuffs like NIS but i have heard that this
> > method is much good. So please help me to configure ldab on linux,
> meanwhile
> > i am searching on google also.
>
> You actually will have to search for ldap and openldap. The letter p
> instead of
> b will get you more results ;-)
>
>
>
>
> ___
> 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/


[ilugd] configure Open Ldab

2009-11-04 Thread rakesh kumar
Hi all,
I am trying to manage lots of users by configuring Open Ldab on the
linux server. Actually i  am a student and not a practised server
administrator but i know some stuffs like NIS but i have heard that this
method is much good. So please help me to configure ldab on linux, meanwhile
i am searching on google also.
 reg
 rakesh
___
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] Question Regarding RedHat 5.4 Download

2009-11-02 Thread rakesh kumar
I have been using RED HAT for a long time without having any installation
no.. If you download the full version of RED HAT, you can use it without any
key but you can't update it.
 reg
 rakesh

On Mon, Nov 2, 2009 at 9:22 AM, Karanbir Singh  wrote:

> On 11/02/2009 06:25 AM, Harish Pillay wrote:
>
>> My question is, will it stop working after 30 days? I want to use it
>>> without RedHat Support, can i use it after 30 days?
>>>
>>
>> Do read the EULA.  You are obligated NOT to use it after 30 days,
>> although it will continue to run.
>>
>
> But there will be no updates, and you rish running a machine with security
> issues on the internet. If you just need something for free and dont need
> the Red Hat support - consider using CentOS instead.
>
>
> --
> Karanbir Singh
> London, UK| http://www.karan.org/ | twitter.com/kbsingh
> ICQ: 2522219  | Yahoo IM: z00dax  | Gtalk: z00dax
> GnuPG Key : http://www.karan.org/publickey.asc
>
>
> ___
> 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] Possible Workshop at NIT Jaipur

2009-11-02 Thread rakesh kumar
That's great i will try to come there but i am not sure, whether i will get
time. But it's really great that you guys are taking so much interest and
working on the philosophy of community. Please mention the name of
volunteers also on the wiki, i will wait for your next response.


On Mon, Nov 2, 2009 at 5:03 AM, Nandeep Mali  wrote:

> Hello all,
>
> Sarai [1] is planning a hands on workshop at MNIT Jaipur [2] on
> 14th-15th of November which will be sponsored by NIXI [3]. The
> workshop will be fully technical and will involve teaching software
> development in various disciplines. The expected audience has already
> heard about Open Source several times and they want to get their hands
> dirty instead of hearing more about the philosophy.
>
> Possible topics that I can think of right now:
>
> 1. Python Introduction
> 2. Using Django to develop sites
> 3. Possibly Drupal Module Development
> 4. Very basics of Kernel (using driver development maybe)
> 5. There were several requests for socket programming
> 6. Game development using open source engines (Pygame?)
>
> Workshop is expected to be of two days. All hands on topics will be
> preceded by a general install fest.
>
> I would like to extend an invitation to ILUGD members to come forth
> with suggestions and actually join us at the workshop and help in
> presenting hands on topics of your choice.
>
> A note on why you would want to come:
> 1. Travel and stay for two days is free of cost (sponsored by us).
> 2.  A chance to travel to Jaipur on a weekend. :)
> 3. And as usual, a chance to give back to the community.
>
> I'll make a wiki page on the ILUGD site if the response is good. This
> will also help nurture the growth of the newly born LUG Jaipur.
>
> Thanks and Kind Regards
> Nandeep Mali
>
> Notes:
> [1] http://www.sarai.net
> [2] http://www.mnit.ac.in
> [3] http://www.nixi.in/
>
> ___
> 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/


  1   2   >