Master the essential commands every Linux user should know
This tutorial will guide you through fundamental Linux commands. We'll create a folder, create a text document, and copy that document to the desktop - all through the command line!
You can open it by searching "Terminal" in the applications menu, or by pressing Ctrl + Alt + T.
pwd
This shows you're in your home directory.
cd ~
ls
mkdir firstfolder
firstfolder
is different from
FirstFolder
cd firstfolder
cd fir
and then press
Tab
to autocomplete.
nano hello.txt
cp hello.txt ~/Desktop