You are on page 1of 28

Study of UNIX OS EX. NO. : DATE : AIM: To study the What is UNIX?

UNIX OS.

UNIX is an operating system which was first developed in the 1960s, and has been under constant development ever since. By operating system, we mean the suite of programs which make the computer work. It is a stable, multi-user, multi-tasking system for servers, desktops and laptops. UNIX systems also have a graphical user interface (GUI) similar to Microsoft Windows which provides an easy to use environment. However, knowledge of UNIX is required for operations which arent covered by a graphical program, or for when there is no windows interface available, for example, in a telnet session.
Types of UNIX

There are many different versions of UNIX, although they share common similarities. The most popular varieties of UNIX are Sun Solaris, GNU/Linux, and MacOS X.
The UNIX operating system

The UNIX operating system is made up of three parts; the kernel, the shell and the programs. The kernel The kernel of UNIX is the hub of the operating system: it allocates time and memory to programs and handles the filestore and communications in response to system calls. As an illustration of the way that the shell and the kernel work together, suppose a user types rm myfile (which has the effect of removing the file myfile). The shell searches the filestore for the file containing the program rm, and then requests the kernel, through system calls, to execute the program rm on myfile. When the process rm myfile has finished running, the shell then returns the UNIX prompt % to the user, indicating that it is waiting for further commands. The shell The shell acts as an interface between the user and the kernel. When a user logs in, the login program checks the username and password, and then starts another program called the shell. The shell is a command line interpreter (CLI). It interprets the commands the user types in and arranges for them to be carried out. The commands are themselves programs: when they terminate, the shell gives the user another prompt (% on our systems). The adept user can customise his/her own shell, and users can use different shells on the same machine. Staff and students in the school have the tcsh shell by default. The tcsh shell has certain features to help the user inputting commands. Filename Completion By typing part of the name of a command, filename or directory and pressing the [Tab] key, the tcsh shell will complete the rest of the name automatically. If the shell finds more than one name beginning with those letters you have typed, it will beep, prompting you to type a few more letters before pressing the tab key again. History The shell keeps a list of the commands you have typed in. If you need to repeat a command, use the cursor keys to scroll up and down the list or type history for a list of previous commands.
Files and processes

Everything in UNIX is either a file or a process. A process is an executing program identified by a unique PID (process identifier).

A file is a collection of data. They are created by users using text editors, running compilers etc. Examples of files: a document (report, essay etc.) the text of a program written in some high-level programming language instructions comprehensible directly to the machine and incomprehensible to a casual user, for example, a collection of binary digits (an executable or binary file); a directory, containing information about its contents, which may be a mixture of other directories (subdirectories) and ordinary files.
The Directory Structure

All the files are grouped together in the directory structure. The file-system is arranged in a hierarchical structure, like an inverted tree. The top of the hierarchy is traditionally called root (written as a slash / ) Most UNIX file system types have a similar general structure, although the exact details vary quite a bit. The central concepts are superblock, inode, data block, directory block, and indirection block. The superblock contains information about the file system as a whole, such as its size (the exact information here depends on the file system). An inode contains all information about a file, except its name. The name is stored in the directory, together with the number of the inode. A directory entry consists of a filename and the number of the inode which represents the file. The inode contains the numbers of several data blocks, which are used to store the data in the file. There is space only for a few data block numbers in the inode, however, and if more are needed, more space for pointers to the data blocks is allocated dynamically. These dynamically allocated blocks are indirect blocks; the name indicates that in order to find the data block, one has to find its number in the indirect block first. Like UNIX, Linux chooses to have a single hierarchical directory structure. Everything starts from the root directory, represented by /, and then expands into sub-directories instead of having so-called drives. In the Windows environment, one may put ones files almost anywhere: on C drive, D drive, E drive etc. Such a file system is called a hierarchical structure and is managed by the programs themselves (program directories), not by the operating system. On the other hand, Linux sorts directories descending from the root directory / according to their importance to the boot process. Linux, like Unix also chooses to be case sensitive. What this means is that the case, whether in capitals or not, of the characters becomes very important. This feature accounts for a fairly large proportion of problems for new users especially during file transfer operations whether it may be via removable disk media such as floppy disk or over the wire by way of FTP.

The following bin/ dev/ home/ lost+found/ proc/ sbin/ usr/ boot/ etc/ lib/ mnt/ root/ tmp/ var/ are explained in detail. /sbin This directory contains all the binaries that are essential to the working of the system. These include system administration as well as maintenance and hardware configuration programs. /bin In contrast to /sbin, the bin directory contains several useful commands that are used by both the system administrator as well as non-privileged users. /boot This directory contains the system.map file as well as the Linux kernel. Lilo places the boot sector backups in this directory. /dev This is a very interesting directory that highlights one important characteristic of the Linux filesystem everything is a file or a directory. Look through this directory and you should see hda1, hda2 etc, which represent the various partitions on the first master drive of the system. /dev/cdrom and /dev/fd0 represent your CDROM drive and your floppy drive. /etc This directory contains all the configuration files for your system. Your lilo.conf file lies in this directory as does hosts, resolv.conf and fstab. /home These are the user home directories, which can be found under /home/username. /lib This contains all the shared libraries that are required by system programs. Windows equivalent to a shared library would be a DLL file. /lost+found Linux should always go through a proper shutdown. Sometimes your system might crash or a power failure might take the machine down. Either way, at the next boot, a lengthy filesystem check using fsck will be done. Fsck will go through the system and try to recover any corrupt files that it finds. The result of this recovery operation will be placed in this directory. /mnt This directory usually contains mount points or sub-directories where you mount your floppy and your CD. /opt This directory contains all the software and add-on packages that are not part of the default installation. /proc This is a special directory on your system. /root We talked about user home directories earlier and well this one is the home directory of the user root.

