DevNation
DevNation

DevNation

Follow
homebadges
Tag

linux for beginners

#linux-for-beginners

More content

Read more stories on Hashnode


Articles with this tag

Linux Basic Programming -3

Oct 15, 20212 min read

Systems Calls for I/O Operations:- Creat:-int creat(char *filename, mode_t mode);First parameter is filename and second is mode. Some most common...

Linux Basic Programming -3

Linux Basic Programming-2

Aug 9, 20214 min read

Duplicating a Process Image:- You can create a new process by calling fork() . This system call duplicates the current process, creating a new entry...

Linux Basic Programming-2

Linux Basic Programming-1

Aug 9, 20213 min read

Process:- Process is define as "an address space with one or more threads executing within that address space, and the required system resources for...

Linux Basic Programming-1