우분투 14.04에서 TRIM이 SSD 드라이브에 켜져 있는지 어떻게 확인합니까? SSD 드라이브를 확인할 가치가있는 다른 설정은 무엇입니까?
답변
주간 크론 작업에 대한 세부 사항을 보려면 다음과 같이 디렉토리를 변경 /etc/cron.weekly
하거나 명령에 포함 시키십시오.
more /etc/cron.weekly/fstrim
다음과 같은 출력이 표시되어야합니다.
#!/bin/sh
# trim all mounted file systems which support it
/sbin/fstrim --all || true
이것이 존재하면 트림이 활성화 / 체크되고 일주일에 한 번 실행됩니다. 이 명령에 대한 도움말이 표시됩니다.
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
트림이 지원되는지 확인하려면 (디스크가 두 개 이상인 경우 sda를 변경) :
sudo hdparm -I /dev/sda | grep "TRIM supported"
그리고 이와 비슷한 것을 보여 주어야합니다.
* Data Set Management TRIM supported (limit 8 blocks)