Arch Linux Lab_

πŸ”„ Loading...
πŸ”
Command Categories:

πŸ“Files & Navigation

Navigate and manage real filesystem

17 commands available

βœ…ls

directory listing (list all files/folders on current dir)

πŸ’‘ Example: ls -la
βœ…ls -l

formatted listing with permissions and dates

πŸ’‘ Example: ls -l
βœ…ls -la

formatted listing including hidden files

πŸ’‘ Example: ls -la
βœ…cd dir

change directory to dir (real filesystem navigation)

πŸ’‘ Example: cd /etc
βœ…cd..

change to parent directory

πŸ’‘ Example: cd..
βœ…cd

change to home directory

πŸ’‘ Example: cd
βœ…pwd

show current directory path

πŸ’‘ Example: pwd
βœ…mkdir dir

create a directory in real filesystem

πŸ’‘ Example: mkdir myproject
⚑rm file

delete file from real filesystem

πŸ’‘ Example: rm document.txt
⚠️rm -f dir

force remove file (permanent deletion)

πŸ’‘ Example: rm -f oldfile.txt
⚠️rm -r dir

recursively delete directory and contents

πŸ’‘ Example: rm -r myfolder
βœ…cp file1 file2

copy file1 to file2 in real filesystem

πŸ’‘ Example: cp backup.txt backup2.txt
⚑mv file1 file2

rename/move file1 to file2

πŸ’‘ Example: mv oldname.txt newname.txt
βœ…touch file

create or update file timestamp

πŸ’‘ Example: touch newfile.txt
βœ…cat file

output contents of real file

πŸ’‘ Example: cat /etc/hostname
βœ…tail -f file

follow file changes in real time

πŸ’‘ Example: tail -f /var/log/messages
βœ…find . -name

search for files in real filesystem

πŸ’‘ Example: find . -name "*.txt"

🐧 Real Arch Linux Virtual Machine

/home/user
user@archlab:user$
⏳