This is a quick reference guide for the Linux Terminal:

# Remember, administrator commands will require sudo. Example: sudo apt update
# Remember, Linux is case sensitive!

<tab> allows auto complete

<Up arrow> <This will pull up previously used commands>

sudo <run command as an administrator>

ls <lost content in current directory>

cd <Change directory. Example cd Desktop>

cd .. <Backup to root folder>

mkdir test <Create a folder called test>

rmdir <remove folder called test as long as it's empty>

ifconfig <Network configuration>

iwconfig <View wireless configuration>

ping <ping command. Example ping google.com>

<Stop ping> Ctrl+c

sudo apt update <Search for updates>

sudo apt upgrade <Run after update, will install updated files>

sudo apt update && sudo apt upgrade <The same as both commands>

help <Help command if available>

git clone www.reconhound.com <downloads file from Github>

sudo apt install audacity <Installs audacity from repository, if available>

sudo apt remove audacity <Uninstalls Audacity>

./audacity <Runs program, you must be in the program's directory>

sudo chmod +x audacity <Makes a file execuable if locked>

python recondog.py <Programs with a .py extention are Python programs, will launch recondog in this example)

clear <Clear screen>

exit <Exit's the terminal>


Additional commands: https://www.pcsteps.com/5010-basic-linux-commands-terminal/
