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