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
0
votes
1 answer

2012R2 File Server - randomly unable to browse disk

This is a (new) 2012R2 VM running on a 2012R2 Hyper-V Cluster with DAS Shared Storage for the CSVs. The is where is gets strange - the server will be working fine without an issue, we will then get reports certain shares are no longer working. I…
PnP
  • 1,684
  • 8
  • 39
  • 65
0
votes
1 answer

Tool to determine filesystem on CompactFlash media

I have a CompactFlash card that is used in a custom piece of hardware. WAV files are written to it. Windows doesn't recognize the media and wants to format it, which rules out FAT 16/32, NTFS, UDF, etc. Is there a Windows tool that can determine…
Todd Brooks
  • 105
  • 3
0
votes
2 answers

Linux, search for extended attribute value

When a directory contains some files with non-empty extended attributes, all the attribute values can be shown as follows: $ getfattr -d * # file: file1 user.comment="comment1" # file: file2 user.comment="comment2" This should work for all the…
BowPark
  • 103
  • 1
  • 4
0
votes
1 answer

Multiple drives to one logical drive with only a part needing a parity

I've got 4 1TB Hard-Drives. I want to have ONE mounted directory in which there are 2 directories. So the space for both is dynamic. One needs a parity, the other one not. Of course I don't want to store the parity on the same disk as the original…
Ma_124
  • 3
  • 2
0
votes
1 answer

writing zfs dataset to block storage

Is there a proper way of writing a ZFS dataset, in my case which is an ext4 ubuntu filesystem, to a blank SSD? The data looks like this is that's at all helpful tank/filesystems/ubuntu_1604/(/etc, /boot, /var, and so…
Brando__
  • 412
  • 1
  • 3
  • 11
0
votes
1 answer

Decode & restore files from /dev/md3 (Hacked server)

My not exposed MongoDB has hacked to ransom, my files stored on /home/mongo/store has deleted, i use foremost, ext4magic , extundelete , nothing is happening , backups on the same server are deleted too... I have only 1 earlier month backup, its not…
0
votes
1 answer

Find permission of specific account and owner to replace with new account

Using Windows 2008R2. I have an ad account "fileadm" which have some permissions of many folders and files and for some it's a owner. I need to replace this account with another account (with the same permission) and change owner. I found the…
0
votes
2 answers

SDFS filesystem automount on start-up

Just started to test http://opendedup.org/ So I did this: # mkfs.sdfs /dev/vdb --volume-name=pool1 --volume-capacity=100GB # mkdir /mnt/pool1 # mount.sdfs pool1 /mnt/pool1/ The result of this line is empty: # ls /dev | grep pool1 How to automount…
A_buddy
  • 35
  • 2
  • 11
0
votes
3 answers

What does it mean for "OWNER CREATOR" to be the owner of a folder?

I see folders with an owner of "OWNER CREATOR" and group of "DOMAIN\Domain Users". When I copy these files, the ownership is being transferred to me. That is not the behavior I want. However, what does it mean for a folder to have an owner of…
RobertB
  • 103
  • 1
  • 1
  • 4
0
votes
1 answer

Security risks with storing unsafe files in cloud storage?

I have a basic cloud storage solution for files where a user can upload/download files. I'm storing the files as regular files in the file system like this: User uploads "launchattack.exe" -> saved as…
Andreas Zita
  • 101
  • 2
0
votes
1 answer

non computational memory in aix reaches zero value

i'm using AIX 6.1 on a database server,i'm having a problem where the non computational memory reaches 0 at some point, which causes the system to swap i guess and therefore the system becomes really slow , i read on some forums that this is due to…
0
votes
1 answer

Does having a good or bad filesystem inside a Virtual machine really matters?

I want to understand how the IO is sent to hard disk blocks from a virtual machine. Does having a XFS or ext3 or ext4 etc. really matters inside a virtual machine, or it is just depended on the file system of the host machine? What's the impact on…
GP92
  • 681
  • 2
  • 9
  • 27
0
votes
4 answers

Filesystem full with 'df' but seems actually not

On my AIX 6.1 server, i have a problem on a VIO LPAR. A filesystem seams to be full with the 'df' command, but not with 'du' or 'ls' for example. I searched but I don't understand where the problem comes from. The 'df' command shows : [root@VIO2]…
cd25_flo
  • 1
  • 1
  • 1
0
votes
2 answers

How granular is too granular with file permissions?

I understand that some products and tools need to have extremely granular permissioning, but what about the underlying filesystem? In a related question, I asked about filesystems than closely compare to NTFS for granularity of permissions support…
warren
  • 18,369
  • 23
  • 84
  • 135
0
votes
0 answers

Increasing size of a root EBS volume: stop or reboot instance?

I am increasing the size of a root EBS volume for EC2's t2.medium instance. The instance is ruled by Ubuntu 14.04 AMI. I have read an official guide and found that to increase root partition size one needs to stop the instance and detach the EBS…