Click any step to jump to it (resets partial progress for that step).
0IntroductionCompleted
Welcome to Lab 1.4. The filesystem is simulated — commands actually affect the virtual environment. Use 💡 Explain to understand each command.
1Listing FilesCurrent Step
List files in long format and show hidden files.
Run both:
ls -l
ls -a
2Create & CopyPending
Create a new file and copy it.
Run all three:
touch newfile.txt
cp newfile.txt copied_file.txt
cp -r documents documents_backup
3Move & RenamePending
Move a file into a directory, then rename it inside that directory.
Run both:
mv copied_file.txt documents/
mv documents/copied_file.txt documents/renamed_file.txt
4Remove FilesPending
Delete a file and a directory recursively.
Run both:
rm file1.txt
rm -r documents_backup
5Find FilesPending
Search for files by pattern and type.
Run both:
find . -name "*.txt"
find /etc -type f -name "*.conf"