/tmp This directory contains mostly files that are required temporarily. /usr This is one of the most important directories in the system as it contains all the user binaries. /usr/src/linux contains the source code for the Linux kernel. /var This directory contains spooling data like mail and also the output from the printer daemon. The above content briefs about Linux and the file system of Linux.
BASIC COMMANDS IN UNIX EX. NO. : DATE : AIM: To study the basic commands in UNIX. COMMANDS: 1. TASK : To display the system date and time. COMMAND : date. SYNTAX : date. EXPLANATION: This

command displays the current system date and time on the

screen.
OUTPUT : 2. TASK : To SYNTAX :

display the current month. date +%m. on the screen.

COMMAND : date. EXPLANATION: This command displays the current month OUTPUT : 3. TASK : To display the name of the current month. COMMAND : date. SYNTAX : date

+%h. command displays the name of the current month on the

EXPLANATION: This

screen.
OUTPUT : 4. TASK : To

display the current system date. COMMAND : date. SYNTAX : date +%d. EXPLANATION: This command displays the current system date on the screen.
OUTPUT : 5. TASK : To

display the current system date (year). date. SYNTAX : date +%y. EXPLANATION: This command displays the current year on the screen.
COMMAND : OUTPUT : 6. TASK : To

display the current system time. COMMAND : date. SYNTAX : date +%H. EXPLANATION: This command displays the current system time (in hours) on the screen.
OUTPUT : 7. TASK : To

display the current system time. date. SYNTAX : date +%M. EXPLANATION: This command displays the current system time (in minutes) on the screen.
COMMAND :

OUTPUT : 8. TASK : To

display the current system time. date. SYNTAX : date +%S. EXPLANATION: This command displays the current system time (in seconds) on the screen.
COMMAND : OUTPUT : 9. TASK : To

display the calendar of the current month. COMMAND : calendar. SYNTAX : cal. EXPLANATION: This command displays the calendar of the current month on the screen.
OUTPUT : 10. TASK :

To display user-defined message. COMMAND : echo. SYNTAX : echo message. EXPLANATION: This command displays on the screen the argument of the echo command.
OUTPUT :

To display the details of all users. COMMAND : who. SYNTAX : who. EXPLANATION : This command lists the information about all the users who have
11. TASK :

logged on to that system.


OUTPUT : 12. TASK :

To display the user detail. who. SYNTAX : whoami. EXPLANATION : This command displays information about the current user of the
COMMAND :

system on the screen.


OUTPUT : 13. TASK : To COMMAND :

create a directory. make directory. SYNTAX : mkdir. EXPLANATION : This command is used to create a new directory with the specified name.
EXAMPLE : OUTPUT : 14. TASK : To

COMMAND : change SYNTAX : cd directory name.

change directory. directory. used to switch from one directory to another.

EXPLANATION : This command is EXAMPLE : OUTPUT : 15. TASK : To delete a directory.

COMMAND : remove directory. SYNTAX : rmdir directory name EXPLANATION : This command is used to delete EXAMPLE : OUTPUT : 16. TASK : To come out of a sub-directory.

the specified directory.

COMMAND : change directory. SYNTAX : cd .. EXPLANATION : This command helps in switching OUTPUT : 17. TASK : To list all the files and directories. COMMAND : SYNTAX : ls.

to the main directory.

list. displays all the files and directories of the system.

EXPLANATION : This command OUTPUT : 18. TASK : To create a file. COMMAND : cat. SYNTAX : cat> file name.

This command leads to the creation of a new file with the specified file name and contents.
EXPLANATION : EXAMPLE : OUTPUT : 19. TASK : To

view a file.

COMMAND : cat. SYNTAX : cat file name. EXPLANATION : This command EXAMPLE : OUTPUT : 20. TASK : To copy a file. COMMAND : copy. SYNTAX : cp sourcefile destinationfile. EXPLANATION :

displays the contents of the specified file.

This command produces a copy of the source file and is stored in

the specified destination file by overwriting its previous contents.


EXAMPLE : OUTPUT : 21. TASK : To

move a file. COMMAND : move.


SYNTAX : mv sourcefile

destinationfile. moving the contents of the source file into destination file, the source file is deleted.
EXPLANATION : After EXAMPLE : OUTPUT : 22. TASK : To

display / cut a column from a file.

COMMAND : cut. SYNTAX : cut c no. filename. EXPLANATION :

This command displays the characters of a particular column in the

specified file.
EXAMPLE : OUTPUT :

. To delete a file. COMMAND : remove.


23. TASK : SYNTAX : rm file name. EXPLANATION : This command deletes EXAMPLE : OUTPUT : 24. TASK : To retrieve a part of a file. COMMAND : head. SYNTAX : head -no. of rows file

the specified file from the directory.

name. EXPLANATION : This command displays the specified no. of rows form the top of the specified file.
EXAMPLE : OUTPUT : 25. TASK : To COMMAND :

retrieve a file. tail. SYNTAX : tail -no. of rows file name. EXPLANATION : This command displays the specified no. of rows form the bottom of the specified file.
EXAMPLE : OUTPUT : 26. TASK : To

sort the contents of a file. COMMAND : sort.


SYNTAX : sort file name. EXPLANATION :

