Δημοσιεύτηκε: 09 Ιούλ 2009, 14:25
από medigeek
Τι εννοείς; Ότι δεν αξίζει να μετατραπούν άλλοι σκληροί δίσκοι/partitions εκτός από το root;
Σε περίπτωση του root δεν είμαι απόλυτα σίγουρος, επειδή πιστεύω πως είναι καλύτερα να ξεκινήσει κάποιος από ένα "φρέσκο" ext4 παρά να το μετατρέψει.

Πιστεύω πως έχει να προσφέρει πολλά, όχι μόνο για το root.
Εκείνο που ώθησε το φίλο μου (που ακολουθήσαμε μαζί την παραπάνω διαδικασία/οδηγό) να μετατρέψει το σκληρό ήταν βασικά τα ακόλουθα:
- http://ext4.wiki.kernel.org/index.php/E ... #Fast_fsck
έγραψε:Fast fsck
Fsck is a very slow operation, especially the first step: checking all the inodes in the file system. In Ext4, at the end of each group's inode table will be stored a list of unused inodes (with a checksum, for safety), so fsck will not check those inodes.


- http://ext4.wiki.kernel.org/index.php/E ... to#Extents
έγραψε: Extents
The traditionally Unix-derived file systems like Ext3 use a indirect block mapping scheme to keep track of each block used for the blocks corresponding to the data of a file. This is inefficient for large files, specially on large file delete and truncate operations, because the mapping keeps a entry for every single block, and big files have many blocks -> huge mappings, slow to handle. Modern file systems use a different approach called "extents". An extent is basically a bunch of contiguous physical blocks. It basically says "The data is in the next n blocks". For example, a 100 MB file can be allocated into a single extent of that size, instead of needing to create the indirect mapping for 25600 blocks (4 KB per block). Huge files are split in several extents. Extents improve the performance and also help to reduce the fragmentation, since an extent encourages continuous layouts on the disk.


Πιστεύω πως έχει να προσφέρει πολλά σε περίπτωση server με βάση δεδομένων, όπου ξεπερνάει το πρόβλημα για αρχεία και δεδομένα μεγάλου μεγέθους:
http://ext4.wiki.kernel.org/index.php/E ... File_Sizes
http://ext4.wiki.kernel.org/index.php/E ... ng.22_mode
http://ext4.wiki.kernel.org/index.php/E ... gmentation (Ακόμη δεν μπήκε, νομίζω από το kernel 2.6.29 και μετά)