In this lab, I practiced using Linux commands to modify directory structures and manage the files they contain.
I also used the nano
text editor to add content to a file, which helped reinforce my understanding of working in the shell without a GUI.
I worked within the /home/analyst
directory, which started with a disorganized structure.
My goal was to create a clean, well-structured hierarchy by using basic Bash shell commands.
logs
subdirectory under /home/analyst
.temp
directory.Q3patches.txt
into the reports
directory.tempnotes.txt
from the notes
subdirectory.tasks.txt
using nano
and recorded the tasks I completed.The final result was a structured and cleaner directory layout, reflecting real-world file and directory management in a Linux environment.
This lab helped me become confident using:
mkdir
and rm
to create and remove directoriesmv
and rm
to move and delete filesnano
to create and edit a text file directly from the terminalThese are essential tasks for any Linux-based role in cybersecurity, especially when documenting or organizing digital evidence.