सब कुछ पहले से ही स्थापित है।
1 बार ट्रिम को सक्रिय करने का आदेश:
sudo fstrim -v /
इसमें कुछ समय लगेगा और फिर परिणाम दिखाए जाएंगे। उदाहरण:
sudo fstrim -v /
[sudo] password for rinzwind:
/: 93184647168 bytes were trimmed
और यह तयशुदा उपकरणों के लिए सप्ताह में एक बार चलाने के लिए डिफ़ॉल्ट रूप से सेट किया गया है:
$ locate fstrim
/etc/cron.weekly/fstrim
/sbin/fstrim
यदि आप क्रॉन जॉब की जाँच करते हैं तो यह सब समझाया जाता है:
$ more /etc/cron.weekly/fstrim
#!/bin/sh
# call fstrim-all to trim all mounted file systems which support it
set -e
# This only runs on Intel and Samsung SSDs by default, as some SSDs with faulty
# firmware may encounter data loss problems when running fstrim under high I/O
# load (e. g. https://launchpad.net/bugs/1259829). You can append the
# --no-model-check option here to disable the vendor check and run fstrim on
# all SSD drives.
exec fstrim-all
यदि मैनुअल विधि काम करती है, तो आप इसे सक्रिय करने के लिए --no-model-check
अंत में कमांड ( exec fstrim-all
) में जोड़ सकते हैं ।
लिंक फ़ाइल में एक दिलचस्प पढ़ा है। यह जांचने की भी एक विधि है कि क्या आपका डिस्क खराब है । बहुत सारे सस्ते एसएसडी दोषपूर्ण हैं और डेटा को नष्ट कर सकते हैं।
और इसे बंद करने के लिए: यह एसएसडी सहित संगत हार्डवेयर (पीडीएफ डाउनलोड) की एक सूची है ।
एक और तरीका है जहां आप discard
स्थायी ट्रिमिंग के लिए अपने fstab में जोड़ते हैं । बेंचमार्क (जर्मन) त्यागने के पक्ष में अनुकूलता ।