Beginner Linux Lab
Linux Fundamentals
Learn basic Linux commands used by system administrators, security analysts, penetration testers, and cyber defenders.
Mission Objectives
- • Print the current working directoryCommand: pwd
- • List files and directoriesCommand: ls
- • Move around the filesystemCommand: cd /home/student
- • Identify the current userCommand: whoami
- • Identify the Linux hostCommand: hostname
- • Read a text fileCommand: cat notes.txt
- • Create a new directoryCommand: mkdir practice
- • Create a new fileCommand: touch practice/file.txt
- • Change file permissionsCommand: chmod 644 practice/file.txt
- • View running processesCommand: ps aux
- • View network interface informationCommand: ip addr
- • Check sudo permissionsCommand: sudo -l
Progress
0 / 12 commands completed
Beginner Notes
/ is the root of the Linux filesystem.
~means the current user's home directory.
sudo lets users run approved commands with elevated privileges.
chmod changes file permissions.
CyberArena Linux Terminal
CyberArena Linux Terminal initialized...
Connected to beginner Linux training box.
Welcome to Linux Fundamentals.
Your goal is to run every command from the help menu.
Type 'help' to begin.
student@ca-linux:~$