diff --git a/README.md b/README.md
index f61bf49..fb92a53 100644
--- a/README.md
+++ b/README.md
@@ -477,7 +477,7 @@ Bandwidth is the capacity of a communication channel to measure how much data th
What is throughput?
-Throughout refers to the measurement of the real amount of data transferred over a certain period of time across any transmission channel.
+Throughput refers to the measurement of the real amount of data transferred over a certain period of time across any transmission channel.
@@ -941,6 +941,8 @@ True
A user accidentally executed the following chmod -x $(which chmod)
. How to fix it?
+
+Using `sudo setfacl -m u::rx /usr/bin/chmod` will set the execute permissions on `chmod` for all the users. Post this, the `chmod` binary can be used as usual.
#### Linux - systemd
@@ -1167,6 +1169,8 @@ Telnet also allows you to connect to a remote host but as opposed to SSH where t
What is stored in ~/.ssh/known_hosts
?
+
+The file stores the key fingerprints for the clients connecting to the SSH server. This fingerprint creates a trust between the client and the server for future SSH connections.