Questions tagged [ext4]

The ext4 or fourth extended filesystem is a journaling file system for linux/*nix developed as the successor to ext3.

469 questions
0
votes
2 answers

mkfs.ext4 command not available in fedora 8

Is ext4 file system supported on fedora 8? If yes, then how do i enable it? I am unable to see format command for ext4. I can see only mkfs.ext3 and mkfs.ext2.
0
votes
1 answer

EXT4 Single Larger Volume or Many Smaller Volumes

My question is regarding the file system performance of EXT4 volumes relative to size. We have a NAS running any arbitrary Linux platform. The NAS has (12) 4TB disks in a hardware RAID 6 with LVM resulting in approximately 40 TB of usable storage.…
sardean
  • 833
  • 3
  • 15
  • 34
0
votes
1 answer

Is my default File System ext4

By running df -hT that shows mounted file systems, how can I know if my default FS is ext4? Also as mentioned by one of the MongoDB engineers in this video (@1:13) from M202: MONGODB ADVANCED DEPLOYMENT AND OPERATIONS (excellent class btw), one…
Ostati
  • 103
  • 2
0
votes
1 answer

LVM on disk with no partition table. How to reallocate free space with fdisk?

I shrank an LVM in half using these commands: e2fsck -f /dev/VG/LV resize2fs /dev/VG/LV 5G lvreduce -L 5G /dev/VG/LV Inspecting the physical volume yields this: --- Physical volume --- PV Name /dev/sdb VG Name VG …
user2363318
  • 361
  • 1
  • 3
  • 11
0
votes
0 answers

Resizing a software RAID remotely, no LVM, / partition

I have a server that has a software RAID without LVM. That is only mdadm. There are the partitions /dev/sda2 and /dev/sdb2 which form /dev/md2. There is also a lot of space after both /dev/sda2 and /dev/sdb2 (almost 2TB) What I want to do is resize…
alexandernst
  • 534
  • 3
  • 9
  • 21
0
votes
0 answers

Linux filesystem ext4 fragmentation

I have a question about the filesystem ext4 and disk fragmentation: Does ext4 place files in the same directory near or next to each other on the disk? And if so how is it fragmented, for example is filename important? I ask this because we've a…
klaasio
  • 79
  • 5
0
votes
0 answers

Replacing files with symlinks takes more space - Fedora19 EXT4

Background: We are using PHP CacheLite. In order to have a human readable path to cache files cache_{hash}_{hash}, there is a symbolic link that is more descriptive of the cache contents. We deployed a new server and rather than warming cache via…
0
votes
2 answers

existing files are "invisible" to some applications

I have a problem with accessing files on an ext4 file system mounted as type NFS on a Linux server running CENTOS 6.5. I know the files exist on this file system because I can see them when I explicitly call them (e.g. with ls, awk, or cat), but…
geoweaser
  • 63
  • 1
  • 1
  • 7
0
votes
1 answer

How do I allow users to add/modify files in a directory but not change the directory - Linux

How can I modify a directory so that it is owned by a group and users in that group can add and delete files and create sub directories but are unable to change the permissions on the parent directory? For example I would like any use in the 'users'…
Peter
  • 1,102
  • 3
  • 18
  • 32
0
votes
1 answer

fsck ext4 inode error

Today while I was booting I got an error in an ext4 partition with some inodes. I just entered the root password and run fsck manually but I am a bit worried. fsck warned many times about some errors with inodes and asked me if I wanted to clear…
Javier
  • 105
  • 4
0
votes
1 answer

Why is file rewrite slower?

on Linux, using various benchmark tools (bonnie++, iozone, etc) on ext4 (but i guess it's the same on other FS), rewrite is always slower than write to new files. For example, using bonnie++, with 24GB files (host with 12GB), block write is 167MB/s…
Benoît
  • 1,341
  • 3
  • 11
  • 23
0
votes
1 answer

ext4 production ready on kernel 2.6.32 (debian6)?

I've to maintain a production system on debian6 (kernel version 2.6.32). I'd like to use ext4 on a ssd disk (and generally hope to improve performance upgrading from ext3). I can't find any reference about the ext4 state on that…
Fabio Bonfante
  • 346
  • 2
  • 5
0
votes
1 answer

Errors when repairing ext4 filesystem

I just tried to boot from live CD and checked my file system using fsck,fsck.ext4, no errors was reported/fixed (i.e. says file system is clean), yet when I'm inside of system it tells me something else: [alexus@XXXXXXXX Desktop]$ sudo fsck.ext4 -n…
alexus
  • 13,112
  • 32
  • 117
  • 174
0
votes
1 answer

remount / move root folder to another partition on centos

We have an EC2/CentOS6 instance with "/" mounted to an EXT4 partition, and now another bigger sized hard disk formatted in XFS attached to the system. Since the former partition for "/" is insufficient in space and no LVM setup, what's the steps…
Jason Hsu
  • 129
  • 5
0
votes
1 answer

How can I deal with a directory on an ext4 volume that has so many files ls won't work?

I setup a motion detection software on linux and in the process created a directory with so many jpg files in it that running "ls mydirectory" just hangs. How can I split the content into several subdirectories when I can't even get a listing of…