This command helps in sorting the contents of a file in ascending

order.
EXAMPLE : OUTPUT :

.
27. TASK : COMMAND : word SYNTAX : wc file name. EXPLANATION :

To display the no. of characters in a file. count. This command displays on the screen the no. of rows, words, and

the sum of no. of characters and words.


EXAMPLE : OUTPUT : 28. TASK : To

display the calendar of a year. COMMAND : cal.

SYNTAX : cal year. EXPLANATION :

This command displays on the screen the calendar of the specified year.

EXAMPLE : OUTPUT : Listing Directory Contents

1. Log in to the system. 2. Issue the command pwd . What is the path? ________________________________________________________________________ 3. Issue the command ls. What do you observe? ________________________________________________________________________ 4. Issue the command ls l . In an abbreviated form, what do you observe? ________________________________________________________________________ ________________________________________________________________________ 5. Issue the command ls a. In an abbreviated form, what do you observe? ________________________________________________________________________ ________________________________________________________________________ 6. Issue the command cd /var. 7. Issue the command pwd . What is the path? ________________________________________________________________________ 8. Issue the command ls. What do you observe? ________________________________________________________________________ 9. Issue the command ls l . In an abbreviated form, what do you observe? ________________________________________________________________________ 10. Issue the command ls a. In an abbreviated form, what do you observe? ________________________________________________________________________ 11. Issue the command ls i . Record the inode value for each file and directory. inode filename inode filename ________________________________________________________________________ ________________________________________________________________________
Root

In your own words, explain the meaning of: 1. The Root ________________________________________________________________________ 2. Administrator Root ________________________________________________________________________ 3. Home directory Root ________________________________________________________________________ 4. Group Root ________________________________________________________________________ 5. What is the difference between the user root and group root. ________________________________________________________________________ Beside the UNIX commands below, define what each command does. cd pwd

ls cp echo rm mkdir rmdir


Frequently used UNIX commands

Command ls ls
*.out

Result lists files in current working directory lists all files in current directory that end in .out lists files giving details including file size displays full-path name of your current working directory on screen (stands for present working directory) changes directory to dirname changes directory to one above the current directory with no argument, takes you to your home directory

ls -l pwd cd
dirname

cd .. cd mkdir rmdir cp
dirname dirname

creates new directory dirname removes empty directory dirname makes a copy of filename with the name newname copies filename in directory one tier above to current directory giving it the same name renames filename to newname (mv stands for move) displays contents of filename on screen displays filename contents one screen at a time (Enter key scrolls through file by line; space bar scrolls through by screen) displays first 10 lines of filename on screen

filename newname

cp ../filename . mv
filename newname filename

cat

more head

filename

filename

tail rm

filename

displays last 10 lines of filename on screen deletes filename


without double check

filename

(rm stands for remove)

grep ./

string filename

displays lines from filename containing string on screen runs job filename in the background sends job filename to queue (where qsub is a submission script file in your bin directory) lists jobs running on queue lists only your jobs deletes job with number job# from queue lists processes you have running lists all processes kills process with ID number pid# kills (with the sure kill signal) process with ID number pid# kills all processes you have running and logs you off displays manual page for command commandname lists manual pages for commands related to
keyword

filename

&

qsub

filename

qstat qstat -a qdel ps ps -ef kill


pid# pid# job#

kill -9

kill -kill 0 man


commandname keyword

man -k lp

filename ### filename group rwx all rwx

prints filename on printer in room 4241 changes read, write, execute mode of filename Example: to set the privileges for filename so that the owner has the ability to read, overwrite and execute the file, the group has the ability to read and execute the file, and everyone else has no access to the file, use the command chmod 750 filename. kills current operation delete (always works even when delete key doesnt) logout

chmod
owner rwx

4 2 1

4 2 1

4 2 1

sum numbers for each of the three categories of user Ctrl+c Ctrl+h Ctrl+d UNIX: vi Editor

EX. NO. :

DATE : AIM: To study the basic of vi Editor. UNIX: vi Editor General Introduction The vi editor (short for visual editor) is a screen editor which is available on almost all Unix systems. Once you have learned vi, you will find that it is a fast and powerful editor. vi has no menus but instead uses combinations of keystrokes in order to accomplish commands. There are three basic modes of vi:
Command mode

This is the default when you enter vi. In command mode, most letters, or short sequences of letters, that you type will be interpreted as commands, without explicitly pressing Enter . If you press Esc when youre in command mode, your terminal will beep at you. This is a very good way to tell when youre in command mode.
Insert mode

In insert mode, whatever you type is inserted in the file at the cursor position. Type a (lowercase letter a, for append) to enter insert mode from command mode; press Esc to end insert mode, and return to command mode.
Line mode

Use line mode to enter line oriented commands. To enter line mode from command mode, type a colon ( : ). Your cursor moves to the bottom of the screen, by a colon prompt. Type a line mode command, then press Enter. Any sensible command from the Unix line editor ex will work, and a few are good to know about. These commands are indicated in this handout by a colon in front of the command. Each time you use a line mode command, you must type a colon to enter line mode, then type the command by the colon prompt at the bottom of the screen, then press Enter when you finish typing the command. (The search commands starting with / and ? work similarly.
General Command Information

As mentioned previously, vi uses letters as commands. It is important to note that in general vi commands: are case sensitive lowercase and uppercase command letters do different things are not displayed on the screen when you type them generally do not require a Return after you type the command. You will see some commands which start with a colon (:). These commands are ex commands which are used by the ex editor. ex is the true editor which lies underneath vi in other words, vi is the interface for the ex editor. The vi editor has three modes: 1) command mode, 2) last-line mode, and 3) input mode. Note: The vi editor does not understand the mouse and only understands commands typed from the keyboard. The UNIX text editor, vi, is used by the UNIX administrator (superuser) to create or edit files. Usually these files require configuration information to host certain UNIX servers or I/O functions. Users can start a vi session by typing vi followed by the file name to be created or edited. In our example, we will create a file named linux. The vi editor will create a new file if the file does not already exist. If a file, in our example linux, does exist in our current directory, the vi editor will open linux for editing. Once we type vi

