Penguin

Differences between version 10 and previous revision of Inode.

Other diffs: Previous Major Revision, Previous Author, or view the Annotated Edit History

Newer page: version 10 Last edited on Monday, June 4, 2007 1:37:44 pm by BenStaz Revert
Older page: version 9 Last edited on Monday, June 4, 2007 1:31:29 pm by BenStaz Revert
@@ -7,14 +7,18 @@
 *df - i 
  
 !!What information does an [Inode] store? 
  
-*The size of the file in bytes.  
-*The file's physical location (the addresses of the blocks of storage containing the file's data on a HDD)  
-*The file's permissions.  
-*The file's owner.  
-*Timestamps (ctime,mtime and atime). See [FileTimes]  
-*A reference count telling how many hard links point to the [Inode]. 
+Note : Inodes do NOT contain filenames.  
+  
+ * The size of the file in bytes.  
+* The file's physical location (the addresses of the blocks of storage containing the file's data on a HDD)  
+* The file's permissions.  
+* The Device ID  
+* The User ID of the file's owner.  
+* The Group ID of the file .  
+* Timestamps (ctime,mtime and atime). See [FileTimes]  
+* A reference count telling how many hard links point to the [Inode]. 
  
 !!How to obtain a file's [Inode] number 
  
 *ls -i <file>