I've been using Linux for a few months now, specifically Kubuntu, and I'm trying to get comfortable with the terminal (or Konsole). I created a study guide that covers some very basic navigation commands and features, but I'd love some feedback to make sure everything is correct. I don't plan on diving too deep into Linux; I just want to learn the essentials. I've been using Windows since '98, so I'm a total beginner at this! I've replaced my user and computer names in the guide for privacy.
Here's what I've come up with regarding basic commands like changing directories, listing files, and installing applications. Could anyone help me out with any corrections or additional tips? Thanks for any help!
3 Answers
You don’t need to be in your home directory to use `cd`. Just make sure you’re in a parent directory of the folder you want to access. Otherwise, you’ll need to use the full absolute path (like `/home/username/Downloads`) or a relative path (like `../username/Downloads`). This will save you some hassle!
Just a heads up, when you run `sudo apt update`, it doesn't actually update the apps themselves—just checks for newer versions available in repositories. If you want to upgrade the apps, make sure to follow up with `sudo apt upgrade`. It's a crucial step!
Honestly, just dive into it and use the terminal as you go about your tasks. You'll pick things up naturally. Don't stress too much about memorizing commands—getting hands-on experience is key!

Right? Learning through actual use beats studying commands any day. But since you're starting to grasp these basics, you'll be ready if you ever need to dig deeper into Linux!