diff --git a/topics/linux/README.md b/topics/linux/README.md index 92e3cac74..cb27b83c3 100644 --- a/topics/linux/README.md +++ b/topics/linux/README.md @@ -360,6 +360,7 @@ It contains useful information about the processes that are currently running, i
What makes /proc different from other filesystems?
+/proc is a special virtual filesystem in Unix-like operating systems, including Linux, that provides information about processes and system resources.
@@ -433,6 +434,10 @@ Its a bit that only allows the owner or the root user to delete or modify the fi
What is sudo? How do you set it up?
+sudo is a command-line utility in Unix-like operating systems that allows users to run programs with the privileges of another user, usually the superuser (root). It stands for "superuser do. + +The sudo program is installed by default in almost all Linux distributions. If you need to install sudo in Debian/Ubuntu, use the command apt-get install sudo +