Skip to content

Commit 53ea5e2

Browse files
authored
Edited few more answers in the Linux section and fixed some typos (bregman-arie#221)
* Edited couple answers in the Network section * Edited Latency, Throughput and bandwidth * Edited few more answers in the Linux section * typos
1 parent 711f4f9 commit 53ea5e2

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,7 @@ Bandwidth is the capacity of a communication channel to measure how much data th
477477
<details>
478478
<summary>What is throughput?</summary><br><b>
479479

480-
Throughout refers to the measurement of the real amount of data transferred over a certain period of time across any transmission channel.
480+
Throughput refers to the measurement of the real amount of data transferred over a certain period of time across any transmission channel.
481481
</b></details>
482482

483483
<details>
@@ -941,6 +941,8 @@ True
941941

942942
<details>
943943
<summary>A user accidentally executed the following <code>chmod -x $(which chmod)</code>. How to fix it?</summary><br><b>
944+
945+
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.
944946
</b></details>
945947

946948
#### Linux - systemd
@@ -1167,6 +1169,8 @@ Telnet also allows you to connect to a remote host but as opposed to SSH where t
11671169

11681170
<details>
11691171
<summary>What is stored in <code>~/.ssh/known_hosts</code>?</summary><br><b>
1172+
1173+
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.
11701174
</b></details>
11711175

11721176
<details>

0 commit comments

Comments
 (0)