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
gnutls_credentials_set(3)					      gnutls						 gnutls_credentials_set(3)

NAME
gnutls_credentials_set - Sets the needed credentials for the specified authentication algorithm. SYNOPSIS
#include <gnutls/gnutls.h> int gnutls_credentials_set(gnutls_session_t session, gnutls_credentials_type_t type, void * cred); ARGUMENTS
gnutls_session_t session is a gnutls_session_t structure. gnutls_credentials_type_t type is the type of the credentials void * cred is a pointer to a structure. DESCRIPTION
Sets the needed credentials for the specified type. Eg username, password - or public and private keys etc. The cred parameter is a structure that depends on the specified type and on the current session (client or server). In order to minimize memory usage, and share credentials between several threads gnutls keeps a pointer to cred, and not the whole cred structure. Thus you will have to keep the structure allocated until you call gnutls_deinit(). For GNUTLS_CRD_ANON, cred should be gnutls_anon_client_credentials_t in case of a client. In case of a server it should be gnutls_anon_server_credentials_t. For GNUTLS_CRD_SRP, cred should be gnutls_srp_client_credentials_t in case of a client, and gnutls_srp_server_credentials_t, in case of a server. For GNUTLS_CRD_CERTIFICATE, cred should be gnutls_certificate_credentials_t. RETURNS
On success, GNUTLS_E_SUCCESS (zero) is returned, otherwise an error code is returned. REPORTING BUGS
Report bugs to <bug-gnutls@gnu.org>. GnuTLS home page: http://www.gnu.org/software/gnutls/ General help using GNU software: http://www.gnu.org/gethelp/ COPYRIGHT
Copyright (C) 2008 Free Software Foundation. Copying and distribution of this file, with or without modification, are permitted in any medium without royalty provided the copyright notice and this notice are preserved. SEE ALSO
The full documentation for gnutls is maintained as a Texinfo manual. If the info and gnutls programs are properly installed at your site, the command info gnutls should give you access to the complete manual. gnutls 2.8.6 gnutls_credentials_set(3)
All times are GMT -4. The time now is 09:49 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy