In computing, an inode (index node) is a data structure found in many Unix file systems. Each inode stores all the information about a file system object (file, device node, socket, pipe, etc.), except data content and file name.

learn more… | top users | synonyms

-1
votes
2answers
20 views

linux filesystem - what constitutes an inode? [closed]

Sorry if this is a stupid question, I am confused by the concept of an inode. Say I have a file.dat nested in a multi-level directory structure like this: folder_1 -> folder_2-> ...
0
votes
0answers
20 views

Implementing a file system using FUSE - inodes?

I have an assignment which involves implementing a file system on linux using FUSE and the last 2 days not much progress has been made. As far as I understand it is important to have a way of keeping ...
-2
votes
0answers
30 views

Linux clear inodes folder [closed]

I have got dedicated server that use the inodes up to 93%. I am not really an server expert. i have tried this method from link Howto Free Inode Usage but im not going anywhere. *it gave me ...
2
votes
1answer
40 views

How to get a pointer for an inode of a file

In order to add some security measure for Linux kernel I am trying to add extra flags in the inode structure. A system call would check this flag if its set for a certain file. So how can I access ...
0
votes
0answers
25 views

linux kernel module inode access to file

Currently I'm working in linux kernel model and have a function that only accepts funcname (struct *inode) as an input. The thing I want to do is to get access to the file and free the blocks ...
0
votes
1answer
19 views

Multiple Questions about EXT2 file system

I am reading about EXT2 file system, and have a lot of questions. Primarily relying on the following resources: http://e2fsprogs.sourceforge.net/ext2intro.html ...
-2
votes
1answer
34 views

Image conversion and Inode usage [closed]

This question has been flagged as irrelevant so I guess this has no real worth to anyone so I tried removing the question but the system won't let me so I am now truncating the content of this post ;) ...
0
votes
0answers
41 views

Executable path from fd inode in a linux kernel module

Given a inode that exists in /proc/**/fd/* And a Linux Kernel Module that needs to find the executable path from the symbolic link /proc/**/exe How could I implement this so that from a inode ...
0
votes
1answer
33 views

What is the max file size allowed by the system?

I am given this information, but am not sure how to approach this problem: Double-Indirect Addressing Disk block size = 1k File Point is 64 bits (8 bytes) Block can hold 128 file pointers Inode ...
9
votes
1answer
84 views

Is it possible to recreate a file from an opened file descriptor?

Now, this question may seem weird, and it probably is, but to give some context, I've been reading this to learn about i-nodes in which the author gives an interesting example: { FILE *fp; fp = ...
-1
votes
0answers
12 views

where does boundary of file system lie in Linux? [migrated]

I am curious that hard link cannot cross the boundary of file system. But where exactly is the boundary? I know hard disk and flash disk are two file systems; /home and /var are two file systems. But ...
-1
votes
0answers
53 views

Shell Script for Importing file names and inodes into mysql table

How to generate a script that creates a exact 100MB file. Then Split that file into exact 10MB files. And import the file names and their corresponding inode numbers into a MySQL table under a single ...
1
vote
1answer
65 views

Can inode and crtime be used an a unique file identifier?

I have a file indexing database on Linux. Currently I use file path as an identifier. But if a file is moved/renamed, its path is changed and I cannot match my DB record to the new file and have to ...
0
votes
0answers
28 views

What's the best way to save large number of tiling images

I am currently using google map api for serving large number of huge images. Each image is tile to thousands of small (32*32) tiler on my server. It's working fine so far, until today I got an No ...
0
votes
0answers
67 views

Changing ondisk inode on ext4 filesystem