linux and hit the enter key, we are placed in command mode where communications is directed to the vi editor. Type the following command to initiate our vi session: vi linux <enter> You will be presented with a full, empty screen. Each line will begin with the tilde (~) symbol. The tilde is vis way of indicating that a line is empty in its edit register. The vi editor uses the first 24 of 25 lines viewable on the terminal screen as insert lines. The last line (line number 25) is used for entering commands to the shell and is referred to as the last-line mode. In this space, our filename appears with the message linux and [new file]. When you open a file, the cursor is placed at the top, left corner of the screen. You are said to be in Command Mode. You can issue commands that act upon the text in the file. In the command mode, pressing a key does not show on the screen, but performs a function like moving the cursor to the next line or deleting a line. The command mode cannot be used to enter text. The keyboard space bar moves the cursor ahead one space at a time. The keyboard backspace key moves the cursor backwards one space at a time. To enter text, you must be in Insert Mode. There are ten (10) keys that place you in Insert Mode. Each key has an upper case and a lower case function. The quickest way to learn insert mode is to simply type a lower case i for insert. The following chart the shows 10 ways to enter Insert Mode:
Command

i
I a A o O rch R s S

Function Inserts text to left of the cursor. Existing text shifted right Inserts text at beginning of line. Existing text shifted right Appends text to right of the cursor. Existing text shifted right Inserts text at end of the line Opens a line below the current line the cursor is on Opens line above the current line the cursor is on Replaces a single character (ch) under cursor. No [Esc] required Replaces text from cursor to right. Existing text overwritten Replaces character under cursor with any number of characters Replaces entire line that cursor is on

Important! To exit input mode, you must enter the [Esc] key.

The Last-line Mode is opened by pressing and holding the [shift] key and the [:] colon key simultaneously ([shift] + [colon]). If this fails to place you in Last-line mode, hit the escape <esc> key to move from insert mode to command mode. Upon entering this dual key-stroke combination, the cursor moves to the bottom, left corner of the screen and appears as a colon : . This mode allows the vi user to send commands to the actual UNIX shell. Commands used in the Last-line Mode write the contents of a file to the hard drive, reads contents into the existing file from another file, or quits the vi session. Once a

command has been executed, the cursor moves back to the top, left of the screen. To move back to the top of the screen without executing a command, press the <esc> key. While in last-line mode (where we communicate with the shell and not with the vi editor), the following commands can be executed: Last-line commands used to communicate with the UNIX/Linux shell: Function :w Writes file to hard drive and remains in editing mode Writes file and quits editing mode :wq Writes file and quits editing mode :q Quits editing mode with no changes made to file :q! Forces vi to quit and exits to the command-line shell :w >> note1 Appends current file contents to new file, note1 :r <filename> Reads contents of <filename> into current vi file :n1, n2w customer.sql Writes selected lines, n1 through n2, to customer.sql :.w customer.sql Writes current line [.] to file, customer.sql :$w customer.sql Writes last line [$] to file, customer.sql :! Used to execute a shell command without leaving vi [Crtl-z] Suspends current session and escaped to UNIX shell
Command

Lets begin our next lab exercise by opening an empty file named linux and manually inserting a script entitled, The Linux Story.
Note: The vi editor does not perform an automatic word-wrap, so hit the <enter> key at the end of a normal line (80 characters). This will help with editing features, perform a carriage feed, and begin a new line.

While you are entering The Linux Story, periodically write the file to the hard drive by typing <esc> and then entering the last-line command <SHIFT> + <:>. A colon appears at the bottom, left of the screen. Enter w and press <enter>. If a file fails to write, use <SHIFT>+<:> plus the ! symbol, such as :w! . The bang sign ( ! ) forces a write to the hard drive. The linux Story Linus Torvalds, creator of the Linux Operating System, was born Dec 28, 1969 in Helsinki, Finland. His grandfather had a Commodore VIC-20 that he had the opportunity to work with; by age ten he was already dabbling in programming. He enrolled at the University of Helsinki in 1989, and in 1990 he took his first C programming class. ( after entering the above information, write and quit vi by :wq! )
Note: Since

vi places its text in a buffer, it is wise to frequently write a file to disk at specific intervals. This will prevent data loss if the system fails or an incorrect key combination closes our file. Saving the buffer is performed in the last-line mode. Every command in this mode is preceded by a : (colon) and followed by the <enter> key. To save, enter last-line mode and then enter w (for write) and press the enter key.

Opening a new line: place the cursor on the main title, The Linux Story, and open a new line underneath the title by typing a lower case o. You can now enter, By Anonymous. Since the o placed you in the Insert Mode, you must enter [Esc] to return to the Command Mode. Replacing text: replacing text can be done by one character at a time or a string of characters at a time. Use the r, R, s, and S keys. Place the cursor over the l in linux in the first line. Now hit the r key and then type an upper case L. This changes the word linux to Linux.
Note: vi momentarily switches from the Command Mode to the Insert Mode when r is pressed and back to the Command Mode as soon as the character is entered.

