Sponsored Content
Top Forums Programming How to contribute Linux in Development? Post 302890172 by wisecracker on Tuesday 25th of February 2014 02:07:28 PM
Old 02-25-2014
Quote:
Originally Posted by tarun_nix
Hi Wisecracker,

What's the roadmap to be a developer for Linux on Kernel/patch/update.

I heard one has to complete Linux Architecture Certs to be one.. for above.

do you suggest to have linux architect cert for to get job in Giant Cmpny...
Firstly there is no _roadmap_ WRT developing for Linux.

Just join the developers forum(s) and give it a go. As the Kernel is GPL and (FL)OSS
then do not expect payment for your additions. It WILL give you some serious street
cred in your chances for employment however.

The single hardest thing to do is create your own OS, next, probably a language and/or
compiler system. Developing an OS would give anyone serious street cred in the
computing world per-se.

Secondly the Linux community is just that; a community.
Everything that is developed under the guise of GPL is done for the love of it.

Some people become serious experts in a specific field that their exploits take them.
Some people add to these developers exploits and become testers, manual writers <- this
is also seriously difficult AND time consuming.
Some people are simply superb at finding the bugs that the developers miss, etc, etc...

If you have something to offer go for it, you will find satisfying and stimulating pleasure
from your escapades...

I have done loads of stuff over the years and still get pleasure from it/them...

EDIT:
(Hopefully the Moderators allow the pointer.)
Take a look here, (I am a member of it)...

Expanded Main Page - OSDev Wiki

Last edited by wisecracker; 02-25-2014 at 03:16 PM.. Reason: See above...
This User Gave Thanks to wisecracker For This Post:
 

2 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

wanna contribute to gnu

I want to contribute to any project that currently going on in the gnu. What is the procedure. (1 Reply)
Discussion started by: yogesh_powar
1 Replies

2. What is on Your Mind?

Want to contribute to unix opensource projects.

Hello , I am C++, Objective C , Qt ,developer on Mac OS X, iOS having around 4+ years of experience. I never got a chance to work on System Level programming. But I am very much interested in it. I don't want to do UI programming any more but I am doing just because of my current job profile.... (2 Replies)
Discussion started by: want2bcomecoder
2 Replies
TIME(2) 						     Linux Programmer's Manual							   TIME(2)

NAME
time - get time in seconds SYNOPSIS
#include <time.h> time_t time(time_t *t); DESCRIPTION
time returns the time since the Epoch (00:00:00 UTC, January 1, 1970), measured in seconds. If t is non-NULL, the return value is also stored in the memory pointed to by t. RETURN VALUE
On success, the value of time in seconds since the Epoch is returned. On error, ((time_t)-1) is returned, and errno is set appropriately. ERRORS
EFAULT t points outside your accessible address space. NOTES
POSIX.1 defines seconds since the Epoch as a value to be interpreted as the number of seconds between a specified time and the Epoch, according to a formula for conversion from UTC equivalent to conversion on the naive basis that leap seconds are ignored and all years divisible by 4 are leap years. This value is not the same as the actual number of seconds between the time and the Epoch, because of leap seconds and because clocks are not required to be synchronised to a standard reference. The intention is that the interpretation of sec- onds since the Epoch values be consistent; see POSIX.1 Annex B 2.2.2 for further rationale. CONFORMING TO
SVr4, SVID, POSIX, X/OPEN, BSD 4.3 Under BSD 4.3, this call is obsoleted by gettimeofday(2). POSIX does not specify any error conditions. SEE ALSO
ctime(3), date(1), ftime(3), gettimeofday(2) Linux 2.0.30 1997-09-09 TIME(2)
All times are GMT -4. The time now is 05:10 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy