User contributions
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)
- 08:51, 17 December 2022 (diff | hist) . . (+2) . . m Exec system call (→Simple use)
- 08:50, 17 December 2022 (diff | hist) . . (-5) . . m Exec system call
- 08:49, 17 December 2022 (diff | hist) . . (+342) . . m Exec system call
- 08:42, 17 December 2022 (diff | hist) . . (+377) . . N Exec system call (Created page with "The '''exec()''' family executes a file as a new process. See fork system call for "cloning" a process. The =Simple use= The '''execlp()''' is one of the function call in...")
- 07:59, 17 December 2022 (diff | hist) . . (+89) . . m C processes in Linux (current)
- 07:56, 17 December 2022 (diff | hist) . . (+379) . . m C processes in Linux
- 07:43, 17 December 2022 (diff | hist) . . (-4) . . m Bash processes (→example) (current)
- 07:42, 17 December 2022 (diff | hist) . . (-1,998) . . m C processes in Linux (Replaced content with " =Advanced= ==prctl== prctl - operations on a process <source lang=c> // Changing the name of running proces #include <sys/prctl.h> ... prctl(PR_SET_NAME, "newname")...")
- 07:31, 17 December 2022 (diff | hist) . . (+3) . . m Daemon linux (→Checking the daemon)
- 07:31, 17 December 2022 (diff | hist) . . (+97) . . m Daemon linux (→Checking the daemon)
- 07:28, 17 December 2022 (diff | hist) . . (-4) . . m Daemon linux
- 07:27, 17 December 2022 (diff | hist) . . (+302) . . m Daemon linux
- 06:59, 17 December 2022 (diff | hist) . . (+52) . . m Daemon linux (→Checking the daemon)
- 06:50, 17 December 2022 (diff | hist) . . (+1,761) . . m Fork system call
- 06:46, 17 December 2022 (diff | hist) . . (+146) . . m Process Linux
- 14:05, 16 December 2022 (diff | hist) . . (-1) . . m C processes in Linux (→Advanced)
- 14:04, 16 December 2022 (diff | hist) . . (+22) . . m C processes in Linux (→Use of fork)
- 12:47, 16 December 2022 (diff | hist) . . (+4) . . m C processes in Linux
- 12:40, 16 December 2022 (diff | hist) . . (+30) . . m Fork system call
- 12:38, 16 December 2022 (diff | hist) . . (+1) . . m C processes in Linux (→Advance)
- 12:37, 16 December 2022 (diff | hist) . . (+183) . . m C processes in Linux
- 11:09, 16 December 2022 (diff | hist) . . (+24) . . m C processes in Linux
- 11:06, 16 December 2022 (diff | hist) . . (+135) . . m C processes in Linux (→Use of fork)
- 11:02, 16 December 2022 (diff | hist) . . (+712) . . m C processes in Linux
- 09:48, 16 December 2022 (diff | hist) . . (-8) . . m C processes in Linux
- 09:46, 16 December 2022 (diff | hist) . . (+13) . . m C processes in Linux
- 09:44, 16 December 2022 (diff | hist) . . (+62) . . m C processes in Linux
- 09:42, 16 December 2022 (diff | hist) . . (+1) . . m C processes in Linux (→Example of creating several processes)
- 09:39, 16 December 2022 (diff | hist) . . (+40) . . m C processes in Linux (→Example of creating several processes)
- 09:38, 16 December 2022 (diff | hist) . . (+8) . . m C processes in Linux (→Example of creating several processes)
- 09:37, 16 December 2022 (diff | hist) . . (+38) . . m Bash processes (→example)
- 08:40, 16 December 2022 (diff | hist) . . (+44) . . m C processes in Linux (→Example of creating several processes)
- 08:39, 16 December 2022 (diff | hist) . . (+47) . . m Bash processes (→example)
- 08:38, 16 December 2022 (diff | hist) . . (+977) . . N C processes in Linux (Created page with "===Example of creating several processes=== <source lang=c line> #include <stdio.h> #include <sys/types.h> #include <unistd.h> #include <wait.h> void childprocess(char *name,...")
- 08:35, 16 December 2022 (diff | hist) . . (+55) . . m Process Linux
- 08:20, 16 December 2022 (diff | hist) . . (-36) . . m Bash processes
- 08:01, 16 December 2022 (diff | hist) . . (+31) . . m Process Linux
- 08:00, 16 December 2022 (diff | hist) . . (+42) . . m Process Linux
- 07:58, 16 December 2022 (diff | hist) . . (+972) . . N Bash processes (Created page with "=example= <source lang=bash line> #!/bin/bash count() { NAME=$1 COUNT_TO=$2 COUNTER=0 echo -e "My name is $NAME my PID is $BASHPID" # $$ does...")
- 07:55, 16 December 2022 (diff | hist) . . (+73) . . N Process Linux (Created page with "Working with processes in Linux * bash processes Category:Linux")
- 07:50, 16 December 2022 (diff | hist) . . (+61) . . m Fork system call
- 07:49, 16 December 2022 (diff | hist) . . (0) . . m Daemon linux
- 07:48, 16 December 2022 (diff | hist) . . (+19) . . m Daemon linux (→Checking the daemon)
- 07:47, 16 December 2022 (diff | hist) . . (-1) . . m Daemon linux (→Checking the daemon)
- 07:47, 16 December 2022 (diff | hist) . . (+197) . . m Daemon linux
- 07:45, 16 December 2022 (diff | hist) . . (+9) . . m Daemon linux
- 07:45, 16 December 2022 (diff | hist) . . (-111) . . m Daemon linux
- 07:44, 16 December 2022 (diff | hist) . . (+1,225) . . N Daemon linux (Created page with "Create a daemon in Linux - detaching from terminal sets parent (PPID) to 1 and set as session leader - SID=PID Example of creating a daemon in Linux *'''setsid()''' - damon w...")
- 07:20, 16 December 2022 (diff | hist) . . (+193) . . m Fork system call
- 06:04, 16 December 2022 (diff | hist) . . (+136) . . N Fork system call (Created page with " =Links= *[https://devarea.com/linux-fork-system-call-and-its-pitfalls/#.Y5v3THbMJPY good article from devarea.com] Category:Linux")
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)