Name the system
Quest: name-system
Mission
Run cat /etc/os-release and find the PRETTY_NAME value.
Why This Matters
Linux systems describe themselves through files. You do not need to guess what the server is running. Ask the filesystem.
Commands You Will Use
cat
Steps
- Run
cat /etc/os-release. - Find the line beginning with
PRETTY_NAME=. - Read the value after the equals sign.
- Answer the guide with that value.
Hints
catprints the file to your terminal.- Look for uppercase
PRETTY_NAME. - The useful text is inside the quotes on that line.
If Check Fails
Open the file again and answer with the distribution name from PRETTY_NAME.

Linux Foundations