Some Important Unix Question and Answer

Some Important Unix Question and Answer

  • What is the Architecture of Unix ? Explain with neat diagram?

Unix Architecture:
Here is a basic block diagram of a UNIX system:
The main concept that unites all versions of UNIX is the following four basics:

  • Kernel: The kernel is the heart of the operating system. It interacts with hardware and most of the tasks like memory management, tash scheduling and file management.
  • Shell: The shell is the utility that processes your requests. When you type in a command at your terminal, the shell interprets the command and calls the program that you want. The shell uses standard syntax for all commands. C Shell, Bourne Shell and Korn Shell are most famous shells which are available with most of the Unix variants.
  • Commands and Utilities: There are various command and utilities which you would use in your day to day activities. cp, mv, cat and grep etc. are few examples of commands and utilities. There are over 250 standard commands plus numerous others provided through 3rd party software. All the commands come along with various optional options.
  • Files and Directories: 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.

 

  • What is kernel and use of kernel?

 

  • Kernel: The kernel is the heart of the operating system. It interacts with hardware and most of the tasks like memory management, tash scheduling and file management.

OR
The kernel’s responsibilities include managing the system’s resources (the communication between hardware and software components).[1] Usually as a basic component of an operating system, a kernel can provide the lowest-level abstraction layer for the resources (especially processors and I/O devices) that application software must control to perform its function

  • What is IO multiplexing?

I/O multiplexing means what it says – allowing the programmer to examine and block on multiple I/O streams (or other “synchronizing” events), being notified whenever any one of the streams is active so that it can process data on that stream.
In the Unix world, it’s called select() or poll().
The advantage of IoMultiplexing is that it allows blocking on multiple resources simultaneously, without needing to use polling (which wastes CPU cycles) or multithreading
 

  • Define pipe and applications of pipe with  the help of an example?

A pipe is represented by the | character. It uses the output of the command to the left of it as the input to the command on the right of it.
Example: Say you want to look at all of the processes on your box. You’d run:
Cmd: ps -eaf
but that’s usually a page or more of information, and you want to look at them page-by-page.
Well, the “more” command allows you to look at information page-by-page. We can utilize the pipe to send the output of the “ps -eaf” command into the “more” command and look at all the processes page-by-page. Lookit:
Cmd: ps –eaf | more
 

  • What is search pattern? Explain the procedures  of search patterns?

The grep command supports regular expression pattern. To search multiple words, use following syntax:
grep ‘word1\|word2\|word3’ /path/to/file
In this example, search warning, error, and critical words in a text log file called /var/log/messages, enter:
$ grep ‘warning\|error\|critical’ /var/log/messages
To just match words, add -w swith:
$ grep -w ‘warning\|error\|critical’ /var/log/messages
egrep command can skip the above syntax and use the following syntax:
$ egrep -w ‘warning|error|critical’ /var/log/messages
I recommend that you pass the -i (ignore case) and –color option as follows:
$ egrep -wi –color ‘warning|error|critical’ /var/log/messages

  • Regarding all the commands?

 

  • What is inode? Applications of inode in Unix?

An Inode number points to an Inode. An Inode is a data structure that stores the following information about a file :

  • Size of file
  • Device ID
  • User ID of the file
  • Group ID of the file
  • The file mode information and access privileges for owner, group and others
  • File protection flags
  • The timestamps for file creation, modification etc
  • link counter to determine the number of hard links
  • Pointers to the blocks storing file’s contents

 

  • Define file and explain the any one of the mechanism  of accessing the file?

File ownership is an important component of UNIX that provides a secure method for storing files. Every file in UNIX has the following attributes:

  • Owner permissions: The owner’s permissions determine what actions the owner of the file can perform on the file.
  • Group permissions: The group’s permissions determine what actions a user, who is a member of the group that a file belongs to, can perform on the file.
  • Other (world) permissions: The permissions for others indicate what action all other users can perform on the file.

The Permission Indicators:

While using ls -l command it displays various information related to file permission as follows:

[amrood]$ls -l /home/amrood-rwxr-xr–  1 amrood   users 1024  Nov 2 00:10  myfiledrwxr-xr— 1 amrood   users 1024  Nov 2 00:10  mydir

Here first column represents different access mode ie. permission associated with a file or directory.
The permissions are broken into groups of threes, and each position in the group denotes a specific permission, in this order: read (r), write (w), execute (x):

  • The first three characters (2-4) represent the permissions for the file’s owner. For example -rwxr-xr– represents that onwer has read (r), write (w) and execute (x) permission.
  • The second group of three characters (5-7) consists of the permissions for the group to which the file belongs. For example -rwxr-xr– represents that group has read (r) and execute (x) permission but no write permission.
  • The last group of three characters (8-10) represents the permissions for everyone else. For example -rwxr-xr– represents that other world has read (r) only permission.

