Câu trả lời:
Để xem chi tiết cho các công việc định kỳ hàng tuần của bạn, hãy thay đổi thư mục thành /etc/cron.weekly
hoặc đưa nó vào lệnh như dưới đây:
more /etc/cron.weekly/fstrim
Bạn sẽ thấy một đầu ra trông giống như:
#!/bin/sh
# trim all mounted file systems which support it
/sbin/fstrim --all || true
Nếu đây là hiện tại trim đang hoạt động / kiểm tra và thực hiện mỗi tuần một lần. Trợ giúp về lệnh này sẽ cho bạn thấy ...
fstrim --help
Usage:
fstrim [options] <mount point>
Options:
-a, --all trim all mounted filesystems that are supported
-o, --offset <num> the offset in bytes to start discarding from
-l, --length <num> the number of bytes to discard
-m, --minimum <num> the minimum extent length to discard
-v, --verbose print number of discarded bytes
-h, --help display this help and exit
-V, --version output version information and exit
Để xem trim có được hỗ trợ không (thay đổi sda nếu bạn có nhiều hơn 1 đĩa):
sudo hdparm -I /dev/sda | grep "TRIM supported"
và nó sẽ hiển thị một cái gì đó tương tự như thế này:
* Data Set Management TRIM supported (limit 8 blocks)