Linux Terminals Shortcuts
Linux Terminals Shortcuts
Contents 1. Why use the command-line? 2. Starting a Terminal 1. In Unity 2. In Gnome 3. In Xfce (Xubuntu) 4. In KDE (Kubuntu) 5. In LXDE (Lubuntu) 3. Commands 1. sudo: Executing Commands with Elevated Privileges 2. File & Directory Commands 3. Running a File Within a Directory 4. System Information Commands 5. Adding A New User 4. Options 5. "Man" and getting help 1. Searching for man files 6. Other Useful Things 1. Prettier Manual Pages 2. Pasting in commands 3. Save on typing 4. Change the text 7. More ways to run a terminal 8. More Information
However, it is important to note that even experienced users often cut and paste commands (from a guide or manual) into the command-line terminal; they do not memorize them. It is important, of course, to know how to use the command-line terminal - and anyone who can manage typing, backspacing, and cutting and pasting can manage the command-line terminal (it is not more difficult than that). This page will outline a few crafty shortcuts which can make using a command-line interface easier.
Starting a Terminal
In Unity
Unity is the default Desktop Environment used in 11.04. Where systems are not ready for Unity they revert to Gnome which is also used in previous releases such as Ubuntu 10.04 LTS (Lucid), see next sub-section. The easiest way to open the Terminal is to use the 'search' function on the dash. Or you can click on the 'More Apps' button, click on the 'See more results' by the installed section, and find it in that list of applications. A third way, available after you click on the 'More Apps' button, is to go to the search bar, and see that the far right end of it says 'All Applications'. You then click on that, and you'll see the full list. Then you can go to Accessories > Terminal after that. So, the methods in Unity are: Dash -> Search for Terminal Dash -> More Apps -> 'See More Results' -> Terminal Dash -> More Apps -> Accessories -> Terminal Keyboard Shortcut: Ctrl + Alt + T
In Gnome
Gnome is the Classic Desktop Environment for Ubuntu 11.04 (Natty) and is the default DE in earlier releases, such as Ubuntu 10.04 LTS (Lucid). Applications menu -> Accessories -> Terminal. Keyboard Shortcut: Ctrl + Alt + T
In Xfce (Xubuntu)
Applications menu -> System -> Terminal.
In KDE (Kubuntu)
KMenu -> System -> Terminal Program (Konsole).
In LXDE (Lubuntu)
Menu -> Accessories -> LXTerminal.
Commands
sudo: Executing Commands with Elevated Privileges
Most of the following commands will need to be prefaced with the sudo command. This elevates privileges to the root-user administrative level temporarily, which is necessary when working with directories or files not owned by your user account. When using sudo you will be prompted for your password. Only users with sudo (administrative) privileges will be able to use this command. You should never use normal sudo to start graphical applications as Root (Please see RootSudo for more information on using sudo correctly.)
with sudo -i or sudo -s, ~ will refer to the root account's home directory, not your own. rm: Use this command to remove or delete a file in your directory. rmdir: The rmdir command will delete an empty directory. To delete a directory and all of its contents recursively, use rm -r instead. mkdir: The mkdir command will allow you to create directories. Example: "mkdir music" will create a directory called "music". man: The man command is used to show you the manual of other commands. Try "man man" to get the man page for man itself. See the "Man & Getting Help" section down the page for more information. sudo: The sudo command is used to perform file operations on files that the Root User would only be allowed to change. An example would be trying to move one of your documents that another user accidentally moved to / back to your documents directory. Normally, to move the file, you would type mv /mydoc.odt ~/Documents/mydoc.odt, but you are not allowed to modify files outside of your home directory. To get around this, you would type sudo mv /mydoc.odt ~/Documents/mydoc.odt. This will successfully move the file back to its correct location, provided that you are not a standard user, who has less (administrative) ability than an administrator. Be aware, though, that by using the sudo command, you need to be extra careful. It is easier to damage your system by using the sudo command. For more information about the sudo command, click here.
-s means "Summary" and -h means "Human Readable" free: The free command displays the amount of free and used memory in the system. "free
-m" will give the information using megabytes, which is probably most useful for current computers. top: The top command displays information on your Linux system, running processes and system resources, including CPU, RAM & swap usage and total number of tasks being run. To exit top, press "q". uname -a: The uname command with the -a option prints all system information, including machine name, kernel name & version, and a few other details. Most useful for checking which kernel you're using. lsb_release -a: The lsb_release command with the -a option prints version information for the Linux release you're running, for example:
user@computer:~$ lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description: Ubuntu 11.10 Release: 11.10 Codename: oneiric
Options
The default behaviour for a command may usually be modified by adding a --option to the command. The ls command for example has an -s option so that "ls -s" will include file sizes in the listing. There is also a -h option to get those sizes in a "human readable" format. Options can be grouped in clusters so "ls -sh" is exactly the same command as "ls -s -h". Most options have a long version, prefixed with two dashes instead of one, so even "ls --size --humanreadable" is the same command.
Some software developers prefer info to man (for instance, GNU developers), so if you find a very widely used command or app that doesn't have a man page, it's worth checking for an info page. Virtually all commands understand the -h (or --help) option which will produce a short usage description of the command and it's options, then exit back to the command prompt. Try "man -h" or "man --help" to see this in action. Caveat: It's possible (but rare) that a program doesn't understand the -h option to mean help. For this reason, check for a man or info page first, and try the long option --help before -h.
Pasting in commands
Often, you will be referred to instructions that require commands to be pasted into the terminal. You might be wondering why the text you've copied from a web page using ctrl+C won't paste in with ctrl+V. Surely you don't have to type in all those nasty commands and filenames? Relax. ctrl+shift+V pastes into a Gnome terminal; you can also do Middle Button Click on your mouse (both buttons simultaneously on a two-button mouse) or Right Click and select Paste from the menu. However, if you want to avoid the mouse and yet paste it, use "Shift+Insert", to paste the command. If you have to copy it from another terminal / webpage, you can use "Ctrl+Insert" to copy.
Save on typing
Up Arrow or ctrl+p Scrolls through the commands you've entered previously.
When you have the command you want. A very useful feature. It autocompletes any commands or filenames, if there's only one option, or else gives you a list of options. Searches for commands you've already typed. When you have entered a very long, complex command and need to repeat it, using this key combination and then typing a portion of the command will search through your command history. When you find it, simply press Enter. The history command shows a very long list of commands that you have typed. Each command is displayed next to a number. You can type !x to execute a previously typed command from the list (replace the X with a number). If you history output is too long, then use history | less for a scrollable list.
ctrl+r
History
More Information
AptGetHowto - using apt-get to install packages from the command line. Commandline Repository Editing - adding the Universe/Multiverse repositories through the command line. grep Howto - grep is a powerful command line search tool. find Howto - locate files on the command line. CommandlineHowto - longer and more complete than this basic guide, but still unfinished. HowToReadline - information on some more advanced customization for the command line. For more detailed tutorials on the Linux command line, please see: http://mywiki.wooledge.org/BashGuide - Bash guide suitable for beginners. One of the few to also teach good practice. http://linuxcommand.org/ - basic BASH tutorials, including BASH scripting http://linuxsurvival.com/index.php - Java-based tutorials http://rute.2038bug.com/index.html.gz - a massive online book about system administration, almost all from the command line. http://www.ss64.com/bash/ - a good list a commands. http://tinyurl.com/ycyg4mk - Listing of 3 helpful sites from beginner to advanced scripting Ubuntuguide -- concise and up-to-date information for both command-line and GUI users of Ubuntu Kubuntuguide -- concise and up-to-date information for both command-line and GUI users of Kubuntu