File Access Modes:

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 are described below:

Read:

Grants the capability to read ie. 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:

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 to the contents of the directory.

Execute:

Executing a directory doesn’t really make a lot of sense so think of this as a traverse permission.
A user must have execute access to the bin directory in order to execute ls or cd command.

Changing Permissions:

To change file or directory permissions, you use the chmod (change mode) command. There are two ways to use chmod: symbolic mode and 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.

Chmod operator Description
+ Adds the designated permission(s) to a file or directory.
Removes the designated permission(s) from a file or directory.
= Sets the designated permission(s).

Here’s an example using testfile. Running ls -1 on testfile shows that the file’s permissions are as follows:

[amrood]$ls -l testfile-rwxrwxr–  1 amrood   users 1024  Nov 2 00:10  testfile

Then each example chmod command from the preceding table is run on testfile, followed by ls -l so you can see the permission changes:

[amrood]$chmod o+wx testfile[amrood]$ls -l testfile-rwxrwxrwx  1 amrood   users 1024  Nov 2 00:10  testfile[amrood]$chmod u-x testfile[amrood]$ls -l testfile-rw-rwxrwx  1 amrood   users 1024  Nov 2 00:10  testfile[amrood]$chmod g=r-x testfile[amrood]$ls -l testfile-rw-r-xrwx  1 amrood   users 1024  Nov 2 00:10  testfile

Here’s how you could combine these commands on a single line:

[amrood]$chmod o+wx,u-x,g=r-x testfile[amrood]$ls -l testfile-rw-r-xrwx  1 amrood   users 1024  Nov 2 00:10  testfile

Using chmod with Absolute Permissions:

The second way to modify permissions with the chmod command is to use a number to specify each set of permissions for the file.
Each permission is assigned a value, as the following table shows, and the total of each set of permissions provides a number for that set.

Number Octal Permission Representation Ref
0 No permission
1 Execute permission –x
2 Write permission -w-
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 testfile. Running ls -1 on testfile shows that the file’s permissions are as follows:

[amrood]$ls -l testfile-rwxrwxr–  1 amrood   users 1024  Nov 2 00:10  testfile

Then each example chmod command from the preceding table is run on testfile, followed by ls -l so you can see the permission changes:

[amrood]$ chmod 755 testfile[amrood]$ls -l testfile-rwxr-xr-x  1 amrood   users 1024  Nov 2 00:10  testfile[amrood]$chmod 743 testfile[amrood]$ls -l testfile-rwxr—wx  1 amrood   users 1024  Nov 2 00:10  testfile[amrood]$chmod 043 testfile[amrood]$ls -l testfile—-r—wx  1 amrood   users 1024  Nov 2 00:10  testfile

Changing Owners and Groups:

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 Owner and Groups.
Two commands are available to change the owner and the group of files:

  1. chown: The chown command stands for “change owner” and is used to change the owner of a file.
  2. chgrp: The chgrp command stands for “change group” and is used to change the group of a file.

Changing Ownership:

The chown command changes the ownership of a file. The basic syntax is as follows:

[amrood]$ chown user filelist

The value of user can be either the name of a user on the system or the user id (uid) of a user on the system.
Following example:

[amrood]$ chown amrood testfile[amrood]$

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 a any file but normal users can change only the owner of files they own.

Changing Group Ownership:

The chrgp command changes the group ownership of a file. The basic syntax is as follows:

[amrood]$ 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:

[amrood]$ chgrp special testfile[amrood]$

Changes the group of the given file to special group.

SUID and SGID File Permission:

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 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 true for 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 would normally reside. For example, the command

[amrood]$ ls -l /usr/bin/passwd-r-sr-xr-x  1   root   bin  19031 Feb 7 13:47  /usr/bin/passwd*[amrood]$

Which shows that the SUID bit is set and that the command is owned by the root. A capital letter S in the execute position instead of a lowercase s indicates that the execute bit is not set.
If the sticky bit is enabled on the directory, files can only be removed if you are one of the following users:

  • The owner of the sticky directory
  • The owner of the file being removed
  • The super user, root

To set the SUID and SGID bits for any directory try the following:

[amrood]$ chmod ug+s dirname[amrood]$ ls -ldrwsr-sr-x 2 root root  4096 Jun 19 06:45 dirname[amrood]$

 

  • What is directory?

A “directory” is a location where files are kept in a list. For instance, you could create a directory to store all your files for the first lab and call it Lab1. You could create another directory called Lab2 to store your files for the second lab. If you are already familiar with either Apple Macintosh computers or Windows File Manager, just think of Unix directories as being the same as folders.
 

  • Explain inode structure?

The inode pointer structure is a structure adopted by the inode of a file in the Unix File System (UFS) to list the addresses of a file’s data blocks. It is also adopted by many related file systems, including the ext3 file system, popular with Linux users.