Re: "Hurr durr I'ma sheep"

2015-04-06 Thread Kaushal Shriyan
Thanks Alan for the reply.

Regards,

Kaushal

On Mon, Apr 6, 2015 at 1:01 PM, Alan Braithwaite 
wrote:

> Linus put up a poll for the 4.0 code name on google+
>
> https://plus.google.com/+LinusTorvalds/posts/TvigQqA9m3w
>
> That was the result.
>
> - Alan
>
> On Mon, Apr 6, 2015 at 12:08 AM, Kaushal Shriyan  > wrote:
>
>> Hi,
>>
>> what does "Hurr durr I'ma sheep" mean in context to kernel version Linux
>> 4.0?
>>
>> Regards,
>>
>> Kaushal
>>
>> ___
>> Kernelnewbies mailing list
>> Kernelnewbies@kernelnewbies.org
>> http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
>>
>>
>
___
Kernelnewbies mailing list
Kernelnewbies@kernelnewbies.org
http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies


"Hurr durr I'ma sheep"

2015-04-06 Thread Kaushal Shriyan
Hi,

what does "Hurr durr I'ma sheep" mean in context to kernel version Linux
4.0?

Regards,

Kaushal
___
Kernelnewbies mailing list
Kernelnewbies@kernelnewbies.org
http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies


Re: Total Number of lines in the kernel code

2014-03-27 Thread Kaushal Shriyan
On Fri, Mar 28, 2014 at 9:04 AM,  wrote:

> On Fri, 28 Mar 2014 08:49:55 +0530, Kaushal Shriyan said:
>
> > How many lines of code and files and directories in the latest stable
> > kernel 3.13.7?
>
> find, xargs, and wc are your friends. For Linus's 'git' tree
> (3.14-rc8-ish):
>
> [/usr/src/linux] find * -type d | wc -l
> 2947
> [/usr/src/linux] find * -type f | wc -l
> 46016
> [/usr/src/linux] find * -type f -name '*.[ch]' | xargs cat | wc -l
> 16644991
>
> (Ignoring of course that there's other types of lines of code besides *.c
> and *.h.  If you don't like it, do your own find command :)
>
>
>
Thanks Valdis for the explanation
___
Kernelnewbies mailing list
Kernelnewbies@kernelnewbies.org
http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies


Re: Total Number of lines in the kernel code

2014-03-27 Thread Kaushal Shriyan
On Fri, Mar 28, 2014 at 8:55 AM, Augusto Mecking Caringi <
augustocari...@gmail.com> wrote:

> On Fri, Mar 28, 2014 at 12:19 AM, Kaushal Shriyan <
> kaushalshri...@gmail.com> wrote:
>>
>> How many lines of code and files and directories in the latest stable
>> kernel 3.13.7?
>>
>
> Hi,
>
> You can count by yourself using a tool like cloc:
>
> http://cloc.sourceforge.net/
>
> Regards.
>
> --
> Augusto Mecking Caringi
>

Thanks Augusto for the information
___
Kernelnewbies mailing list
Kernelnewbies@kernelnewbies.org
http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies


Total Number of lines in the kernel code

2014-03-27 Thread Kaushal Shriyan
Hi,

How many lines of code and files and directories in the latest stable
kernel 3.13.7?

Regards,

Kaushal
___
Kernelnewbies mailing list
Kernelnewbies@kernelnewbies.org
http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies


Re: Linux Kernel Development

2012-09-09 Thread Kaushal Shriyan
On Sun, Sep 9, 2012 at 9:02 AM, Alexandru Juncu  wrote:
> On 9 September 2012 06:15, Kaushal Shriyan  wrote:
>> Hi,
>>
>> I am interested to contribute to linux kernel development process. I
>> have been working on Linux for the last ten years and have been a
>> great fan of Linux OS since beginning. Any good references to start
>> learning C and understand the linux kernel source code.
>>
>> Regards,
>>
>> Kaushal
>
> Hello!
>
> You could start by looking through the site of this community [0].
> They have some pointers.
>
> You should take a look at this video [1] first. It's a brief intro on
> how the Linux Kernel community works.
>
> But first, you should be familiar with C programming (it's good if you
> did some system programming in C). If you have the basic C experience
> and if you want to go onto kernel programming (not that hard) you
> should try reading some books (I would recommend these [2] [3]).
>
> After that, use the source! And if you get stuck, ask around (here,
> for example).
>
> Good luck and happy hacking!
>
> [0] http://kernelnewbies.org/KernelHacking
> [1] http://www.youtube.com/watch?v=LLBrBBImJt4
> [2] http://www.amazon.com/Linux-Kernel-Development-3rd-Edition/dp/0672329468
> [3] 
> http://www.amazon.com/Understanding-Linux-Kernel-Third-Edition/dp/0596005652/ref=pd_bxgy_b_text_z
>
> --
> Alexandru Juncu
>
> ROSEdu
> http://rosedu.org

Hi,

I am totally new to C Programming Language. How do i start learning C
and which books or tutorials i need to refer.

Regards,

Kaushal

___
Kernelnewbies mailing list
Kernelnewbies@kernelnewbies.org
http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies


Linux Kernel Development

2012-09-08 Thread Kaushal Shriyan
Hi,

I am interested to contribute to linux kernel development process. I
have been working on Linux for the last ten years and have been a
great fan of Linux OS since beginning. Any good references to start
learning C and understand the linux kernel source code.

Regards,

Kaushal

___
Kernelnewbies mailing list
Kernelnewbies@kernelnewbies.org
http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies


Re: Learning Linux Kernel

2011-12-13 Thread Kaushal Shriyan
On Tue, Dec 13, 2011 at 10:00 AM, Victor Rodriguez wrote:

> On Mon, Dec 12, 2011 at 6:30 PM, Greg KH  wrote:
> > On Tue, Dec 13, 2011 at 05:37:56AM +0530, Kaushal Shriyan wrote:
> >> Just curious to know about total number of linux kernel developers in
> the world
> >> who contribute to linux kernel codebase. Any wiki or webpage which
> mentions
> >> about it?
> >
> > The Linux Foundation has a report every year about this detailing this
> > type of information.  Also, lwn.net reports on this every kernel
> > release, see those articles for details.
> >
> > Oh, and as a teaser, for the past year of releases, 2.6.36 - 3.1.0
> > (October 2010 to October 2011) there was 2889 different developers who
> > got patches accepted into the Linux kernel codebase.
> >
> > greg k-h
> >
> > ___
> > Kernelnewbies mailing list
> > Kernelnewbies@kernelnewbies.org
> > http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
>
> Hi Kaushal
>
> Goof to hear you want to be part of Linux Kernel, here is a good
> article of How to participate on the Linux Community
>
> http://www.linuxfoundation.org/content/how-participate-linux-community-0
>
> Learn GIT (maybe you already know it )
>
> http://git-scm.com/
>
> Clone the mainstream Kernel by it self
>
> http://kernel.org/
>
> Check the code you will see that must of the code is in C
>
> Now after you feel confident on C (recommended book = C Programming
> Language Kernighan) you can start to run the latest Kernel on your
> Linux machine, subscribe to an specific Mailing list of development
> you want to follow, apply the RFC patches and check if it works ,
> suggest new ideas or even work on the solution for existing bugs in
> bugzila. Have fun :)
>
> Check on the article for this good advice
>
> Andrew Morton gives this advice for aspiring kernel developers
>
> The #1 project for all kernel beginners should surely be "make sure
> that the kernel runs perfectly at all times on all machines which you
> can lay your hands on". Usually the way to do this is to work with
> others on getting things fixed up (this can require persistence!) but
> that's fine--it's a part of kernel development.
>
> Hope it helps
>
> Victor Rodriguez
>

