If you’re new to Linux or just need a little help getting started, you’ll want to know how to get help from the terminal. This handy guide will teach you 8 tricks for getting the help you need, no matter what your level of experience may be.

  1. Use the man command: The man command is a great way to get detailed information on any command or option available in Linux. Just type man followed by the command or option you want information on, and hit enter. For example, if you want to learn more about the ls command’s options, type man ls and hit enter.
  2. Use the info command: The info command is another great way to get detailed information on any Linux system or program. Just type info followed by the name of whatever you want information on, and hit enter. For example, if you want to learn more about your computer’s hardware configuration, type info mycomputer and hit enter.
  3. Use Google: If you can’t find what you’re looking for in the documentation or online resources available from Linux systems, try using Google search engine instead! Simply type in a few keywords related to what you’re looking for (for example “how do I change my desktop background”), and Google will provide results that might include helpful tips or instructions related to what you’re looking for.
  4. Use online forums: If there’s something specific that you need help with but don’t see an answer to your question anywhere else online, check out some of the popular online forums dedicated specifically to helping new Linux users get started quickly and easily (for example Ubuntuforums or Lubuntuforums). You might be surprised at how many people are willing and able to offer assistance when they hear about someone struggling with a particular issue!
  5. Ask a friend: If all else fails (or if it just feels too daunting), ask a friend who uses Linux for help! They’ll likely be happy (and relieved) ..

Whether you’re an inexperienced terminal user or a grizzled veteran, you won’t always know the right thing to type into the Linux terminal. There are quite a few tools built into the terminal to help you along.

These tricks will help you find the command to use, figure out how to install it, learn how to use it, and view detailed information about it. None of these tricks require an Internet connection.

RELATED: 10 Basic Linux Commands for Beginners

-h or –help

If you’re not sure how to use a specific command, run the command with the -h or –help switches. You’ll see usage information and a list of options you can use with the command. For example, if you want to know how to use the wget command, type wget –help or wget -h.

This will often print a lot of information to the terminal, which can be inconvenient to scroll through. To read the output more easily, you can pipe it through the less command, which allows you to scroll through it with the arrow keys on your keyboard. For example, use the following command to pipe wget’s help output through less:

Press q to close the less utility when you’re done.

To find a specific option, you can pipe the output through the grep command. For example, use the following command to search for options that contain the word “proxy”:

Tab Completion

If you’re not sure about a specific command’s name, an option, or a file name, you can use tab completion to help. Let’s say we want to run a command that we know starts with gnome-session, but we don’t know its exact name. We can type gnome-session into the terminal and press Tab twice to view commands that match the name.

Once we see the command, option, or file name we want, we can type a few more letters and press the Tab key again. If only one match is available, the Bash shell will fill it in for you. Tab completion is also a great way to save on keystrokes, even if you know what you want to type.

Command Not Found

If you know the command you want to use, but don’t know the package that contains it, you can type the command into the terminal anyway. Ubuntu will tell you the package that contains the command and show you the command you can use to install it.

Let’s say we wanted to use the rotate command to rotate an image. We could just type rotate into the terminal and Ubuntu would tell us that we have to install the jigl package to get this command.

This feature was introduced by Ubuntu, and may have made its way into other Linux distributions. Traditionally, the shell displayed an unhelpful “command not found” message without any additional information.

help

The help command shows a short list of the commands built into the Bash shell itself.

man

The man command shows detailed manuals for each command. These are referred to as “man pages.” For example, if you wanted to view the man page for the wget command, you’d type man wget. Man pages generally contain much more detailed information than you’ll get with the -h or –help options

Type man intro to see a detailed introduction to using the shell on Linux.

To search a man page, type a /, followed by your query, and press Enter. For example, to search a man page for the word shell, type /shell while reading the man page and press Enter.

info

Some programs don’t have man pages — or have very incomplete man pages — and store their documentation as info documents.

To view these, you’ll have to use the info command instead of the man command. That’s info tar instead of man tar.

apropos

The apropos command searches for man pages that contain a phrase, so it’s a quick way of finding a command that can do something. It’s the same thing as running the man -k command.

whatis

The whatis command shows a one-line summary of a command, taken from its man page. It’s a quick way of seeing what a command actually does.

With these tricks under your belt, it’s possible to start using a Linux shell and learn new commands without Googling anything at all. Of course, if you’re at a terminal with an Internet connection, you can use w3m or another text-mode browser to search Google from the terminal.