Mar 22, 2026

Troubleshooting Basic Commands Part 45

The following is a tutorial that goes through basic Linux commands.

Basic Commands

The List Command

Test Scenario

Just Added

Basic Commands

Command Description
ls List files in short format
cp Copy a file or directory
rm Remove a file or directory

The List Command

Here’s how to use the ls command :

$ ls -l

$ ls -ltr

Test Scenario

Now, let’s use some basic commands to become more comfortable with the terminal.


$ whoami


$ id


$ echo “Hello World”


Just Added

Back to Top