Build a playground
Quest: build-playground
Mission
Create ~/playground/, create one.txt, two.txt, and three.txt inside it, and list them with ls -l.
Why This Matters
You need a safe place to practice. A playground directory is where you can create, inspect, and remove files without touching your homepage source.
Commands You Will Use
mkdirtouchls -l
Steps
- Run
mkdir -p ~/playground. - Run
touch ~/playground/one.txt. - Run
touch ~/playground/two.txt. - Run
touch ~/playground/three.txt. - Run
ls -l ~/playground. - Ask the guide to check your work.
Hints
- Create the directory before creating files inside it.
touchcan create an empty file.- The guide checks for
one.txt,two.txt, andthree.txtinside~/playground.
If Check Fails
Run ls -l ~/playground and compare the listing with the required names. Missing files need another touch command. If the guide cannot traverse your home directory, run chmod 711 ~ yourself, then ask it to check again.

Linux Foundations