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

linux filesytem options for vmware esxi nfs datastore

I want to use linux based NFS datatstore in vmware esxi 6.5 .Which linux file system is best suited for this prurpose ? I tried xfs,but it has defrangementation issue mentioned here…
Babasaheb
  • 31
  • 2
  • 10
0
votes
1 answer

Is there a fast way to obtain filesystem capacity and usage by reading a single file?

Is there a file system usage measurement in any /sys or /proc files? Similarly for processes, besides diskstats is there a way to read a single number that reports total disk capacity consumed? I ask because I need it for a low profile program and…
CarlH
  • 111
  • 3
0
votes
1 answer

centos 7 - extend current partition with a new disk

My file system /mysql_database mounted from disk /dev/sdb, partition /dev/sbd1 is 100% filled. I just added a new disk /dev/sdc from VMWARE and I need to extend the current one. (/dev/sdb1), so my mount point /mysql_database can be…
catalin
  • 115
  • 2
  • 9
0
votes
1 answer

How to extend volume group to the size of the Linux physical volume

I started off with a 25GB hard drive, and wanted to extend it to 150GB. I used fdisk to extend the /dev/sda2 partition from 26GB to 149GB. lsblk shows the following information: NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT sda 8:0 …
AndreasKralj
  • 331
  • 1
  • 6
  • 16
0
votes
0 answers

restore centos with recovered files

The file system of our centOS 7 was broken and could not be fixed (we tried lots of ways, all failed). Luckily we got most of the files (maybe some is missing) with a disk recovery tool. Now we have files under / and /home in an USB hard disk. We…
Han He
  • 101
  • 1
0
votes
1 answer

Lustre MDT full, rm: cannot remove No space left on device

I have a production server with lustre file system in it. It has 2 OSTs and one MDT. Now i my MDT is full. I can't delete my old files. Here a snapshot of my lustre file system. $ lfs df -i UUID Inodes IUsed IFree…
0
votes
1 answer

Is it possible to browse files from HDD containing OS esxi?

my office have a broken esxi server that suddenly doesn't want to boot up. I am suspecting it is caused by motherboard. I am trying to access the server's Hard drive to get some VM files inside the hard drive. I tested to browse the hard drive using…
jr_jr
  • 1
  • 1
0
votes
1 answer

Overwrite directory creation mode using linux acl

I try to give specific user(for example "test") right to read any new created directory. I do that using: undefine@undefine-ThinkPad-T430s:~/test$ getfacl . # file: . # owner: undefine # group:…
undefine
  • 1,046
  • 9
  • 21
0
votes
1 answer

live server disk image backup data integrity

I've been looking for a way to do a disk image backup of a running linux server. There are several questions which answer this, like How to make a disk image, Mirror Live Linux (Debian) Server, Linux live hot backup snapshot and debian live server…
0
votes
1 answer

virtualmachine lvm reduce size KVM Debian9

I have got 4 6TB HDD's, each is divided into 5 partitions: 1) ESP - 250mb 2) raid - rootfs 14gb raid1 3) swap - 5gb 4) raid - 70gb raid1 LVM's for VM's 5) raid - 16tb raid5 LVM for storage And question is regarding (5). After creating raid5…
GregorPL
  • 1
  • 1
0
votes
1 answer

ext4 mysterious "No space left on device" error

Im having trouble with my ext4 filesystem. Im using this with NFS to make it available to remote machines. Now its showing a mysterious "No space left on device" error when im trying to mkdir $name but noting seems to help. If i move or cp files…
Nico
  • 135
  • 4
0
votes
2 answers

Delete a log while is written using SED - /var/log/messages

I had a filesystem that was over 60%. I found that the file /var/log/messages had more than 4 million lines so I decided to delete 2 million lines in order to clear some space. I executed the command sed -i '1,2000000d' /var/log/messages the…
0
votes
0 answers

How to prevent 416 and 206 when creating mp4 files on the fly

I have a site that uses multiple servers - main, database, images, ffmpeg/video files. The main server uses wordpress that has a front end form which users use to create posts. They can choose a combination of options and upload pictures to create a…
730wavy
  • 101
  • 4
0
votes
1 answer

How to recover an ext4 signature deleted with fdisk?

While resizing an EBS volume on Amazon AWS I accidentally deleted the ext4 signature. root@server:~# fdisk /dev/xvdf Welcome to fdisk (util-linux 2.31.1). Changes will remain in memory only, until you decide to write them. Be careful before using…
jeremyjr
  • 375
  • 2
  • 7
  • 15
0
votes
1 answer

How to add a user to a group?

Self-mockery : Fantastic question. I followed sudo usermod -a -G grp uzr in order to add uzr into grp. When I type groups uzr I get uzr : adm cdrom ... grp and when I'm logged in with uzr I type groups and I get adm cdrom .... But no mention of grp…