सख्त जवाब
समाधान जैसे -E lazy_itable_init
परिणाम नहीं बदलते हैं, केवल प्रक्रिया को गति देते हैं। यह वही है जो स्पष्ट रूप से अभी तक पूछा गया है कई मामलों में लोगों को और अधिक की आवश्यकता है।
अतिरिक्त बोनस
ज्यादातर मामलों में आप वास्तव में कुछ विकल्प चाहते हैं जो आपके उपयोग पैटर्न से मेल खाते हों और न केवल फाइल सिस्टम निर्माण में तेजी लाते हैं बल्कि तेजी से उपयोग और अधिक उपयोग करने योग्य स्थान की अनुमति देते हैं।
मैंने सिर्फ एक परीक्षण किया। उपयोग किए बिना भी -E lazy_itable_init
, 2TB फाइल सिस्टम के निर्माण के समय के नीचे के विकल्प 16 मिनट 2 सेकंड से 1 मिनट 21 सेकंड (इंटेल i7 2.2GHz पर कर्नेल 3.5.0 64 बिट, USB2 कनेक्शन पर 2TB डिस्क - SATA शायद तेज हो जाएगा। ।
एक फाइलसिस्टम के लिए जो बड़ी फ़ाइलों को रखेगा, मैं इस संयोजन का उपयोग करता हूं:
mkfs.ext3 /dev/sdXX -O sparse_super,large_file -m 0 -T largefile4
जहां -T largefile4
विकल्प /etc/mke2fs.conf
आम तौर पर कुछ शामिल हैं:
inode_ratio = 4194304
blocksize = -1
एक है man mke2fs
इन विकल्पों में से प्रत्येक पर जानकारी के लिए।
यहाँ प्रासंगिक अर्क हैं:
sparse_super
Create a filesystem with fewer superblock backup copies (saves space on large filesystems).
large_file
Filesystem can contain files that are greater than 2GB. (Modern kernels set this feature automatically
when a file > 2GB is created.)
-i bytes-per-inode
Specify the bytes/inode ratio. mke2fs creates an inode for every bytes-per-inode bytes of space on the disk. The
larger the bytes-per-inode ratio, the fewer inodes will be created. This value generally shouldn't be smaller than
the blocksize of the filesystem, since in that case more inodes would be made than can ever be used. Be warned that
it is not possible to expand the number of inodes on a filesystem after it is created, so be careful deciding the
correct value for this parameter.
-m 0
केवल रूट के लिए 5% आरक्षित नहीं करने के लिए कहता है, जो डेटा (बूट / रूट नहीं) फाइल सिस्टम के लिए ठीक है। 2TB डिस्क के 5% का मतलब 100Gb है। यह एक बहुत महत्वपूर्ण अंतर है।