Hi Victor,

Thanks a lot for the encouragement. I am obliged and got motivated. You
said  "subscribe to an specific Mailing list of development
you want to follow, apply the RFC patches and check if it works ,suggest
new ideas or even work on the solution for existing bugs in
bugzilla"

Development of Kernel Mailing list -> http://www.tux.org/lkml/#s3-1 is this
correct ?
Not sure about RFC Patches and existing bugs in bugzilla. Please point me
to the relevant web page.

Regards

Kaushal,
___
Kernelnewbies mailing list
Kernelnewbies@kernelnewbies.org
http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies


Re: Learning Linux Kernel

2011-12-12 Thread Kaushal Shriyan
On Tue, Dec 13, 2011 at 5:21 AM, Alexandru Juncu wrote:

> On Tue, Dec 13, 2011 at 1:39 AM, Kaushal Shriyan
>  wrote:
> > Hi
> >
> > I have been working on Linux OS for the last 10 years and it has been
> very
> > exiting and challenging to learn new technologies based on Linux. I am
> > basically a Sys Admin for Linux with bash programming and configuring and
> > setting up Linux Server including network services like BIND DNS,Apache
> > etc...
> >
> > Although i do not know C and ASM Language, I am very much eager to start
> > learning Linux Kernel Code and contribute to linux kernel codebase
> sometimes
> > down the line.
> > Please guide/suggest me.
> >
> > Regards,
>
> Hello!
>
> I think people appreciate your enthusiasm. I do think that knowing C
> programming is a prerequisite. So you need to start with that.
> For the theory, if you want to start learning how the kernel works, I
> recommend the book Linux Kernel Development [1] by Robert Love.
> Another thing I would give you is this video [2] to know how to submit
> your first patch.
>
> [1]
> http://www.amazon.com/Linux-Kernel-Development-Robert-Love/dp/0672329468/ref=pd_sim_b_3
> [2] http://www.youtube.com/watch?v=LLBrBBImJt4
>


Hi

Just curious to know about total number of linux kernel developers in the
world who contribute to linux kernel codebase. Any wiki or webpage which
mentions about it?

Regards

Kaushal
___
Kernelnewbies mailing list
Kernelnewbies@kernelnewbies.org
http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies


Learning Linux Kernel

2011-12-12 Thread Kaushal Shriyan
Hi

I have been working on Linux OS for the last 10 years and it has been very
exiting and challenging to learn new technologies based on Linux. I am
basically a Sys Admin for Linux with bash programming and configuring and
setting up Linux Server including network services like BIND DNS,Apache
etc...

Although i do not know C and ASM Language, I am very much eager to start
learning Linux Kernel Code and contribute to linux kernel codebase
sometimes down the line.
Please guide/suggest me.

Regards,

Kaushal
___
Kernelnewbies mailing list
Kernelnewbies@kernelnewbies.org
http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies


Linux Kernel Version 3.x

2011-12-11 Thread Kaushal Shriyan
Hi,

Please help me understand the difference between Linux Kernel 3.x  vs Linux
Kernel 2.6. And also i have not understood
http://www.phoronix.com/scan.php?page=news_item&px=OTUwMg about 2.6.40
meaning 3.0 version. And also help me understand about linux-next and
mainline vs stable branch on http://www.kernel.org/

Please help me understand.

Regards,

Kaushal
___
Kernelnewbies mailing list
Kernelnewbies@kernelnewbies.org
http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies