Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
3answers
911 views

What will happen if Perl tries to call move() on a file that is being uploaded?

Someone is FTPing a file of size 10Mb to folder on a linux server. While the file is in transition a cron wakes up and fires off a Perl script that is designed to look at the ftp folder and move ...
7
votes
3answers
2k views

Why do inode numbers start from 1 and not 0?

The C language convention counts array indices from 0. Why do inode numbers start from 1 and not 0? If inode 0 is reserved is for some special use, then what is the significance of inode 0?
7
votes
1answer
19k views

Howto Free Inode Usage

I have a disk drive where the inode usage is 100% (using df -i command). However after deleting files substantially, the usage remain 100%. What's the correct way to do it then? How is it possible ...
5
votes
4answers
154 views

How to efficiently monitor a directory for changes on linux?

I am working with magento, and there is a function that merges CSS and Javascript into one big file. Regardless the pros and cons of that, there is the following problem: The final file gets cached ...
5
votes
1answer
303 views

Reading an on-disk inode to in-memory

I believe there are two types of inodes - on-disk and in-core inode ('struct inode' in fs.h). An on-disk inode is based on filesystem implementation. I am trying to understand the underlying concept ...
5
votes
3answers
3k views

Where are all my inodes being used?

How do I find out which directories are responsible for chewing up all my inodes? Ultimately the root directory will be responsible for the largest number of inodes, so I'm not sure exactly what sort ...
4
votes
3answers
404 views

how to change symlink target while preserving inode

Normally to change a symlink target one will first unlink the file and then re-creating the symlink with the new target path. However it will be assigned a new inode number. Maybe there is a private ...
4
votes
5answers
665 views

Quick file access in a directory with 500,000 files

