From cba881e49a6ad30bed7af4baeb10d80f0161380b Mon Sep 17 00:00:00 2001 From: andran777 <86196800+andran777@users.noreply.github.com> Date: Mon, 22 Aug 2022 16:42:47 +0530 Subject: [PATCH] Add process docs * Update 107-processes.md * Update 107-processes.md --- .../content/101-os-concepts/107-processes.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/content/roadmaps/102-devops/content/101-os-concepts/107-processes.md b/content/roadmaps/102-devops/content/101-os-concepts/107-processes.md index eba028ee2..abfac46a8 100644 --- a/content/roadmaps/102-devops/content/101-os-concepts/107-processes.md +++ b/content/roadmaps/102-devops/content/101-os-concepts/107-processes.md @@ -1 +1,13 @@ -# Processes \ No newline at end of file +# Processes + +A process means program in execution. It generally takes an input, processes it and gives us the appropriate output. `ps` command can be used in linux to get the list of processes running in foreground. Each process will have a unique identifier called **PID**, which can be used to track it or `kill` it through shell. + +**Types of processes:** +* Foreground processes +* Background processes + +Free Content +Intro to Process Management +Process Management in Linux +Process related commands in Linux +Process vs Thread