Introduction To Unix: Fundamental Commands
Introduction To Unix: Fundamental Commands
Fundamental Commands
1
What You Will Learn
2
What Is UNIX?
3
Logging on to a UNIX machine
4
Connecting a PC (MS-Windows) to UNIX System
5
Choose Connect Remote System
A new window will come up to the screen, in the Host Name
section, type the above name, leave other parts as their default
values
6
To log in to your
Unix account,
enter your login
name at the
login:
prompt and press
<RETURN>
login: your-login-name
When you first log into a unix system, you are presented
with something that looks like the following:
/home/larry#
That something is called a prompt. As its name would
suggest, it is prompting you to enter a command.
Every unix command is a sequence of letters, numbers
and characters. But there are no spaces.
9
Unix is also case-sensitive. This means that cat and
Cat are different commands.
10
There are two major types of shells in unix:
Bourne shells
C shells.
Steven Bourne wrote the original unix shell sh,
and most shells since then end in the letters sh to
indicate they are extentions on the original idea
Linux comes with a Bourne shell called bash
written by the Free Software Foundation.
bash stands for Bourne Again Shell and is the
default shell to use running linux
11
When you first login, the prompt is displayed
by bash, and you are running your first unix
program, the bash shell.
12
Unix Commands
obtaining help
13
To exit
Press q
14
man (obtaining help)
There is also a keyword function in man.
For example;
If you are interested in any commands that deal with
Postscript, the printer control language for Adobe
Type man -k ps or man -k Postscript,
youll get a listing of all commands, system calls, and
other documented parts of unix that have the word ps
(or Postscript) in their name or short description.
This can be very useful when youre looking for a tool to do
something, but you dont know its name-or if it even exists!
15
cat
cat command is used to concatenate or displays the contents
of a file.
To use it, type cat, and then press enter key:
/home/larry# cat
This produces the correct result and runs the cat program.
Prompt Command
17
To see linux commands press Tab key,
If you want to learn commands beginning with c
you can write c then press Tab key
/home/larry# c
18
Storing information
19
Each file and each directory has a name.
A short name for a file could be joe,
while its full name would be /home/larry/joe. The full
name is usually called the path.
The path can be divide into a sequence of directories.
For example, here is how /home/larry/joe is read:
/home/larry/joe
The initial slash indicates the root directory.
This signifies the directory called home. It is
inside the root directory.
The second slash corresponds to the
directory larry, which is inside home.
Root Directory
Sub-Directory larry
Directory
structure File File joe
21
Looking at directories with Is
If you have
files, ls lists the
names of files
in the directory
22
If you want a list of files of a more active directory, try the
root directory.
/home/larry# ls /
bin etc install mnt root user var
dev home lib proc tmp usr vmlinux
24
Many unix commands are like ls.
25
passwd
For example,
sariyer:~> passwd
Changing password for dag.
Old password:
New passwd:
Retype new passwd:
sariyer:~>
26
pwd
pwd (present working directory) tells you your
current directory.
Most commands act, by default, on the current directory.
For instance, ls without any parameters displays the
contents of the current directory.
cd
cd is used to change directories.
The format of this command :
cd new-directory (where new-directory is the name of
the new directory you want).
27
For instance, try:
/home/larry# cd /home
/home#
rmdir
rmdir (remove directory) is used to remove a directory,
rmdir will refuse to remove a non-existant directory,
as well as a directory that has anything in it.
29
Moving Information
The primary commands for manipulating files under unix are
cp, mv, and rm. They stand for copy, move, and remove,
respectively.
cp
cp is used to copy contents of file1 to file2
cp file1 file2 (contents of file1 is copied to file2 in the same directory)
cp folder1/file1 folder2 (contents of file1 is copied to file1 in the
inside of folder2 directory)
30
rm
rm is used to remove a file.
rm filename ---> removes a file named filename
mv
mv is used to move a file.
rm filename ---> removes a file named filename
looks like cp, except that it deletes the original file after
copying it.
mv will rename a file if the second parameter is a file. If the
second parameter is a directory, mv will move the file to the
new directory, keeping its shortname the same.
31
Some Other UNIX Commands
The Power of Unix
32
Operating on Files
In addition to the commands like cd, mv, and rm, you learned
in shell section, there are other commands that just operate on
files, but not the data in them.
33
Some of the things these commands manipulate:
The time stamp: Each file has three dates associated with it.
These are creation time, last modification time and last access
time.
34
drwxr-xr-x 2 dag users 6 Dec 6 2000 netscape
file name
group
owner
touch
35
chmod
du
du (disk usage) will count the amount of disk space for a given
directory, and all its subdirectories take up on the disk.
df
38
Whats in the File?
There are two major commands used in unix for listing files,
cat, and more.
cat
cat shows the contents of the file.
cat [-nA] [file1 file2 . . . fileN]
cat is not a user friendly command-it doesnt wait for you to
read the file, and is mostly used in conjuction with pipes.
However, cat does have some useful command-line options.
For instance, n will number all the lines in the file, and A will
show control characters.
39
more
more is much more useful, and is the command that youll
want to use when browsing ASCII text files
more [-l] [+linenumber}] [file1 file2 ... fileN]
The only interesting option is l, which will tell more that you
aren't interested in treating the character Ctrl-L} as a ``new
page'' character. more will start on a specified linenumber.
head
head will display the first ten lines in the listed files.
head [- lines}] [l file1 file2 ... fileN]
Any numeric option will be taken as the number of lines to
print, so head -15 frog will print the first fifteen lines of the
file frog
40
tail
Like head, tail display only a fraction of the file.
tail also accepts an option specifying the number of lines.
tail [-lines] [l file1 file2 ... fileN]
file
file command attempts to identify what format a particular
file is written in.
file [file1 file2 ... fileN]
Since not all files have extentions or other easy to identify
marks, the file command performs some rudimentary
checks to try and figure out exactly what it contains.
41
Information Commands
The commands that will alter a file, perform a certain
operation on the file, or display statistics on the file.
grep
grep is the generalized regular expression parser.
This is a fancy name for a utility which can only search a text
file.
grep [-nvwx] [-number] { expression} [file1 file2 ... fileN]
42
wc
wc (word count) simply counts the number of words, lines,
and characters in the file(s).
wc [-clw] [file1 file2 ... fileN]
The three parameters, clw, stand for character, line, and
word respectively, and tell wc which of the three to count.
spell
spell is very simple unix spelling program, usually for
American English. spell is a filter, like most of the other
programs weve talked about.
spell [file1 file2 ... fileN]
43
cmp
cmp compares two files.
The first must be listed on command line, while the second
is either listed as the second parameter or is read in form
standard input.
cmp is very simple, and merely tells you where the two
files first differ.
cmp file1 [ file2]
44
diff
One of the most complicated standard unix commands is
called diff.
The GNU version of diff has over twenty command line
options. It is a much more powerful version of cmp and
shows you what the differences are instead of merely
telling you where the first one is.
diff file1 file2
45
gzip [-v#] [file1 file2 ... fileN]
gunzip [-v] [file1 file2 ... fileN]
zcat [{file1 file2 ... fileN]
46
tr
The translate characters command operates on standard
input-it doesnt accept a filename as a parameter.
Instead, its two parameters are arbitrary strings.
It replaces all occurences of string1 in the input string2.
In addition to relatively simple commands such as tr frog
toad, tr can accept more complicated commands.
tr string1 string2
47
Editors
There are a lot of available editors under linux operating
system.
Amongst these vi is the most common one. One can
claim that every unix system has vi.
The other famous editor is emacs which has some
artificial intelligence properties.
The mailing facility pine uses the pico editor.
However, perhaps the simplest one of the editors is joe.
joe has a lot of flexible features of emacs and pico beside
the user friendliness of the turbo type of editors.
48