Replacing a word: replacing a word can be done using the cw (change word) command. Place the cursor on the letter D where Linus birthday is shown as Dec. Now, type cw. Dec should disappear. Now type December. This changes the word Dec to December. Press the Escape <esc> key. Replacing a single character with multi-character text: use the s key after placing the cursor at the beginning of the word string to be replaced. Replacing an entire line with another line: use the S key after placing the cursor at the beginning, or at any point, of the sentence to be replaced. Determining your current cursor position by line number: use the [Ctrl-g] key to see what line number your cursor is on. The line number is displayed in the last-line position at the bottom right of the screen. Placing the cursor on a predetermined line: Use the G key followed by a line number to place the cursor on a particular line (While in Command Mode enter, 12G to go to the 12th line). Moving the cursor from the beginning of or to the end of the current line: enter a caret (^) to move to the beginning of the current line or enter a dollar ($) to move to the end of the current line. Moving around in a document: Use the up-down, right-left keyboard keys or use b, e, and w to move between words in a sentence. Deleting a character: use x to delete a character. Deleting an entire line: use dd to delete the entire current line. Undoing a mistake: Use the u to undo a key sequence mistake. Searching for a pattern string of characters: use the / (forward slash) followed by the pattern being searched for. To find the first occurrence of the word Linux, type /Linux and press <Enter>. Using ? instead of / will search backwards. Searching and replacing a string pattern: enter the last-line mode and type: 1,$s/pattern1/pattern2/ where 1 indicates the first line of the file and $ indicates the last line of the file. Pattern1 is the string searched for and pattern2 is the string replacing pattern1. To practice this important editing function, enter the Last-Line Mode [:] and type 1,$s/Story/Song/ and [Enter]. Undo Song and change it back to Story by hitting [esc] and then u. Exit out of vi by entering the last-line mode and typing wq! Name the three modes used with the vi text editor. List the 10 ways to be placed in the Insert Mode using vi.

Show the key-stoke sequence used to enter the Last-Line Mode using vi. In vi, which letter can be used to undo an editing mistake? In vi, what does the dd command do?
Editing Files

1. Log on to the system. 2. At the moment we need to create a new directory and then change to it. Issue the command:
mkdir /lab

Then change to the /lab directory. 3. Note your location. Prompt: ____________________________________________________________ Full working Path: ____________________________________________________ 4. Issue the command touch testfile. 5. Issue the command ls l testfile. Record the results of the display. Filename: ___________________________________________________________ File Attributes: ________________________________________________________ File Owner: ___________________________________________________________ File Group: ___________________________________________________________ File Size: _____________________________________________________________ File Creation Date: _____________________________________________________ 6. Issue the command vi testfile2. You have now opened the vi editor to a new file called testfile2. You are in the command mode. Enter the command the letter i . You are now in the insert mode, able to type in text. 7. Enter the following text:
Name: {your name} IP Address: {your system IP address} File: testfile2 using vi I am a great student and am working hard to prove myself as an A student!

8. Strike the ESC key. This places you into the command mode. If you hear additional beeps from the (small) computer speaker, you are already in the command mode.

9. Enter the command :w . This saves the text to the hard drive. 10. Enter the command :q . This exits the vi editor. 11. Enter the command vi testfile3. 12. Enter the following text:
Name: {your name} IP Address: {your system IP address} File: testfile3 using pico My classmates are great people too.

13. List the contents of the directory. Record the results. 1. Log onto the system. 2. What is the path? ______________________________________________ 3. Change to the /lab directory ( create the lab directory) 4. Record the full path of the directory. (if it is not /lab, you made an error) ________________________________________________________________________ 5. Using the vi text editor, create a new file called test1. 6. Insert into the test1 file the following:
Test file 1. My name is {your name}. I am learning Linux.

7. Save the file (look at the bottom of the screen to WriteOut the file). Then exit. 8. Using the vi text editor, create a new file called test2. 9. Insert into the test2 file the following:
Test file 2. Created by {your name}. This is a simple file.

10. Save the file and exit. 11. Issue the command cat test1 . Record what you observe.

________________________________________________________________________ 12. Issue the command cat test2 . Record what you observe. __________________________________________________________ 13. Issue the command cat test1 test2 . Record what you observe. ________________________________________________________________________ 14. Issue the command more test1 . Record what you observe. ________________________________________________________________________ 15. Issue the command history | more . Scroll down through the file. Try to scroll up. (Note that only the space bar will scroll through the file. The | , or pipe, will be dicussed later.) Record what you observe. ________________________________________________________________________ 16. Issue the command less test2 . Record what you observe. ________________________________________________________________________ 17. Issue the command history | less . Scroll up and down through the file using both the Up / Down Arrow keys and the Page Up / Down keys. 18. Issue the command history | head . Record what you observe. ________________________________________________________________________ 19. Issue the command history | tail . Record what you observe. ________________________________________________________________________ 20. Issue the command history | tac . Record what you observe. ________________________________________________________________________ 21. Issue the command cat > test3 and hit ENTER. 22. Enter the following lines:
Test file 3. Created by {your name}. Created using the cat command. {on this line, enter a CTRL-D}

23. Display the file with the cat command, record your observations. ________________________________________________________________________
Case Study

1. Test to see if the two files (test1 and test2) may be displayed by different display utilities. Discuss your findings. 2. Compare the differences between the output of the following: cat E testfile3 cat n testfile3 hexdump c testfile3 od ta testfile3 od tc testfile3 xxd testfile3 Record your observations:
Moving One Character at a Time

