From ed397484035aa1535dbc2b656225b9cc2bd431a8 Mon Sep 17 00:00:00 2001 From: Oueael <125812553+Oueael@users.noreply.github.com> Date: Mon, 15 Jan 2024 07:57:32 -0500 Subject: [PATCH 1/3] Update README.md first question --- interview_answers/README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/interview_answers/README.md b/interview_answers/README.md index 6e5e4b4..41f8e65 100644 --- a/interview_answers/README.md +++ b/interview_answers/README.md @@ -1 +1,3 @@ -# Coming soon! +1Q. User says their internet is slow and that it takes ages to get to websites. What steps would you do to troubleshoot? + +1A. Confirm with user speed test, ask them is it one website or all? Check processes that might be eating bandwidth. Restart modem/router. Check wi-fi signal and/or try ethernet. Try other devices if possible. Check if there are bandwidth limitations. Do security scan. From 5dddf2d89c233314b33fb4731fad978346e2d7ce Mon Sep 17 00:00:00 2001 From: Oueael <125812553+Oueael@users.noreply.github.com> Date: Tue, 16 Jan 2024 11:35:31 -0500 Subject: [PATCH 2/3] Update README.md --- interview_answers/README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/interview_answers/README.md b/interview_answers/README.md index 41f8e65..6333ba4 100644 --- a/interview_answers/README.md +++ b/interview_answers/README.md @@ -1,3 +1,7 @@ 1Q. User says their internet is slow and that it takes ages to get to websites. What steps would you do to troubleshoot? 1A. Confirm with user speed test, ask them is it one website or all? Check processes that might be eating bandwidth. Restart modem/router. Check wi-fi signal and/or try ethernet. Try other devices if possible. Check if there are bandwidth limitations. Do security scan. + +2Q. Tell me five ways to find the current date and time on a Linux system. + +2A. From the command terminal: date, timedatectl, hwclock, cat /proc/driver/rtc, ntpq -p. From 74677c81219c32e4e864838cd6402e635229e748 Mon Sep 17 00:00:00 2001 From: Oueael <125812553+Oueael@users.noreply.github.com> Date: Thu, 18 Jan 2024 07:51:32 -0500 Subject: [PATCH 3/3] Update README.md --- interview_answers/README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/interview_answers/README.md b/interview_answers/README.md index 6333ba4..75ce769 100644 --- a/interview_answers/README.md +++ b/interview_answers/README.md @@ -5,3 +5,7 @@ 2Q. Tell me five ways to find the current date and time on a Linux system. 2A. From the command terminal: date, timedatectl, hwclock, cat /proc/driver/rtc, ntpq -p. + +3Q. How would you delete a file called -f on a Linux system? + +3A. rm -- -f