I am using libext2fs to modify on disk inode but its not working. I am doing this on mounted filesystem (EXT4). I tried running e2fsck on a mounted file-system and it appears to work (although it give ...
1
vote
1answer
122 views

Safely writing to and reading from the same file with multiple processes on Linux and Mac OS X

I have three processes designed to run constantly in both Linux and Mac OS X environments. One process (the Downloader) downloads and stores a local copy of a large XML file every 30 seconds. Two ...
0
votes
1answer
68 views

how to print indirect block in ext2

I'm trying to print all the single indirect blocks in an ext2 file system. I can print the direct blocks easy enough (0-11) but I don't understand how to get to the single indirect blocks, and later ...
0
votes
1answer
69 views

Umbraco nodes and inodes

I have a query about some code I am using: List<INode> nodes = Node.GetCurrent().Parent.ChildrenAsList.FindAll(n => n.NodeTypeAlias == "Job") foreach (Node job in nodes) { ...
2
votes
1answer
91 views

Is there any way that I can search for a file or a filename using a given inode number?

I am taking in an inode number from a user and I have to search the file system for that file. How do I search through inode numbers. I have to do this using C and unix. Here is my code so far: ...
0
votes
3answers
364 views

C Program: Get inode header fields and information by inode number

I need to write a program in C/C++ that request the user to put in an inode number and then return all of the inode header fields and information back. I am not familiar with linux systems and ...
0
votes
2answers
188 views

Not printing Inode File name or header information in C

Running the following lines of code and running into issues that I am not sure about. The main idea is for a user to enter in an inode to be searched. Once found, the file name associated with that ...
0
votes
1answer
99 views

Save information from sprintf to a variable

is it possible to save information gather from a sprintf into a variable? The lines of code below are an example to better illustrate my question. char fileName; fileName = sprintf(command, "find ...
0
votes
0answers
167 views

Recovering lost inodes after moving large number of files [closed]

TL;DR version: Are there any tools that I can install on a flash-drive Ubuntu that will recover 'lost' inodes? I am having a problem after mv'ing a large number of small files on my Ubuntu 12.04 ...
0
votes
1answer
71 views

Two ways of entering a directory by inode number?

If I want to enter a directory by its inode number, why cd $(find . -inum $inode_num) works, but the following command does not work: find . -inum $inode_num -exec cd {} \; what's the ...
5
votes
2answers
183 views

Get last access time of the file?

I want to get when the file accessed last time, I tried following code: import os, time os.system("python test.py") print os.stat('test.py').st_atime time.sleep(60) os.system("python test.py") ...
0
votes
1answer
70 views

inode number in different filesystems

If I mount directory A(have a file file_a in it) to directory B, the two directories are in different filesystems, will file_a in the two directories share the same inode number?
-2
votes
1answer
204 views

changing inode number while modification [closed]

I am trying to modify write system call for ext3 file system. I need to store the inode number of a file inside it while it is being written to disk. Next time that inode number will be used to ...
0
votes
0answers
240 views

print the inode bitmap as an unsigned char

how can I print the bits of inode bitmap which is fetched as an unsigned char? this is my code which is used to fetch bitmap.what i want to do is to print the bitmap in binary format. #include ...
0
votes
2answers
415 views

reading linux inode bitmap

I'm going to fetch linux inode bitmaps with c++. I've use this code to fetch super block first: #include <cstdlib> #include <linux/ext2_fs.h> #include <linux/fs.h> ...
0
votes
2answers
554 views

The concept of Inodes and block sizes

So I'm doing some exam review problems, and one of them states "In UNIX system V, the length of a block is 1 KB and each block can hold a total of 256 block addresses. Using the inode scheme, what is ...
0
votes
2answers
160 views

Can 'touch' work and 'mkdir' fail?

Could there ever be a situation in which touch would work and mkdir would fail, within a directory. I understand that both these calls involve writing to the inode of the parent directory. So if ...
3
votes
1answer
55 views

Any optimizations in reducing the number of disk accesses for inode number lookup by web-servers?

Web-servers typically have a document root denoting the filesystem sub-tree visible via the web. Consequently for eg., if the document root is: /home/foouser/public_html/, then the web-server would ...
1
vote
0answers
83 views

Inline data extension for sfs_inode (OS161)

Hi I'm working with OS161 and I'm trying to extend my inode structures so that when I write to disk, I write the first chunk of file data into the actual inode structure, because currently it's set up ...
0
votes
1answer
54 views

How to determine the uniqueness of a file in linux?

What i mean to "uniqueness" here also concerns about the time. Every time a file created on file system, there's a unique file. Files in same directory with same name but appears in different time ...
0
votes
1answer
91 views

Good Filesystems and/or Archive Systems for Many Small Files

I am looking to store many (500 million - 900 million) small (2kB-9kB) files. Most general purpose filesystems seem unfit for this as they are either unable to handle the sheer number of files, slow ...
0
votes
1answer
264 views

How to hide/unhide a file from 'ls -a' in linux kernel? [closed]

I want to delete a file or folder by implementing my own system call such that after giving command 'ls -a' it must not be visible to me. So basically I want to hide a file from commands like 'ls'or ...
0
votes
0answers
52 views

Is NSFileWrapper a proxy for an inode or a specific path entry or something different?

Usually file handling frameworks offer features based on file-paths. But NSFileWrapper doesn't look like a proxy for a specific file-path. Recently, I learned concept of Unix file-system's inode, and ...
2
votes
1answer
87 views

Largest size of a file from inode

Could someone explain me the answer to this. I got this in a quiz and couldn't answer it. Assume that All blocks in a disk are of size 4KB (4096 bytes). The top level of an inode is stored in a ...
0
votes
0answers
84 views

what happens to inode data structure when remount a directory? [closed]

In Linux operating system. what data are changed inside kernel inode data structure if we change some file system attributes and remount a directory? if the file system is changed(say ext2 -> ...
1
vote
1answer
145 views

Number of free inodes on a partition containing a directory

I have a Python script running under Linux that generates huge numbers of tiny files into a given directory. However, many Linux filesystems like ext4 have a fixed number of inodes set at creation ...
1
vote
2answers
423 views

Android filesystem and inodes

I have recently learned about Unix inodes and their purpose. In particular, I learned that an.inode is unique across a filesystem. My question is: if a user inserts a Micro SD card into their Android ...
2
votes
2answers
237 views

Where do you get inode functionality from?

I've got some linux drivers I'm trying to port from linux 2.4 to 3.0. During this lengthy span of time, the argument list of ioctl (unlocked_ioctl now) changed a bit: -static int can_ioctl(struct ...
1
vote
0answers
105 views

What do values mean in inode column (proc/net/tcp(6))?

This is a piece of /proc/net/tcp file: sl local_address rem_address st tx_queue rx_queue tr tm->when retrnsmt uid timeout inode 6: ...
0
votes
2answers
91 views

inode usage is showing all zero's: how to understand this [closed]

On one of test server, we observed the inode usage for the /var/lib/mysql is showing all zero's. We are unable to understand this. df -i output is as below. db04 ~ # df -i /var/lib//mysql/ Filesystem ...
0
votes
1answer
50 views

One to one correspending to files - in unix - log files

I am writing a Log Unifier program. That is, I have a system that produces logs: my.log, my.log.1, my.log.2, my.log.3... I want on each iteration to store the number of lines I've read from a certain ...
1
vote
0answers
96 views

Performance related articles on filesystems design and implementation

I'm looking for papers/group discussions/blogs on how various filesystem implementations handled their performance issues. I can't seem to find anything good and recent, that's why I probably don't ...
0
votes
2answers
301 views

Is there any function to retrieve the path associated with an inode?

I am writing a utility that walks a directory tree on Mac OS X (10.6 and higher) and tries to detect changes that have occurred since the directory was last synchronized with a back-up location. ...
0
votes
1answer
454 views

What are inode generation numbers?

I'm plannnig to implement a FUSE filesystem using low-level API and currently trying to understand fuse_entry_param structure. I wonder what unsigned long fuse_entry_param::generation actually means. ...
0
votes
0answers
99 views

Inconsistent data on virtual ext2 File System

I'm making a Remote File System in ext2 and I'm having some trouble with the creation of the virtual disk. I'm creating it from the console with the instruction mkfs.ext2 -F -r 0 -b 1024 ext2.disk ...
-2
votes
1answer
86 views

removing a file in unix [closed]

In a UNIX filesystem, if the inode of the root directory is in the memory, what are the sequence of disk operations needed to remove a file in Desktop? While I am trying to solve a question in ...

1 2 3