Try using your direction keys to move up, down, left and right in your file. Sometimes, you may find that the direction keys dont work. If that is the case, to move the cursor one character at the time, you may use the h, j, k, and l keys. These keys move you in the following directions:
h j left one space down one space l k right one space up one space

If you move the cursor as far as you can in any direction, you may see a screen flash or hear a beep. Moving among Words and Lines While these four keys (or your direction keys) can move you just about anywhere you want to go in your file, there are some shortcut keys that you can use to move a little more quickly through a document. To move more quickly among words, you might use the following:
w b moves the cursor forward one word moves the cursor backward one word (if in the middle of a word, b will move you to the beginning of the current word). moves to the end of a word.

To build on this further, you can precede these commands with a number for greater movement. For example, 5w would move you forward five words; 12b would move you backwards twelve words. [You can also use numbers with the commands mentioned earlier. For example, 5j would move you down 5 characters.] Shortcuts Two short cuts for moving quickly on a line include the $ and the 0 (zero) keys. The $ key will move you to the end of a line, while the 0 will move you quickly to the beginning of a line. Screen Movement To move the cursor to a line within your current screen use the following keys:

H M L ctrl-f ctrl-b ctrl-u ctrl-d

moves the cursor to the top line of the screen. moves the cursor to the middle line of the screen. moves the cursor to the last line of the screen. scrolls down one screen scrolls up one screen scrolls up a half a screen scrolls down a half a screen

To scroll through the file and see other screens use:

Two other useful commands for moving quickly from one end to the other of a document are G to move to the end of the file and 1G to move to the beginning of the file. If you precede G with a number, you can move to a specific line in the document (e.g. 15G would move you to line 15). Moving by Searching One method for moving quickly to a particular spot in your file is to search for specific text. When you are in command mode, type a / followed the text you wish to search for. When you press Return, the cursor will move to the first incidence of that string of text. You can repeat the search by typing n or search in a backwards direction by using N. Deleting (or Cutting) Characters, Words, and Lines To delete a character, first place your cursor on that character. Then, you may use any of the following commands:
x X dw dd D deletes the character under the cursor. deletes the character to the left of your cursor. deletes from the character selected to the end of the word. deletes all the current line. deletes from the current character to the end of the line.

Preceding the command with a number will delete multiple characters. For example, 10x will delete the character selected and the next 9 characters; 10X will delete the 10 characters to the left of the currently selected character. The command 5dw will delete 5 words, while 4dd deletes four lines. Pasting Text using Put Often, when you delete or cut text, you may wish to reinsert it in another location of the document. The Put command will paste in the last portion of text that was deleted since deleted text is stored in a buffer. To use this command, place the cursor where you wish the deleted text to appear. Then use p to reinsert the text. If you are inserting a line or paragraph use the lower case p to insert on the line below the cursor or upper case P to place in on the line above the cursor. Copying Text with Yank If you wish to make a duplicate copy of existing text, you may use the yank and put commands to accomplish this function. Yank copies the selected text into a buffer and

holds it until another yank or deletion occurs. Yank is usually used in combination with a word or line object such as the ones shown below:
yw yy copies a word into a buffer (7yw copies 7 words) copies a line into a buffer (3yy will copy 3 lines)

Once the desired text is yanked, place the cursor in the spot in which you wish to insert the text and then use the put command (p for line below or P for line above) to insert the contents of the buffer. Replacing or Changing Characters, Words, and Lines When you are using the following commands to replace text, you will be put temporarily into insert mode so that you can change a character, word, line, or paragraph of text.
r replaces the current character with the next character you enter/type. Once you enter the character you are returned to command mode. puts you in overtype mode until you hit ESC which will then return you to command mode. changes and replaces the current word with text that you type. A dollar sign marks the end of the text you're changing. Pressing ESC when you finish will return you to command mode.

cw

Inserting a Blank Line To insert a blank line below the line your cursor is currently located on, use the o key and then hit ESC to return to the command mode . Use O to insert a line above the line the cursor is located on. Appending Text You can use the append command to add text at any place in your file. Append (a) works very much like Insert (i) except that it insert text after the cursor rather than before it. Append is probably used most often for adding text to the end of a line. Simply place your cursor where you wish to append text and press a. Once youve finished appending, press ESC to go back to command mode. Joining Lines Since vi does not use automatic word wrap, it is not unusual in editing lines to end up with lines that are too short and that might be improved if joined together. To do this, place your cursor on the first line to be joined and type J. As with other commands, you can precede J with a number to join multiple lines (4J joins 4 lines). Undoing Be sure to remember this command. When you make a mistake you can undo it. DO NOT move the cursor from the line where you made the change. Then try using one of the following two commands:
u undoes the last change you made anywhere in the file. will "undo the undo". undoes all recent changes to the current line. from the line to recover the original line. Using u again

You can not have moved

Closing and Saving Files When you edit a file in vi, you are actually editing a copy of the file rather than the original. The following sections describe methods you might use when closing a file, quitting vi, or both. Quitting and Saving a File

The command ZZ (notice that it is in uppercase) will allow you to quit vi and save the edits made to a file. You will then return to a Unix prompt. Note that you can also use the following commands:
:w to save your file but not quit vi (this is good to do periodically in case of machine crash!). to quit if you haven't made any edits. to quit and save edits (basically the same as ZZ).

:q :wq

