Linux Classes
Linux Training
* Linux Classes *

LINUX CLASSES - LINUX BASICS

How Do I Use the Linux Command Prompt?

Linux Commands

When you enter a command in Linux, you type a command at a prompt and then press enter. Commands can be more than one word--some require switches (which modify the command's behavior ) and/or file names (which tell the command what data to act on). Let's dissect the command shown here:


$ ls -l sample.doc

Linux Commands Are Case Sensitive

One of the most important things to remember about entering commands in any Unix environment is that case matters. In DOS, you can type DIR or dir or even DiR and get the same result, but not in Linux. Linux will be quite put out if you type LS instead of ls to list your files. With file names, you have to be even more careful, since nearly identical files (save for capitalization) can exist in the same directory, though they may have completely different contents--Cookie_Recipe and cookie_recipe would appear as distinctly different files to Linux, though they may look pretty much the same to you except for the capital letters.

The best rule to follow is this: Almost everything in Linux is lowercase, so avoid capital letters when naming your files.

Command Prompts Can Vary

When the Linux shell is ready for a command, you see a command prompt. Just as in DOS, Linux's command prompts vary. For example, when you log in as root, your default command prompt is the pound (#) sign, but if you log-in as a regula r user (like hermie), the prompt changes to a dollar sign ($).

Bash uses the different prompts to clue you in to your user privileges. Pay attention to the prompts so you don't inadvertently wipe out important files while logged in to the root account with superuser privileges, for example.

It's especially important to mind the prompts if you use the su (switch user) command, which allows you to act temporarily as the root user while you're logged in as a regular user. Watch how the prompt changes in the following example. (User input is in boldface.)

$ who am i
hermie
$ su - root
Enter password for root: xxxxxxx
# who am i
root
# exit
$ who am i
hermie

In this example, entering the command who am i tells you who the system thinks you are--hermie. Then the su - root command switches you to the root user (note the prompt change to the pound sign). The < STRONG>exit command exits the root user account and brings you back to hermie; the prompt changes back to a dollar sign. (See "Important Linux Commands" for more information on the su comma nd.)

This example used the prompt and the who am i command to show the logged-in user, but customizing your prompt is a better way to keep track of where you are.

For example, the command

PS1="\u \$ "

changes the prompt so that it displays the user name (\u), followed by the dollar sign (or pound sign, if you're a superuser). You can use other characters to insert the current time, date, or working directory (\t, \d, and \w, respectively). Here's how to use these various options:

PS1="\t \$ " yields 09:15:24 $.

PS1="\u (\d) \$ " yields hermie (Wed Nov 4) $.

PS1="\u (\w) \$ " yields hermie (/home/hermie) $.

All you're actually doing here is setting the variable PS1 (prompt string number 1) to a special string of characters. The bash shell interprets the value of the PS1 variable each time it's ready to build the prompt string.

In the "Environment Variables" section, you'll learn more about special variables such as PS1 and how to set them automatically each time you log in.

Previous Lesson: Choosing a Shell
Next Lesson: Wildcards

[ RETURN TO INDEX ]

Comments (most recent first)

Aadil     (19 May 2010, 23:14)
@ ang ...
Try booting your system from a DOS bootable CD and run the command

fdisk /mbr

it should start recognising your hard drive.
Matt     (18 Feb 2010, 19:50)
What Americans call the "pound" sign (#) is referred to as the "hash" sign elsewhere. But what do you expect from a nation who put their dates backwards and are still using a stone-age measuring system...

;-)
Bob Rankin     (17 Feb 2010, 22:52)
Maybe in the UK... :-)
Peter     (17 Feb 2010, 14:39)
I think the pound sign is '£' rather than '#'.
ang     (07 Feb 2010, 09:10)
My computer, which was built for windows xp, was running linux. Well I hate to admit I wasn't very adept at linux and must have made a very bad change, now it won't boot, won't even recognize the hard drive? can I fix this? I don't want to give up on it, I'd actually like to reinstall windows xp? any suggestions? I would greatly appreciate any advice.

*Name:
Email:
Notify me about new comments on this page
Hide my email
*Text:
 

Ask Bob Rankin - Free Tech Support
<Send This Link to a Friend>         <Bookmark This Page>


Copyright © by Bob Rankin
All rights reserved - Redistribution is allowed only with permission.