Challenge - 5 Problems
Linux Distributions Mastery
Get all challenges correct to earn this badge!
Test your skills under time pressure!
💻 Command Output
intermediate1:30remaining
Identify the package manager output
You run the command
sudo apt update on a Linux system. Which distribution are you most likely using?Attempts:
2 left
💡 Hint
Think about which distributions use
apt as their package manager.✗ Incorrect
Ubuntu uses the
apt package manager. CentOS and Fedora use yum or dnf. Arch Linux uses pacman.💻 Command Output
intermediate1:30remaining
Determine the output of a release info command
What is the expected output of the command
cat /etc/centos-release on a CentOS system?Attempts:
2 left
💡 Hint
This file contains the distribution name and version for CentOS.
✗ Incorrect
The file
/etc/centos-release contains the CentOS version string like CentOS Linux release 7.9.2009 (Core).📝 Syntax
advanced2:00remaining
Correct command to install a package on Fedora
Which command correctly installs the package
htop on Fedora?Attempts:
2 left
💡 Hint
Fedora uses a modern package manager replacing yum.
✗ Incorrect
Fedora uses
dnf as its package manager. While yum may still work, dnf is the recommended tool.🚀 Application
advanced1:30remaining
Choose the correct command to check the kernel version on Ubuntu
You want to check the Linux kernel version on an Ubuntu system. Which command will give you the correct output?
Attempts:
2 left
💡 Hint
The kernel version is shown by a system command, not a package manager.
✗ Incorrect
The command
uname -r prints the kernel version on any Linux system including Ubuntu.🧠 Conceptual
expert2:30remaining
Identify the main difference between CentOS and Fedora
What is the primary difference between CentOS and Fedora in terms of their release and support model?
Attempts:
2 left
💡 Hint
Think about how often each distribution releases new versions and their target users.
✗ Incorrect
CentOS focuses on stability and long-term support, suitable for servers. Fedora offers newer software with a faster release cycle, targeting developers and enthusiasts.