Quitting without Saving Edits Sometimes, when you create a mess (when you first start using vi this is easy to do!) you may wish to erase all edits made to the file and either start over or quit. To do this, you can choose from the following two commands:
:e! :q! reads the original file back in so that you can start over. wipes out all edits and allows you to exit from vi.

EX. NO. : DATE : SHELL PROGRAMMING

A Linux shell is a command language interpreter, the primary purpose of which is to translate the command lines typed at the terminal into system actions. The shell itself is a program, through which other programs are invoked What is a shell script ? A shell script is a file containing a list of commands to be executed by the Linux shell. shell script provides the ability to create your own customized Linux commands Linux shell have sophisticated programming capabilities which makes shell script powerful Linux tools How to work with shell?
Step1:

In the dollar prompt type $ vi < file name> Where vi is the editor ,it will open a new window in which you can type the program you want
Step2:

After typing the program press ESC and : together then at the bottom of the vi screen you can see i.e. prompt .In that type as wq which means write and quit i.e. the content what is typed will be written and saved into that file that has been created
Step3:

Once wq is typed at the : prompt ,the prompt would change to $ symbol in which you have to do the following $ sh < file name > Sh command is used to run the shell program <file name> is the name of the file for which the output is to be got Basically to print a text in the your shell programs echo command is used Identifying System Variables The shell is the primary agency that determines a users environment. Determine which shell that you are using by typing the following command:
echo $SHELL

Write the output 2. PATH is one of the important system variables. It provides the shell with a searchable path to explore in order to find commands stored in various directories in the file system structure. Once the command entered on the command line is found, the shell can interpret the command. Determine your shells path settings.
echo $PATH

Write your output 3. HOME stores the users home directory after a successful login. Each users home directory is named after their user account name. Determine your home directory settings. echo $HOME Write your output 4. LOGNAME is the variable that holds your username. echo $LOGNAME Write your output 5. MAIL provides UNIX with an absolute path to each users mailbox. Determine your MAIL settings. echo $MAIL Write your output 6. MAILCHECK determines how often the shell checks for the arrival of new mail. MAILCHECK is set for 600 seconds by default and can be modified by the super user. Determine your MAILCHECK settings. echo $MAILCHECK Write your output 7. PS1 is the primary prompt string for the shell. Determine your PS1 settings echo $PS1 Write your output 8. PS2 is the secondary string for the shell. If the shell does not have enough information on the command line to interpret the command, it presents the user with the secondary prompt. The user can finish the command line on the secondary prompt line and then hit the enter key. Determine your PS2 settings echo $PS2 Write your output

9. CDPATH is the variable search path used by the cd command. CDPATH works the same as PATH except it locates directories and not shell commands. Determine your CDPATH setting. echo $CDPATH Write your output TERM is the variable that indicates the type of terminal you are using. Determine your TERM setting. echo $TERM Write your output
SYNTAX FOR LOOPING STATEMENTS IF THEN-ELSE CONSTRUCT

if [ condition] then <action> else statements fi (end of if)


WHILE

while <condition> do <statements> Done


CASE

Case $<option> in <statements>;; <statements>;; .. . . . *) <error statement>;; esac


For loop

For(( intitialization;condition;incremetation/decrementation))

AREA OF THE TRIANGLE


Aim:

To write a shell script to find the area of the triangle


Algorithm:

Step1 : get the base and height Step2 : calculate the area Step3 : Display the result

SQUARE OF THE NUMBER


Aim:

To write a shell script which accepts a number less than 50 and display its square
Algorithm:

Step1 : Get the number Step2 : Check if the number is less than 50. If the number is less than 50 then compute the square of the number Step3 : Display the result. ODD NUMBER GENERATION
Aim:

To write a shell script display a list of odd numbers below a given number
Algorithm:

Step1 : Get the limit Step2 : Initialize count to 1 Step3 : Display the list of odd numbers by incrementing count by 2 until the given limit.
FIBONACCI SERIES Aim:

To write a shell script to print the Fibonacci series


Algorithm:

Step1 : get the limit Step2 : add the first two numbers to produce the third number Step3 : add the second and third number to get the fourth number and so on Step4 : display the series
STUDENT MARKS Aim:

To write a shell script to read the marks of 5 subjects from user and calculate the average and grade
Algorithm:

Step1 : Read the Marks Step2 : calculate the average Step3 : if the average is greater than 75 then assign grade as Distinction if the average is between 60 to 75 then assign grade as First Class if the average is between 50 to 59 then assign grade as Second Class else then assign grade as Fail VOWEL OR NOT
Aim:

To write a shell script to find whether a given character is vowel or constant


Algorithm:

Step1 : Read the characters Step2 : If it matches with any of the vowels a,e,i,o,u print it as vowel Step3 : Otherwise print it as a constant
MENU DRIVEN PROGRAM Aim:

To write a shell script for a menu driven program.


Algorithm:

Step1 : Get the option, use case statement to display the various functions Step2 : first option to view the content of the home directory

Second option to list the users who have logged Third option to print the present working directory Fourth option to count the words, characters and lines of a file Fifth option to print the type of file Step3 : Display the result according to the option chose PALINDROME CHECKING
Aim:

To write a shell script to check whether the given string is a palindrome or not
Algorithm:

Step1 : read an input string Step2 : find the length of the string Step3 : extract the input string into another variable starting from the last character Step4 : check whether the input string and the reversed string are the same Step5 : if so, display given string is a palindrome else display given string is not a palindrome USER LOGGED IN OR NOT
Aim:

To write a shell script to accept the name of the user and check out if the user has Logged in or not.
Algorithm:

Step1 : accept username from command line Step2 : use grep filter ,extract username from /dev/null file Step3 : check whether the input username is in the /dev/null file .If the username is present in the file,display message as user has logged in else, display the message as user has not logged in COUNT THE ORDINARY FILE AND DIRECTORY
Aim:

To write a shell script to find the number of ordinary files and directory files in the current directory .
Algorithm:

Step1 : Read the directory name Step2 : Check if the number of command line arguments read . Step3 : If the number of arguments read is less than one, then display the message as invalid message Step4 : Check whether the file is ordinary file or directory file[-f or d] Step5 : Using grep filter, extract the number of files and directory files in two variables Step6 : Display the count of files and directory files DISPLAY THE FILE PERMISSION
Aim:

To write a shell script to accept the filenames and display the file permission from the long listing of files
Algorithm:

Step1 : Accept filenames from command line Step2 : In a for loop, using the cut command extract the file permission from the long listing of files Step3 : Display the filenames and their permission.
UPPERCASE CONVERSION Aim:

To write a shell script to convert the content of given files to uppercase letters
Algorithm:

Step1 : Accept filenames to be converted from command line Step2 : Using the tr command to convert the content of file to upper case Step3 : Display the content of converted files FILE MANAGEMENT
Aim:

To write a C program to perform file operations using file descriptor


Algorithm:

Step 1: Get file name from user Step 2: Get the string and find the length of the string Step 3: Open the file in write mode Step 4: Write the string in the file Step 5: Close the file Step 6: Open the file in read mode Step 7: Read the contents of the file and store it in a temporary storage space Step 8: Print the buffer contents on the screen Step 9: Close the file.
PROCESS MANAGEMENT Aim:

To write a C program to create a new process using fork


Algorithm:

Step1 : Create the process using fork() system call Step2 : Check the process id of current process If it is 0 then display as child process and also display the process id of current and parent process Else it is a parent process and display the process id of current process and parent process
IMPLEMENTATION OF UNIX COMMANDS Aim:

To write a C program to implement grep unix commands


Algorithm:

Step1 : Use system function to implement grep unix commands

35 eeeitmech [ cse@localhost cse]$ cat dept|tr " [ a-z]" "

[ A-Z]"CSEECEEEEITMECH13. [ root@localhost root]# pg It displays the output of a command on the screenpage by page. 14. [ root@localhost root]# more To Displays the output page by page [ ece@localhost ece]$ ls | more000000123003004500711010010001101 36 121221231234123456789012413213314315918--More Press Enter to see the next page. 15. [ root@localhost root]# cmp Compare any two files, including binary files. Ittakes two filenames as arguments. [ ece@localhost ece]$ cat > collegediva vh2346 jan vh2345kavi vh2387naru vh2876subi vh2498 [ ece@localhost ece]$ cat > college1DHONI VH2876RAINA VH2398KAIF VH2657 37 HARI VH2765SRI VH4567 [ ece@localhost ece]$ cmp college college1college college1 differ: byte 1, line 1 [ ece@localhost ece]$ cat college [ ece@localhost ece]$ cmp -b college college1college college1 differ: byte 1, line 1 is 144 d 104 D16. [ root@localhost root]# diff Files are compared on line by line basis. [ ece@localhost ece]$ cat collegediva vh2346 jan vh2345kavi vh2387naru vh2876subi vh2498 [ ece@localhost ece]$ cat college1dhoni vh2387raina vh2389subi vh2498sachin vh2564diva vh2346 [ ece@localhost ece]$ diff -e college college11,5cdhoni vh2387raina vh2389subi vh2498 38 sachin vh2564diva vh2346 [ ece@localhost ece]$ diff -b college college11,4c1,2< diva vh2346< jan vh2345< kavi vh2387< naru vh2876---> dhoni vh2387> raina vh23895a4,5> sachin vh2564> diva vh234617. [ root@localhost root]# comm

Compare and displays lines common as well asunique to two files. [ ece@localhost ece]$ comm -1 college college1dhoni vh2387raina vh2389subi vh2498sachin vh2564diva vh2346 [ ece@localhost ece]$ comm -13 college college1dhoni vh2387

63 SHELL PROGRAM: echo "Enter a Number"read ni=`expr $n - 1`t=0while [ $i -ge 2 ]dop=`expr $n % $i`if [ $p -eq 0 ]thent=`expr $t + 1`fii=`expr $i - 1`doneif [ $t -gt 0 ]thenecho "The Number $n is not a Prime Number" 64 elseecho "The Number $n is a Prime Number"fi SAMPLE OUTPUT: [root@localhost Shell]# sh prime.shEnter a Number2The Number 2 is a Prime Number[root@localhost Shell]# sh prime.shEnter a Number4The Number 4 is not a Prime Number RESULT:

65 Thus the Shell Program to check if the given number is prime or not, was executed andthe output was verified. SUMS OF DIGITS OF AN INTEGEREx. No. 13 AIM: To write a Shell Program to calculate the sum of digits of an Integer. ALGORITHM: Step 1: Start Step 2: Read the Integer as num Step 3: Initialize the value of sum=0. Step 4: While the value of num is greater than 0, solve the following expressions. Step 5: Find the remainder of num by 10 and store in y Step 6: Add sum with y and store it in sum Step 7: Divide num by 10 and store the value in num Step 7: Close the while loop Step 8: Print the Result Step 9: Stop SHELL PROGRAM: echo "Enter a

You might also like