GeekInterview.com
  I am new, Sign me up!
 
GeekInterview.com  >  Interview Questions  >  Operating System  >  Shell Scripting
Go To First  |  Previous Question  |  Next Question 
 Shell Scripting  |  Question 18 of 47    Print  
What is INODE?

  
Total Answers and Comments: 8 Last Update: November 03, 2007     Asked by: Beena 
  
 Sponsored Links

 
 Best Rated Answer

No best answer available. Please pick the good answer available or submit your answer.
September 23, 2005 04:01:44   #1  
sridhar_madadi Member Since: September 2005   Contribution: 23    

RE: What is INODE?
The UNIX disk object that represents the existence of a file. The inode records owner and group IDs Fstype Date & time last access last modification n/o links size of file addresses of blocks where the file is physically present and permissions
 
Is this answer useful? Yes | No
October 17, 2005 06:50:26   #2  
suraj Member Since: October 2005   Contribution: 7    

RE: What is INODE?
The inode is the focus of all file activity in the file system. There is a unique inode allocated for each active file each current directory each mounted-on file text file and the root. An inode is named by its device/i-number pair.
 
Is this answer useful? Yes | No
December 13, 2005 00:03:37   #3  
apiplani Member Since: December 2005   Contribution: 11    

RE: What is INODE?

You can check the inode number of a file by typing ls -li

To add to the definition when you create a hard link it is actually another file gets created with the same inode number. so in a way there is only one inode number which is associated with two file names having diffrent locations on the disk but acutually refering to the same file. In this case when you call a delete (rm) on one of hte files you are actually not deleting the file indeed you are deleting a reference to the file.


 
Is this answer useful? Yes | No
August 01, 2006 04:16:26   #4  
Mukund        

RE: What is INODE?

You can delete the file based on the inode entry with the following command

find . -inum <number> -exec rm -f {} ;

Regards

Mukund


 
Is this answer useful? Yes | No
August 04, 2006 07:20:44   #5  
Navaneethan, B.Tech(IT)        

RE: What is INODE?
Hi Inode which is to describe the file's starting address. It's managed by the linux OS. Each file has its own inode number (you can remember it as a file pointer by OS as in C terms).
 
Is this answer useful? Yes | No
July 17, 2007 02:42:07   #6  
varun koli        

RE: What is INODE?
A unique number associated with each filename. This number is used to look up an entry in the inode table which gives information on the type size and location of the file and the userid of the owner of the file.


Regards
varun koli

 
Is this answer useful? Yes | No
September 03, 2007 00:24:32   #7  
moorthyvsm        

What is INODE?
A unique number associated with each filename. This number is used to look up an entry in the inode table which gives information on the type size and location of the file and the userid of the owner of the file.


 
Is this answer useful? Yes | No
November 03, 2007 04:05:48   #8  
zorba        

RE: What is INODE?
an inode is a data structure on a traditional Unix-style file system such as UFS. An inode stores basic information about a regular file directory or other file system object

http://en.wikipedia.org/wiki/Inode

 
Is this answer useful? Yes | No


 
Go To Top


 Sponsored Links

 
About Us -  Privacy Policy -  Terms and Conditions -  Contact -  Ask Question -  Propose Category -  Site Updates 

Copyright © 2005 - 2009 GeekInterview.com. All Rights Reserved

Page copy protected against web site content infringement by Copyscape