Questions tagged [filesystems]

A file system (or filesystem) is a means to organize data expected to be retained after a program terminates by providing procedures to store, retrieve and update data, as well as manage the available space on the device(s) which contain it.

A file system (or filesystem) is a means to organize data expected to be retained after a program terminates by providing procedures to store, retrieve and update data, as well as manage the available space on the device(s) which contain it. A file system organizes data in an efficient manner and is tuned to the specific characteristics of the device. A tight coupling usually exists between the operating system and the file system. Some file systems provide mechanisms to control access to the data and metadata. Ensuring reliability is a major responsibility of a file system. Some file systems allow multiple programs to update the same file at nearly the same time.

1986 questions
5
votes
1 answer

What makes Lustre faster and more scalable than NFS?

I have read in various places (e.g. here and here) that NFS' I/O performance does not scale, while Lustre's does, and that Lustre can deliver better I/O rates in general. There seem to be various architectural differences between the two, but I…
5
votes
3 answers

Journaled filesystems and power failure

I heard that even a journaled filesystems such as EXT3/EXT4 might corrupted during power failure, e.g. from wikipedia [1]: In the event of a system crash or power failure, such file systems are quicker to bring back online and less likely to…
Ryan
  • 5,831
  • 24
  • 72
  • 91
5
votes
6 answers

How can I tell what filesystems are on a disk in AIX?

I use the tool "topas" to get a quick peek at CPU, memory, and disk statistics on an AIX machine. I understand the numbers on the disk section, but what I don't know is how to tell which filesystem(s) are on the disks shown in topas. Here is some…
BrianH
  • 263
  • 1
  • 3
  • 9
5
votes
3 answers

File creation time on Windows vs Linux

We have following setup: mountserver - debian linux fileserver1 - Windows 2008 R2 Storage server fileserver2 - Celerra NS20 exporting CIFS share workstation - windows 7 with mapped drive to share on fileserver2 What we are doing: mounted share…
Sergei
  • 1,226
  • 16
  • 25
5
votes
1 answer

How to create btrfs RAID-1 filesystem (assertion error in mkfs.btrfs)?

I tried to make a btrfs RAID-1 filesystem in "degraded mode" by following the btrfs UseCases instructions but hit a fatal assertion error. Why is this failing, and is there any workaround? The instructions I followed are…
amcnabb
  • 647
  • 5
  • 12
5
votes
1 answer

Deleting blocked caused by thumb.db on Windows 2008 as a file server

I have a Windows Server 2008 which I am using to store media files. I am accessing this server via a mapped drive from my Win 7. Both are x64. When trying to delete folders, rename, move I get the following message. If I wait a while and retry,…
Valamas
  • 365
  • 1
  • 4
  • 9
5
votes
2 answers

Modify XFS filesystem creation parameters during kickstart installation

I'm streamlining the kickstart process for a series of EL6.2 (RHEL, CentOS, SL, etc.) systems. I'd prefer to use XFS over ext4 for the growth/data partition. However, I'd like some control over the options passed to mkfs.xfs for the creation of the…
ewwhite
  • 197,159
  • 92
  • 443
  • 809
5
votes
3 answers

What are some shared-disk filesystems people have successfully used with iSCSI?

The setup looks something like this. The goal is to have multiple computers mount a single LUN from the iSCSI target. Ideally mounting read/write and with ACL support. The servers are running GNU/Linux, so preferably a filesystem available in the…
Pablo Maurin
  • 319
  • 3
  • 7
5
votes
5 answers

Linux: how many disk I/O does it take to read a file? How to minimize it?

According to this paper on Facebook's Haystack: "Because of how the NAS appliances manage directory metadata, placing thousands of files in a directory was extremely inefficient as the directory’s blockmap was too large to be cached effectively…
Continuation
  • 3,080
  • 5
  • 30
  • 38
5
votes
1 answer

Filesystem and partitioning for SSDs on Linux

What are the best practices for using an SSD on a Linux workstation? Specifically, I'm interested in: What mounts I should put on the SSD and what I should keep on my HDD What filesystem I should use for what I do put on the SSD Whether it's okay…
jade
  • 890
  • 5
  • 15
5
votes
3 answers

What equivalent technologies to Microsoft's forthcoming ReFS exist for Linux/Unix?

With the announcement and write-up of ReFS (Resilient File System) on places like arstechnica, I am curious to know what technology, or technology stack, exists for Linux/Unix for a similar outcome. ReFS is designed to pick up where Storage Spaces…
warren
  • 18,369
  • 23
  • 84
  • 135
5
votes
5 answers

How to convert a reiserfs partition to ext3?

Is there a tool to convert a reiserfs partition to ext3?
Luca Martinetti
  • 195
  • 2
  • 11
5
votes
2 answers

Slower/cached Linux file system required

I know it sounds odd but I need a slower or cached filesystem. I have a lot of firewalls that are syslog'ing their data to a pair of Linux VMs which write these files to their 'local' (actually FC SAN attached) ext3-formatted disks and also forward…
Chopper3
  • 101,299
  • 9
  • 108
  • 239
5
votes
6 answers

How is the filesystem of Wikipedia designed?

I read about FHS, and I started to consider the file system of wikipedia. On the one hand, I feel it is a security risk to let everyone know it. On the other hand, it is necessary for developers. For example, is there some rule to know where are all…
user10608
5
votes
2 answers

S3 based file system capable of requesting only part of file

I'm storing large datasets in s3, but on a given computer in my cluster, my program only needs to read a small subset of the data. I first tried s3fs, but it downlooads the entire file first, which takes a really long time. Are there any s3 backed…
UsAaR33
  • 1,096
  • 3
  • 11
  • 20