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

Optimize file system for Linux web server with SSD and HDD

I have just taken delivery of a new Centos 7 web server which comes with a 4Tb HDD and 240Gb SSD. Both are hardware RAID. As it stands everything is installed on the SSD. I will need more than 240Gb space and would like some ideas on how to set the…
0
votes
1 answer

File System on Linux: Set up for large Elasticsearch

I am setting up a single 750GB elasticsearch node (for logstash) on CentOS 6.8 Should I just set it up as a single large disk (boot and everything in one partition)? Or should I do the : /boot # small, 15GB or so / everything else #750GB Or ?
Jonesome Reinstate Monica
  • 5,445
  • 10
  • 56
  • 82
0
votes
1 answer

File overwriting vs. Creating a new file

I have some utility, which should regularly create medium-sized plain-text file, every 10 minutes. As I understand, it will increase HDD wearout. (I use NTFS, i.e. NT file system). The question itself: What will be better, from the point of view to…
john c. j.
  • 15
  • 7
0
votes
1 answer

Btrfs is *not* using multiple devices

I've added a device to my existing Btrfs file system recently, but it doesn't report the new device as having even allocated any space for the data. Take a look: Before I started: # btrfs fi show / Label: 'LINUX' uuid:…
Isabell Cowan
  • 123
  • 1
  • 9
0
votes
1 answer

How to set noatime in fstab

I'm installing Mongo 3.4 according to this article and is saying to set noatime in /etc/fstab In the example given it looks like: LABEL=cloudimg-rootfs / ext4 defaults,noatime,discard 0 0 But mine, a droplet on digital ocean with…
Alexandru R
  • 150
  • 1
  • 11
0
votes
2 answers

ossec realtime file monitoring only reports on first change but fullow up changes are only reported by scheduled follow up scans

we currently have some ossec agents running on windows and real time monitoring for files activated - with the following configuration on the agent site:
dalini
  • 19
  • 5
0
votes
1 answer

How to enlarge the root partition on Centos 7 / ibdata1 getting too large

I have a root partition of 20G in size and it is running out of space because the /var/lib/mysql/ibdata1 is getting too large (13G now, the whole /var/lib is 15G in size). lsblk command shows something like this: sda -sda1 -sda2 (mountpoint…
0
votes
2 answers

how i can know when a new version of a file has been copied

I am working on windows server 2012 R2. now I have the following case:- Inside IIS I have a .dll file named project.dll .created on 1/1/2016 , last modified on 1/7/2016. I took a copy of this file. save it inside a secure place now I wanted to test…
John John
  • 379
  • 1
  • 4
  • 12
0
votes
3 answers

Is it possible for multiple web services to write to a centralized network directory/folder location at the same time?

I have a centralized folder location on a network drive (traditional hard disk) that is shared by a few web services running on different application servers. The services will conitinually process incoming files via HTTP requests and will write to…
Ren
  • 103
  • 5
0
votes
2 answers

Chkdsk reports unrecoverable errors

I have a drive in a laptop that was working fine, then all of a sudden stopped. Chkdsk is reporting "unrecoverable errors" and not even linux can manage to mount or see any filesystem structure. Is there a way to repair the filesystem so we can…
Terry
  • 1,073
  • 1
  • 11
  • 17
0
votes
2 answers

Tracking the amount of change data on a server volume

Scenario: I am a new admin for my company and have a single volume of 30TB (28 used) that currently has no backup configured (must be why I have this job). I am looking to at DR/offsite backup opportunities and the several backup companies I have…
0
votes
0 answers

cronjob not running after machine reboot (requires manual login)

I have set up my machines so that I can access them remotely. I also have cronjobs that run on my master server. I often access the machines on my WAN remotely - especially the master server, to make sure everything is running smoothly etc. On…
0
votes
1 answer

GlusterFS server logic

I quite don't understand about GlusterFS probes. See, i add all servers to /etc/hosts file and i do this for each server. Lets say i have 100 servers and later i added 100 more. I cannot imagine updating all 200 server's hosts file for see each…
xangr
  • 144
  • 4
0
votes
1 answer

Are general sotorage solutions suitable for ACID DB's storage?

We use IBM Storwize V3700 as storage solution in our company, it runs 3 storage volumes on RAID 5. The storage is used not only for DB's, but also for general VM storage and a shared filesystem available for the whole company. My understanding is…
0
votes
2 answers

extend the tmpfs file system

I'm trying to extend the tmfs file system size from 1.1 GB to 2GB. Tried the following commands- [root@~]# df -h /dev/shm/ Filesystem Size Used Avail Use% Mounted on tmpfs 1.1G 732K 1.1G 1% /dev/shm Edited the fstab /etc/fstab tmpfs…