I have a directory with 500,000 files in it. I would like to access them as quickly as possible. The algorithm requires me to repeatedly open and close them (can't have 500,000 file open ...
4
votes
2answers
539 views

partition full, or not?

my partition /tmp is full... and its empty at the same time. So the partition is full. Check the directory: # du -sh /tmp 28K /tmp What? It is empty... And it is really empty... just two empty ...
3
votes
2answers
90 views

Why is '.' a hard link in Unix? [closed]

I've seen many explanations for why the link count for an empty directory in Unix based OSes is 2 instead of 1. They all say that it's because of the '.' directory, which every directory has pointing ...
3
votes
2answers
120 views

File System Development

When designing a file system that uses an inode structure to point to files/blocks how is the number of inodes needed actually determined?
3
votes
3answers
840 views

In a linux kernel module, how can I get inode of a known path

In a linux kernel module (i.e. working in kernel space), I have a path of a file. Which function(s) can be used to get the inode of that file. Specifically I need to get the "inode *" pointing to ...
3
votes
1answer
593 views

What is the purpose of (Apache) putting inode into an ETag?

There are plenty of articles on the web detailing why you might not want to use Apache's default inode-mtime-size format for ETags. But I have yet to read anything on what might have motivated the ...
3
votes
4answers
3k views

Determine UID that last modified a file in Linux?

I'm writing a program that will be monitoring select files and directories for changes. Some of the files are world writeable, some owner, some group. What I need to do is be able to figure out the ...
2
votes
1answer
151 views

Why is the JDK NIO using so many anon_inode file descriptors?

I'm using Sun's JDK 1.6.0_26 and NIO (with Netty) and in lsof I see hundreds of file descriptors that are anon_inode: $ lsof -np 11225 | fgrep -w anon_inode java 11225 nobody 57u 0000 ...
2
votes
1answer
106 views

How inode number is distributed in a linux root filesystem? [closed]

I have several questions on how inode number is used in linux filesystem. These questions may be related but for clearness I will ask them one by one. Q1: Take EXT2/3 for example, from "Design and ...
2
votes
2answers
191 views

Reason to pass data using struct inode and struct file in Linux device driver programming

I'm studying Chapter 3.5 of Linux Device Drivers, 3rd edition. This section introduces a method to retrieve a custom structure we defined ourselves from struct inode *inode in the open function: int ...
2
votes
1answer
94 views

How to access all pipes in the system from Linux kernel space

I want to add a new system call to the Linux kernel that will show information about all pipes that are created in the system. How can I get the inode (or any other related structure that will allow ...
2
votes
1answer
252 views

What is anonymous inode?

I made a google search about "anonymous inode" and it seems it's related to epoll ... but what actually is it?
2
votes
2answers
198 views

Best approach to detecting a move or rename to a file in Linux?

Some solution could probably be applicable to Windows, however I am not familiar with the Windows OS, so this will be Linux focused. As far as I understand, Unix file system all have the concept of ...
2
votes
1answer
439 views

How do you determine using stat() whether a file is a symbolic link?

I basically have to write a clone of the UNIX ls command for a class, and I've got almost everything working. One thing I can't seem to figure out how to do is check whether a file is a symbolic link ...
2
votes
1answer
193 views

file descriptors and open files

I have two quick questions: When do two file descriptors point to the same open file ? When do two open files point to the same inode ? Also, if you happen to have some good documentation with ...
2
votes
1answer
738 views

Inode Data Structure Differences Between 128-byte Ext2 and 256-byte Ext3

Curious as to the inode data structure differences between 128-byte ext2 and 256-byte ext3 file-systems. I have been using this reference for ext2, 128-byte inodes: ...
2
votes
2answers
335 views

Are inode limits by directory or by drive?

Are the inode limits on Linux by subdirectory or by the entire file system? I use ububtu 64 bit server 9.10. Can the inode limit be resolved by splitting files up into multiple sub directories if ...
2
votes
2answers
1k views

C program: how to get parent directory's inode number?

How to get directory inode number say /home/laks/file.txt I need the inode number of laks directory. Any built-in function is already available? I think i could use stat() if i cut the file ...
2
votes
2answers
933 views

What is the data structure of the Inode number like?

I am flabbergasted by the definition of the inode number: An inode is a data structure on a traditional Unix-style file system such as UFS or ext3. An inode stores basic information about a ...
2
votes
2answers
482 views

Reading the Superblock

I know that in Unix (specifically, Mac OS X) the superblock stores information about the layout of data on the disk, including the disk addresses at which the inodes begin and end. I want to scan the ...
1
vote
1answer
21 views

XSLT or XPath: how to find a node with a specific tag and text then extract it into a new xml file?

I need to find a particular node in an xml file, <example>Some text</example> Then I want to extract this node and it's subelements from the xml file and write it into a new xml file and ...
1
vote
2answers
20 views

Deleting files and Inodes

I'm reading a text on Version 6 unix, and just learned about inodes. I have the following question: Suppose I have a file in one directory and a link to the file somewhere else. Am I correct to say ...
1
vote
1answer
50 views

How to obtain a pathname or dentry or struct file from a given inode?

I need to know how to obtain a pathname or dentry or struct file from a given inode. I was using file_open to obtain struct file from a pathname but but always gave kernel panic. I need a way to ...
1
vote
0answers
78 views

Minix Internal Fragmentation [closed]

Possible Duplicate: Internal Fragmentation I have recently been working on a project to recursively list all files within a directory and output the filename, size and path. I now need to ...
1
vote
1answer
76 views

File-system indexed allocation: inode

I was wondering if someone could double check my answers to the following question. I'm uncertain if I'm understanding single indirect blocks and double indirect blocks correctly. A disk block is 2KB ...
1
vote
2answers
59 views

How to create 64 bit inode?

I need to test 64bit version of file IO APIs (open, create stat etc. ). In this process I need to create a file which has a 64 bit inode, so that the internal 64 bit data structures/variables are ...
1
vote
2answers
111 views

Linux procfs inode number changed whill process was running

I'm working on security software(SW) for Linux. One thing that our SW does on is that when some process is started, the SW stat()s the process's /proc/ entry and remembers the entry's inode number. ...
1
vote
1answer
53 views

MEM_SHARED, mmap, and hard links

Just wondering if the key to shared memory is the file name or the inode. I have a file called .last, which is just a hard link to a file named YYYYMMDDHHMMSS. A directory looks like this: ...
1
vote
1answer
121 views

Kernel security modules: i_security in struct inode

my question is probably again pretty simple, but I did not find anything. I am writing a Linux Security Module. As you might know the struct inode in the kernel contains one field i_security to save ...
1
vote
3answers
286 views

Getting the inode number of an unopen file from path

Is there a way I could get the inode number of a file which has not yet been opened. I would like to do this from inside a c function Regards, Lipika
1
vote
3answers
418 views

Why can't files be manipulated by inode?

Why is it that you cannot access a file when you only know its inode, without searching for a file that links to that inode? A hard link to the file contains nothing but a name and a number telling ...
1
vote
1answer
264 views

File recovery thorugh Inode

I am trying to do my final project, which involves restoring a deleted file through its inode. I know bits and pieces of information about the whole topic but, don't seem to have any clear direction ...
1
vote
2answers
165 views

Changing inode behaviour

I am trying to modify the ext3 file system. Basically I want to ensure that the inode for a file is saved in the same (or adjacent) block as the file that it stores metadata for. Hopefully this should ...
1
vote
1answer
238 views

Reading inode returns invalid data

I am trying to edit some inode data. However, when I read any inode, I only get zeros or invalid data. Here are the main steps of what I am doing: //reading, say inode number 15 - it belongs to ...
1
vote
2answers
686 views

How to get inode count of a filesystem on Solaris/Unix?

I was invoking the following command and reading the outpup df -F ufs -o i. It worked fine initially but then started to fail for the reason reported and explained here ...
1
vote
2answers
1k views

How many bytes per inodes?

HI, I need to create a very high number of files which are not very large (like 4kb,8kb). It's not possible on my computer cause it takes all inodes up to 100% and I cannot create more files : ...
1
vote
3answers
2k views

Understanding the concept of Inodes

I am referring to the link: http://www.tux4u.nl/freedocs/unix/draw/inode.pdf I am confused on parts: 12 direct block pointers 1 single indirect block pointer 1 double indirect block pointer 1 ...
1
vote
1answer
2k views

Number of inodes in a partition not matching up to the maximum number of inodes the partition should support

We are using Amazon EBS to store a large number of small files (<10KB) in a 3-level directory structure. ~/lists# df -h Filesystem Size Used Avail Use% Mounted on /dev/sda1 ...
1
vote
3answers
305 views

How do I read a directory as a file in Unix?

I understand that a directory is just a file in unix that contains the inode numbers and names of the files within. How do I take a look at this? I can't use cat or less on a directory, and opening it ...
1
vote
3answers
465 views

What is the fastest way to find all the file with the same inode?

The only way I know is: find /home -xdev -samefile file1 But it's really slow. I would like to find a tool like locate. The real problems comes when you have a lot of file, I suppose the operation ...
0
votes
3answers
74 views

How do you detect that a file you have opened has been moved after opening

As the title states: My program opens a file. Something comes along and moves that file. Inode should be the same, but name is different. Close the file, then delete, but its not there anymore So ...
0
votes
1answer
58 views

Determine inode usage [closed]

How could I determine what's causing high inode usage? I need something more precise than df -hi. I currently have opened millions of inodes and I would like to know what is causing this. Deleting ...
0
votes
1answer
129 views

How to get inode structure when knowing the “inode number”

I read the API of minix but still confused and failed to get the 'real' inode structure just with the inode number We could only get "inode number" with "stat" structure, right? but after getting ...

1 2