You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-1Lines changed: 5 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -477,7 +477,7 @@ Bandwidth is the capacity of a communication channel to measure how much data th
477
477
<details>
478
478
<summary>What is throughput?</summary><br><b>
479
479
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.
481
481
</b></details>
482
482
483
483
<details>
@@ -941,6 +941,8 @@ True
941
941
942
942
<details>
943
943
<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.
944
946
</b></details>
945
947
946
948
#### Linux - systemd
@@ -1167,6 +1169,8 @@ Telnet also allows you to connect to a remote host but as opposed to SSH where t
1167
1169
1168
1170
<details>
1169
1171
<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.
0 commit comments