Challenge - 5 Problems
Linux Internet Power User
Get all challenges correct to earn this badge!
Test your skills under time pressure!
💻 Command Output
intermediate1:30remaining
What is the output of the command showing Linux kernel version?
You run the command
uname -r on a Linux server. What output do you expect?Linux CLI
uname -r
Attempts:
2 left
💡 Hint
The
uname -r command shows the full kernel version string.✗ Incorrect
The
uname -r command outputs the full kernel release version, including patch and build info, like '5.15.0-60-generic'.🧠 Conceptual
intermediate1:30remaining
Why is Linux preferred for internet servers?
Which of the following is the main reason Linux powers most internet servers?
Attempts:
2 left
💡 Hint
Think about cost and flexibility for server environments.
✗ Incorrect
Linux is open source, so anyone can use and modify it freely. This makes it very flexible and cost-effective for internet servers.
🔧 Debug
advanced1:30remaining
Identify the error in this Linux command for listing files
What error does this command produce?
ls -l /nonexistentfolderLinux CLI
ls -l /nonexistentfolder
Attempts:
2 left
💡 Hint
Check if the folder exists.
✗ Incorrect
The command tries to list a folder that does not exist, so it returns an error saying it cannot access it.
🚀 Application
advanced1:30remaining
Which command shows active network connections on a Linux server?
You want to see all active network connections on your Linux server. Which command will show this?
Attempts:
2 left
💡 Hint
Look for a command that shows network status and ports.
✗ Incorrect
The
netstat -tunlp command lists all active TCP and UDP connections with process info.🧠 Conceptual
expert2:00remaining
Why does Linux's modular design benefit internet infrastructure?
How does Linux's modular kernel design help power the internet efficiently?
Attempts:
2 left
💡 Hint
Think about flexibility and resource use.
✗ Incorrect
Linux's modular kernel lets servers load only necessary parts, reducing memory and CPU use, which is great for internet servers.