From 53ea5e2a177b65f32de10fd47f9ec763a4ffbc8a Mon Sep 17 00:00:00 2001 From: Neeraj Kumar Date: Sat, 23 Apr 2022 12:09:44 +0530 Subject: [PATCH] Edited few more answers in the Linux section and fixed some typos (#221) * Edited couple answers in the Network section * Edited Latency, Throughput and bandwidth * Edited few more answers in the Linux section * typos --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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.