-1
votes
1answer
19 views

FLASHING IMAGE(.img) IN SDCARD

Every time i try to copy a directory along with its contents to my sdcard it shows different disk usage. to copy the directory i use sudo cp -a folder-name/* /media/system/ while being in the ...
0
votes
1answer
15 views

why does an inode have two different fields for size and block count?

There are two separate fields in inodes in Linux namely size and blocks. Why do we have to have two fields. If we just have the block count, wouldn't it be enough? I tried creating a text file, and ...
-2
votes
0answers
21 views

Can a file consume less blocks than it is intended to?

Suppose if we think of a file which is 64kB in size, and inodes are used to keep track of them, we can calculate that there needs to be 16 blocks in order to store this file with a 4kB block size. ...
1
vote
1answer
21 views

The time in milliseconds to read a block of k bytes

Below is a question and the answer for it from the book "Operating System Design & Implementation" by Andrew S. Tanenbaum. As an example, consider a disk with 131,072 bytes/track, a rotation ...
-1
votes
0answers
8 views

How does softupdate, snapshot, and FSCK work together?

How does soft update, snapshot, and FSCK work together, can someone give an explanation of all 3 playing a role?
1
vote
1answer
12 views

What happens when write request occurs in snapshot copy on write?

I am reading over some operating system concepts and stumbled upon this. From what I understand, when you take a snapshot, copy on write will record the current state of the file system (metadata). ...
0
votes
0answers
67 views

APIs for netlink socket creation in user space

I am trying to make a simple VFS. VFS in user space which communicates with kernel module and redirects any function call to the user space and the user space will process the function. I have read ...
0
votes
4answers
95 views

contiguously space on hard disk - NTFS

My question is about file allocation methods on NTFS Fs. I have two main questions - When i create a file on NTFS, is it stored contiguously on the physical hard disk? if not - is there a way to ...
0
votes
1answer
66 views

Does Cassandra lock files in the data directory during reads/writes?

I know that snapshots can be taken while Cassandra is online. What this does is create a snapshot sub-directory in each column family directory, and places a copy of the column family inside of it. ...
1
vote
2answers
75 views

Tag based file system

All OSs that exist right now work in files and folders. I was thinking that there are may other ways of storing files. Would it be a better way to store files by tags, for example: A file called ...
-1
votes
1answer
111 views

Custom Kernel: Implement filesystem

As a out of course project, I am currently developing a kernel in an attempt to better understand all the aspects of an actual OS. So far, I am done setting up a flat physical memory model with ...
2
votes
1answer
410 views

how does open works for normal file and device drivers

Currently, I am learning Linux device drivers. And got stuck over how opening a device file works ? What I got until now... Consider the a simple code that opens a normal file.. ...
-3
votes
1answer
67 views

Shared folder between different OS with different filesystems [closed]

I was wondering how for example dropbox or a NAS is coping with the different file systems on different operating systems when sharing a folder? I was reading more about the different file systems and ...
9
votes
2answers
198 views

Java - file.length() returns even if the file is not readable

I have a file from which I have suppressed every permission. No one should be able to read the file, right? In fact, if I run File f = new File("not_readable.pdf"); System.out.println(f.canRead()) ...
2
votes
1answer
430 views

Data structures used to build file systems?

What Data Structure is best to use for file organization? Are B-Trees the best or is there another data structure which obtains faster access to files and good organization? Thanks
0
votes
0answers
32 views

File System Images Available For Download?

I am working on a tool similar to dumpe2fs. I need to run my tool on a file system image. Better yet, I need to run my tool on several file system images to get results from different file system ...
0
votes
1answer
153 views

How to find if file is in file system cache in Windows?

I guess NTFS (file system of Windows) has some cache. Suppose I have a file, which is frequently accessed (read-only). How can I check if this file is in the file system cache ? Can I increase the ...
1
vote
1answer
280 views

Filesystem of Windows Phone?

What is the name of filesystem in Windows Phone OS? I am aware of Isolated Storage, but is it the name given to the file system OR does it constitute a full-fledged filesystem, such as; exFat, NTFS ...
0
votes
1answer
138 views

Hash Function to generate Hash Key from File Path

Any ideas for a Hash Function to generate a Hask Key from file path name? I'd like to use this to maintain information about every file, as path for every file is unique, even if they have the same ...
0
votes
0answers
21 views

Creating symlink in LFS

I am developing LFS file system.I having issues while testing symlink and readlink. while i m trying to so ln -s source file target file then it is creating the target file but throwing an error ...
1
vote
1answer
62 views

Can a read() by one process see a partial write() by another?

If one process does a write() of size (and alignment) S (e.g. 8KB), then is it possible for another process to do a read (also of size and alignment S and the same file) that sees a mix of old and new ...
0
votes
0answers
43 views

AFS file system documentation

I am looking for documentation on the AFS file system.After searching the web I have found lot of information but not in very detail.I need a lot of information on subjects like the file metadata, ...
-4
votes
1answer
191 views

How to generate directory size recursively in python, like du . does?

Lets say my structure is like this /-- am here /one/some/dir /two /three/has/many/leaves /hello/world and say /one/some/dir contains a big file, 500mb, and /three/has/many/leaves contains a 400mb ...
0
votes
0answers
45 views

Developing a componentized plug n play embedded software?

I was wondering, what are the basics features/mechanisms in high-level OS that enable us to develop applications in top of it without the concerns we need deal in low-level system? The first ones I ...
0
votes
1answer
190 views

Access unallocated space of HDD

How can I access and write to the unallocated space of a Hard Disk Drive, from Windows ? By unallocated HDD space I'm referring to the space that remains on the HDD after partitions have been ...
5
votes
1answer
724 views

Printing Partition Table - C program

I am trying to print a partition table using C programming language, everything seems to work fine: Opening and reading, but I don't understand why it is printing garbage values. Here is the code: ...
-2
votes
2answers
216 views

Is there any difference in file size on 32bit and 64 bit platforms, OS could be any

I would like to display file size on one of my application. Our application most of the unix and windows platforms that to be 32bit and 64bit. Is there any difference in file size on 32bit and 64 bit ...
0
votes
1answer
106 views

How does File System monitoring works in theory?

I'm working paper about remote file synchronization (just like Dropbox). However I'm having problems finding information about how the OS File System (FS) sends file events (or how are them generated ...
0
votes
1answer
82 views

File system info - date created on THIS computer

Not sure which forum this goes under. For some time I've found it hindering, and often annoying, that no common filesystem or OS stores what would be a third timestamp on files and folders in ...
0
votes
0answers
131 views

C/C++ Library for accessing EXT3 partition

Are there any C/C++ software library (commercial or free) that allow my program to R/W access to files in EXT3 or ReiserFS partition without mounting in the operating system? I just need the library ...
1
vote
2answers
214 views

Share partition ubuntu and Windows

In order to have a partition accessible in both Ubuntu and Windows I had a drive formatted as fat32(or vfat) I just found out that it does not hold single files that are more than ~4.3Gb in size. Is ...
2
votes
1answer
54 views

Is any real program checks for file close errors?

I have never seen a real use for checking if a file was closed correctly. I mean, if it didn't close, then what? You have nothing smart to do. Beside, I'm not sure if there's a real world use case, ...
0
votes
2answers
876 views

Do not understand where 2048 comes from

Where does the 2048 number comes from in is the problem? Consider a file system that uses inodes to represent files. Disk blocks are 8 KB in size and a pointer to a disk block requires 4 bytes. This ...
7
votes
2answers
103 views

How much do modern filesystems reserve for each block group?

In reading about the Unix FFS, I've read that 10% of the disk space is reserved so that files' data blocks can be ensured to be in the same cylinder group. Is this still true with filesystems like ...
0
votes
1answer
257 views

Implementing ls command for NTFS in Linux

I am trying to build a bash like script provides some functionalities such as ls,pwd,cat etc. working on NTFS in a linux system. Suppose that I have an NTFS image and I open that as a file with fopen. ...
-1
votes
2answers
563 views

The max number of files in one directory?

Is there any limitation on number of files in one directory (in any host) ? If I have a directory with 30k (named from 1 to 3ok) files and another one with only 10 is there a major difference in ...
2
votes
2answers
130 views

How do you get total directory size in the same function that is getting all file sizes? (Python)

I am using the following function to get all file sizes in a system from the target directory down. def get_files(target): # Get file size and modified time for all files from the target ...
-1
votes
1answer
48 views

jvm crash due to using jnotify or any other reason

friends please help my java program crashes when run. I am using Jnotify to monitor drives. The error shown is
-4
votes
1answer
111 views

What are some interesting ideas to carry out a research project in an operating systems class? [closed]

We have been asked to implement an interesting new operating system functionality in our graduate class on Operating Systems. I am looking for ideas in File Systems, Memory Management and Android ...
0
votes
1answer
218 views

How to bypass Linux VFS inode cache? Is it safe not to add inode to its super_block list?

Since our file system implementation stores inode just in memory, so we do not want to waste more for inode cache. Under VFS, we plan not to add new inode to the inode cache hash talbe, and not to ...
4
votes
1answer
224 views

Why Linux kernel 3.0+ cancels super_operations.read_inode? Request for new references~

Before Linux kernel 2.6, super_operations (include/linux/fs.h) have both read_inode and write_inode functions. But newer kernel does not have read_inode any more, then when and how does the VFS read ...
1
vote
0answers
90 views

RFC : Sandboxing Browsers and related application (A solution, however seeking better options from sys admins)

Well, looking at the FBController thingy, it seems anyone access to the system can steal the cookie or a script executed disguising as something valid could get hold of the cookie or personal ...
1
vote
0answers
132 views

When copying from network to USB do files get written to hard drive

I was wondering: When I copy files from a network drive (I am using a mac) to a USB flash drive do cache files get written to my hard drive or does this all happen in the RAM? The reason I care is ...
2
votes
2answers
899 views

How does Linux kernel find dirty page to flush?

Since the pages are stored in address_space within each inode, how does the background page cache flush thread know all dirty pages?
0
votes
1answer
50 views

How to work with MMFdata in c?

I'm having the following code,with compile errors,and I can't understand what I didn't defined well: #include <stdio.h> #include <stdlib.h> #include <windows.h> #include ...
3
votes
2answers
266 views

Write system call writes data to disk directly?

I've read couple of questions(here) related to this but I still have some confusion. My understanding is that write system call puts the data into Buffered Cache(OS caches as referred in that ...
2
votes
2answers
484 views

Watching for file changes within a directory [duplicate]

Possible Duplicate: How do I watch a file for changes using Python? Detect File Change Without Polling I am trying to write an application which must perform an action when files are ...
1
vote
1answer
311 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 ...
2
votes
2answers
119 views

Is File.length platform and filesystem independant

Image I catch a stream of the net and count how many bytes went through my hands, I write this stream to a file. Is the number of counted bytes guranteed to be equal to the file.length() result (after ...
0
votes
2answers
296 views

File Access method in Linux

Read in text books that there are mainly two file access methods; sequential and direct. Which one we are using in Linux? In read command we are giving the how much bytes to read and to which buffer. ...

1 2 3