




























































































Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Linx Unix tutorial and also ubuntu operating system.
Typology: Lecture notes
1 / 114
This page cannot be seen from the preview
Don't miss anything!





























































































Unix is a computer Operating System which is capable of handling activities from multiple users at the same time. The development of Unix started around 1969 at AT&T Bell Labs by Ken Thompson and Dennis Ritchie. This tutorial gives a very good understanding on Unix.
This tutorial has been prepared for the beginners to help them understand the basics to advanced concepts covering Unix commands, Unix shell scripting and various utilities.
We assume you have adequate exposure to Operating Systems and their functionalities. A basic understanding on various computer concepts will also help you in understanding the various exercises given in this tutorial.
If you are willing to learn the Unix/Linux basic commands and Shell script but you do not have a setup for the same, then do not worry — The CodingGround is available on a highend dedicated server giving you real programming experience with the comfort of singleclick execution. Yes! It is absolutely free and online.
The Unix operating system is a set of programs that act as a link between the computer and the user. The computer programs that allocate the system resources and coordinate all the details of the computer's internals is called the operating system or the kernel. Users communicate with the kernel through a program known as the shell. The shell is a command line interpreter; it translates commands entered by the user and converts them into a language that is understood by the kernel.
Here is a basic block diagram of a Unix system −
Login Unix When you first connect to a Unix system, you usually see a prompt such as the following − login: To log in
Changing password for amrood (current) Unix password:****** New UNIX password:******* Retype new UNIX password:******* passwd: all authentication tokens updated successfully $ Note − We have added asterisk (*) here just to show the location where you need to enter the current and new passwords otherwise at your system. It does not show you any character when you type. Listing Directories and Files All data in Unix is organized into files. All files are organized into directories. These directories are organized into a tree-like structure called the filesystem. You can use the ls command to list out all the files or directories available in a directory. Following is the example of using ls command with - l option. $ ls - l total 19621 drwxrwxr-x 2 amrood amrood 4096 Dec 25 09:59 uml
5 reboot Reboots the system 6 shutdown Shuts down the system You typically need to be the super user or root (the most privileged account on a Unix system) to shut down the system. However, on some standalone or personally-owned Unix boxes, an administrative user and sometimes regular users can do so.
In this chapter, we will discuss in detail about file management in Unix. All data in Unix is organized into files. All files are organized into directories. These directories are organized into a tree-like structure called the filesystem. When you work with Unix, one way or another, you spend most of your time working with files. This tutorial will help you understand how to create and remove files, copy and rename them, create links to them, etc. In Unix, there are three basic types of files −
To list the files and directories stored in the current directory, use the following command − $ls Here is the sample output of the above command − $ls bin hosts lib res. ch07 hw1 pub test_results ch07.bak hw2 res.01 users docs hw3 res.02 work The command ls supports the - l option which would help you to get more information about the listed files −
$ls - l total 1962188 drwxrwxr-x 2 amrood amrood 4096 Dec 25 09:59 uml
To list the invisible files, specify the - a option to ls − $ ls - a
. .profile docs lib test_results .. .rhosts hosts pub users .emacs bin hw1 res.01 work .exrc ch07 hw2 res. .kshrc ch07.bak hw3 res. $ - Single dot (.) − This represents the current directory. - Double dot (..) − This represents the parent directory.
You can use the vi editor to create ordinary files on any Unix system. You simply need to give the following command − $ vi filename The above command will open a file with the given filename. Now, press the key i to come into the edit mode. Once you are in the edit mode, you can start writing your content in the file as in the following program − This is unix file....I created it for the first time..... I'm going to save this content in this file. Once you are done with the program, follow these steps −
You can edit an existing file using the vi editor. We will discuss in short how to open an existing file − $ vi filename Once the file is opened, you can come in the edit mode by pressing the key i and then you can proceed by editing the file. If you want to move here and there inside a file, then first you need to come out of the edit mode by pressing the key Esc. After this, you can use the following keys to move inside a file −
So using the above keys, you can position your cursor wherever you want to edit. Once you are positioned, then you can use the i key to come in the edit mode. Once you are done with the editing in your file, press Esc and finally two keys Shift + ZZ together to come out of the file completely.
You can use the cat command to see the content of a file. Following is a simple example to see the content of the above created file − $ cat filename This is unix file....I created it for the first time..... I'm going to save this content in this file. $ You can display the line numbers by using the - b option along with the cat command as follows − $ cat - b filename 1 This is unix file....I created it for the first time..... 2 I'm going to save this content in this file. $
You can use the wc command to get a count of the total number of lines, words, and characters contained in a file. Following is a simple example to see the information about the file created above − $ wc filename 2 19 103 filename $ Here is the detail of all the four columns −
To make a copy of a file use the cp command. The basic syntax of the command is − $ cp source_file destination_file Following is the example to create a copy of the existing file filename. $ cp filename copyfile
In this chapter, we will discuss in detail about directory management in Unix. A directory is a file the solo job of which is to store the file names and the related information. All the files, whether ordinary, special, or directory, are contained in directories. Unix uses a hierarchical structure for organizing files and directories. This structure is often referred to as a directory tree. The tree has a single root node, the slash character ( / ), and all other directories are contained below it.
The directory in which you find yourself when you first login is called your home directory. You will be doing much of your work in your home directory and subdirectories that you'll be creating to organize your files. You can go in your home directory anytime using the following command − $cd ~ $ Here ~ indicates the home directory. Suppose you have to go in any other user's home directory, use the following command − $cd ~username $ To go in your last directory, you can use the following command − $cd - $
Directories are arranged in a hierarchy with root (/) at the top. The position of any file within the hierarchy is described by its pathname. Elements of a pathname are separated by a /. A pathname is absolute, if it is described in relation to root, thus absolute pathnames always begin with a /. Following are some examples of absolute filenames. /etc/passwd /users/sjones/chem/notes /dev/rdsk/Os A pathname can also be relative to your current working directory. Relative pathnames never begin with /. Relative to user amrood's home directory, some pathnames might look like this − chem/notes personal/res To determine where you are within the filesystem hierarchy at any time, enter the command pwd to print the current working directory −
$pwd /user0/home/amrood $
To list the files in a directory, you can use the following syntax − $ls dirname Following is the example to list all the files contained in /usr/local directory − $ls /usr/local X11 bin gimp jikes sbin ace doc include lib share atalk etc info man ami
We will now understand how to create directories. Directories are created by the following command − $mkdir dirname Here, directory is the absolute or relative pathname of the directory you want to create. For example, the command − $mkdir mydir $ Creates the directory mydir in the current directory. Here is another example − $mkdir /tmp/test-dir $ This command creates the directory test-dir in the /tmp directory. The mkdir command produces no output if it successfully creates the requested directory. If you give more than one directory on the command line, mkdir creates each of the directories. For example, − $mkdir docs pub $ Creates the directories docs and pub under the current directory.
We will now understand how to create parent directories. Sometimes when you want to create a directory, its parent directory or directories might not exist. In this case, mkdir issues an error message as follows − $mkdir /tmp/amrood/test mkdir: Failed to make directory "/tmp/amrood/test"; No such file or directory
$mv mydir yourdir $
The filename. (dot) represents the current working directory; and the filename .. (dot dot) represents the directory one level above the current working directory, often referred to as the parent directory. If we enter the command to show a listing of the current working directories/files and use the - a option to list all the files and the - l option to provide the long listing, we will receive the following result. $ls - la drwxrwxr-x 4 teacher class 2048 Jul 16 17.. drwxr-xr-x 60 root 1536 Jul 13 14: .. ---------- 1 teacher class 4210 May 1 08:27 .profile
In this chapter, we will discuss in detail about file permission and access modes in Unix. File ownership is an important component of Unix that provides a secure method for storing files. Every file in Unix has the following attributes −
While using ls - l command, it displays various information related to file permission as follows − $ls - l /home/amrood
The permissions of a file are the first line of defense in the security of a Unix system. The basic building blocks of Unix permissions are the read , write , and execute permissions, which have been described below − Read Grants the capability to read, i.e., view the contents of the file. Write Grants the capability to modify, or remove the content of the file. Execute User with execute permissions can run a file as a program.
Directory access modes are listed and organized in the same manner as any other file. There are a few differences that need to be mentioned − Read Access to a directory means that the user can read the contents. The user can look at the filenames inside the directory. Write Access means that the user can add or delete files from the directory. Execute Executing a directory doesn't really make sense, so think of this as a traverse permission. A user must have execute access to the bin directory in order to execute the ls or the cd command.
To change the file or the directory permissions, you use the chmod (change mode) command. There are two ways to use chmod — the symbolic mode and the absolute mode. Using chmod in Symbolic Mode The easiest way for a beginner to modify file or directory permissions is to use the symbolic mode. With symbolic permissions you can add, delete, or specify the permission set you want by using the operators in the following table.
3 Execute and write permission: 1 (execute) + 2 (write) = 3 - wx 4 Read permission r-- 5 Read and execute permission: 4 (read) + 1 (execute) = 5 r-x 6 Read and write permission: 4 (read) + 2 (write) = 6 rw- 7 All permissions: 4 (read) + 2 (write) + 1 (execute) = 7 rwx Here's an example using the testfile. Running ls - 1 on the testfile shows that the file's permissions are as follows − $ls - l testfile
While creating an account on Unix, it assigns a owner ID and a group ID to each user. All the permissions mentioned above are also assigned based on the Owner and the Groups. Two commands are available to change the owner and the group of files −
The chown command changes the ownership of a file. The basic syntax is as follows − $ chown user filelist The value of the user can be either the name of a user on the system or the user id (uid) of a user on the system. The following example will help you understand the concept −
$ chown amrood testfile $ Changes the owner of the given file to the user amrood. NOTE − The super user, root, has the unrestricted capability to change the ownership of any file but normal users can change the ownership of only those files that they own.
The chgrp command changes the group ownership of a file. The basic syntax is as follows − $ chgrp group filelist The value of group can be the name of a group on the system or the group ID (GID) of a group on the system. Following example helps you understand the concept − $ chgrp special testfile $ Changes the group of the given file to special group.
Often when a command is executed, it will have to be executed with special privileges in order to accomplish its task. As an example, when you change your password with the passwd command, your new password is stored in the file /etc/shadow. As a regular user, you do not have read or write access to this file for security reasons, but when you change your password, you need to have the write permission to this file. This means that the passwd program has to give you additional permissions so that you can write to the file /etc/shadow. Additional permissions are given to programs via a mechanism known as the Set User ID (SUID) and Set Group ID (SGID) bits. When you execute a program that has the SUID bit enabled, you inherit the permissions of that program's owner. Programs that do not have the SUID bit set are run with the permissions of the user who started the program. This is the case with SGID as well. Normally, programs execute with your group permissions, but instead your group will be changed just for this program to the group owner of the program. The SUID and SGID bits will appear as the letter "s" if the permission is available. The SUID "s" bit will be located in the permission bits where the owners’ execute permission normally resides. For example, the command − $ ls - l /usr/bin/passwd