Here are some warm-up exercises for anyone just starting to use the Linux command line. Warning: It can be addictive. Credit: Sandra Henry-Stocker / Linux If you’re new to Linux or have simply never bothered to explore the command line, you may not understand why so many Linux enthusiasts get excited typing commands when they’re sitting at a comfortable desktop with plenty of tools and apps available to them. In this post, we’ll take a quick dive to explore the wonders of the command line and see if maybe we can get you hooked. First, to use the command line, you have to open up a command tool (also referred to as a “command prompt”). How to do this will depend on which version of Linux you’re running. On RedHat, for example, you might see an Activities tab at the top of your screen which will open a list of options and a small window for entering a command (like “cmd” which will open the window for you). On Ubuntu and some others, you might see a small terminal icon along the left-hand side of your screen. On many systems, you can open a command window by pressing the Ctrl+Alt+t keys at the same time. You will also find yourself on the command line if you log into a Linux system using a tool like PuTTY. Once you get your command line window, you’ll find yourself sitting at a prompt. It could be just a $ or something as elaborate as “user@system:~$” but it means that the system is ready to run commands for you. Once you get this far, it will be time to start entering commands. Below are some of the commands to try first, and here is a PDF of some particularly useful commands and a two-sided command cheatsheet suitable for printing out and laminating. Command What it does pwd show me where I am in the file system (initially, this will be your home directory) ls list my files ls -a list even more of my files (including those that start with a period) ls -al list my files with lots of details (including dates, file sizes and permissions) who show me who is logged in (don’t be disappointed if it’s only you) date remind me what day today is (shows the time too) ps list my running processes (might just be your shell and the “ps” command) Once you’ve gotten used to your Linux home from the command line point of view, you can begin to explore. Maybe you’ll feel ready to wander around the file system with commands like these: Command What it does cd /tmp move to another directory (in this case, /tmp) ls list files in that location cd go back home (with no arguments, cd always takes you back to your home directory) cat .bashrc display the contents of a file (in this case, .bashrc) history show your recent commands echo hello say “hello” to yourself cal show a calendar for the current month To get a feeling for why more advanced Linux users like the command line so much, you will want to try some other features – like redirection and pipes. Redirection is when you take the output of a command and drop it into a file instead of displaying it on your screen. Pipes are when you take the output of one command and send it to another command that will manipulate it in some way. Here are commands to try: Command What it does echo “echo hello” > tryme create a new file and put the words “echo hello” into it chmod 700 tryme make the new file executable tryme run the new file (it should run the command it contains and display “hello”) ps aux show all running processes ps aux | grep $USER show all running processes, but limit the output to lines containing your username echo $USER display your username using an environment variable whoami display your username with a command who | wc -l count how many users are currently logged in Wrap-Up Once you get used to the basic commands, you can explore other commands and try your hand at writing scripts. You might find that Linux is a lot more powerful and nice to use than you ever imagined. Related content how-to How to examine files on Linux Linux provides very useful options for viewing file attributes, such as owners and permissions, as well as file content. By Sandra Henry Stocker Oct 24, 2024 6 mins Linux how-to 8 easy ways to reuse commands on Linux Typing the same command again and again can become tiresome. Here are a number of ways you can make repeating commands – or repeating commands but with some changes – a lot easier than you might expect. By Sandra Henry-Stocker Oct 15, 2024 5 mins Linux news SUSE Edge upgrade targets Kubernetes and Linux at the edge SUSE Edge 3.1 includes a new stack validation framework and an image builder tool that are aimed at improving the scalability and manageability of complex Kubernetes and Linux edge-computing deployments. By Sean Michael Kerner Oct 15, 2024 6 mins Edge Computing Linux Network Management Software how-to Lesser-known xargs command is a versatile time saver Boost your Linux command line options and simplify your work with xargs, a handy tool for a number of data manipulation tasks. By Sandra Henry Stocker Oct 11, 2024 6 mins Linux PODCASTS VIDEOS RESOURCES EVENTS NEWSLETTERS Newsletter Promo Module Test Description for newsletter promo module. Please enter a valid email address Subscribe