diff --git a/README.md b/README.md index ac18a71..c3a1670 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ :information_source:  This repository contains questions on various DevOps and SRE related topics -:bar_chart:  There are currently **658** questions +:bar_chart:  There are currently **662** questions :books:  To learn more about DevOps check the resources in [DevOpsBit.com](https://devopsbit.com) @@ -1026,6 +1026,10 @@ Hardware -> Kernel -> Daemons, System Libraries, Server Display. Describe how to make a certain process/app a service
+
+How do you kill a process in D state?
+
+ ##### Debugging
@@ -1169,6 +1173,10 @@ related to the file like its size, owner, permissions, etc. How to check which disks are currently mounted?
+
+You run mount command but you get no output. How would you check what mounts you have on your system?
+
+
What is the difference between a soft link and hard link?
@@ -1377,6 +1385,12 @@ ind /some_dir -iname \*.yml -print0 | xargs -0 -r sed -i "s/1/2/g" You can use the commands top and free
+
+You run ls and you get "/lib/ld-linux-armhf.so.3 no such file or directory". What is the problem?
+ +The ls executable is built for an incompatible architecture. +
+
How would you split a 50 lines file into 2 files of 25 lines each?
@@ -4651,6 +4665,14 @@ It consits of: What is HTTPS?
+
+Explain HTTP Cookies
+ +HTTP is stateless. To share state, we can use Cookies. + +TODO: explain what is actually a Cookie +
+
When you publish a project, you usually publish it with a license. What types of licenses are you familiar with and which one do you prefer to use?