How to move around the filesystem
Basic commands necessary for utilizing a linux terminal
$ # The dollar sign indicates that you are a regular user# Now that we know we're a regular user wwe should find out who that is
# In order to understand who you are simply type: `whoami`
# The output should be the user you're logged in as in my case its:
theo# this shows you your current location
# `pwd` stands for "print working directory"
# The output should be your home directory and should look like:
/home/theo/# ls stands for list and shows you everything in the current directory
# the output will look something like this:
Desktop Documents Downloads Music Pictures Public Templates Videos
# By default ls sorts things in alphabetical orderLast updated
Was this helpful?