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
2 answers

Linux no modify time (nomtime)

Is there a way to disable the mtime of an filesystem? There is an Filesystem independend noatime Option, but no "nomtime". Also in the Filesystem specific documentation for ext4 and/or btrfs i couldn't find this. Does this exist?
5
votes
3 answers

Lazy disk backup for a ramdisk on Linux?

Quick and dirty summary: I want something like a write cache that drains only when the system isn't busy. I want something along the lines of this question RAM disk and physical RAID with a slight twist. For a particular build I'm doing often, I…
kbyrd
  • 3,672
  • 2
  • 24
  • 34
5
votes
3 answers

Generating a lot of dirty pages is blocking synchronous writes

We have processes doing background writes of big files. We would like those to have minimal impact on other processes. Here is a test realised on SLES11 SP4. The server has massive memory, which allows it to create 4GB of dirty pages. > dd…
freedge
  • 93
  • 1
  • 10
5
votes
4 answers

ESXi 4.0 resize a VM hard drive size

I am using ESXi 4.0, I have a few VM's on the machine. I have just copied teh .vmx and .vmdk to create a new copy of the VM. They are normally 100GB but I want to create a few of these that are 50GB. Is there a way of resizing the copied VM or do…
Jon
  • 353
  • 2
  • 8
  • 20
5
votes
3 answers

OpenSolaris ZFS barebones for NAS

I've been tasked to suggest a NAS replacement for our aging fileserver at work, its currently running Linux with XFS (using LVM). We're a very small company of 5 folks, so we're using commodity hardware (2GhzCore2, 8GbRAM and about 4TB worth of HDDs…
Leah Calum
  • 211
  • 2
  • 8
5
votes
5 answers

Securely Deleting Files on Linux Journaled Filesystem

I am new to real system administration but have been running Linux servers at my home for years. I haven't cared too much about security because the few servers I maintained at work have always been on the intranet and all of the information stored…
Topher Fangio
  • 279
  • 3
  • 13
5
votes
4 answers

Effectively handling 2+ million files

I have a file based DB that has about 2M files stored in 3 levels of subdirectories. 2/2/6253 2/2/6252 ... File a vary from 30 bytes to 60 KB. Whole DB is Read Only. DB is about 125 Gigabytes big. Added: All files are compressed by zlib (python) I…
Worker
  • 647
  • 1
  • 6
  • 9
5
votes
1 answer

User permissions/feature limitations of the native zfs smbshare service on linux

I'm using zfs on linux, using the sharesmb=on option to try out the native smb share feature instead of adding the zfs tank path to my smb.conf file. The share has shown up on my windows machines, but my windows users can't write to it. I think I'm…
5
votes
1 answer

How can I introspect the "shared subtree" mount flags for a particular mount?

Under Linux, the shared subtree flags control how a mountpoint is shared with parent and child mount namespaces. These flags include MS_SHARED, MS_PRIVATE, and MS_SLAVE. How can one see which of these flags are set on a particular…
larsks
  • 43,623
  • 14
  • 121
  • 180
5
votes
2 answers

btrfs Integrity and Stress Testing

A DevOps colleague is recommending that we begin transitioning our production environment to using btrfs. We have primarily ext4 filesystems, though some low-usage servers using ZFS (on Linux). As one of the decision-makers, and as one responsible…
Joe
  • 492
  • 4
  • 15
5
votes
4 answers

Setting the noatime flag for filesystems inside an lxc container

My host filesystem is ext4 mounted with the noatime flag. But inside an lxc-container, the flag is absent. Here's the output of mount on the host: /dev/sdb1 on /home type ext4 (rw,noatime) And here's the output of mount in the…
HRJ
  • 225
  • 2
  • 10
5
votes
3 answers

ext3/ext4 physical block size view

I'm using a suse 11 server with xfs and using "xfs_info /srv" command i seen this. xfs_info /srv/ meta-data=/dev/mapper/vg01-srvvol isize=256 agcount=38, agsize=1964032 blks = sectsz=512 attr=2 data = …
c4f4t0r
  • 5,301
  • 3
  • 31
  • 42
5
votes
1 answer

Filesystem performance degraded during RAID rebuilding

So quick question - our RAID6 array is currently rebuilding and there is a VERY noticeable filesystem performance hit (home directories are NFS mounted on the array). I'd sort of expect that, given you're rebuilding the array so there's massive…
Alex
  • 451
  • 1
  • 5
  • 15
5
votes
2 answers

Best parameters for ext4 filesystem for storing virtualbox disk images

I have partition, which I'm going to use for keeping VirtualBox disk images (VDI, or may be VMDK). They are fixed-size (not dynamically-allocated) images. There are no other files/directories on partition (only several *.vdi files in the root…
Sasha
  • 158
  • 1
  • 5
5
votes
2 answers

Re/Installing an MSI, getting 'not a valid short file name' error

We are running windows 2008. We have a windows service called ImportService, that is installed via an MSI package. A previous version was installed about 3 months ago without problems. When have now unistalled the previous version. When we try to…
Shiraz Bhaiji
  • 2,229
  • 9
  • 34
  • 47