บน Ubuntu 14.04 คุณจะตรวจสอบว่า TRIM เปิดอยู่สำหรับไดรฟ์ SSD ได้อย่างไร การตั้งค่าอื่น ๆ ที่ควรตรวจสอบสำหรับไดรฟ์ SSD หรือไม่
บน Ubuntu 14.04 คุณจะตรวจสอบว่า TRIM เปิดอยู่สำหรับไดรฟ์ SSD ได้อย่างไร การตั้งค่าอื่น ๆ ที่ควรตรวจสอบสำหรับไดรฟ์ SSD หรือไม่
คำตอบ:
หากต้องการดูรายละเอียดสำหรับงาน cron รายสัปดาห์ของคุณให้เปลี่ยนไดเรกทอรีเป็น/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
หากต้องการดูว่ารองรับการตัดแต่งหรือไม่เปลี่ยน SSA หากคุณมีดิสก์มากกว่า 1 แผ่น:
sudo hdparm -I /dev/sda | grep "TRIM supported"
และควรแสดงสิ่งที่คล้ายกับสิ่งนี้:
* Data Set Management TRIM supported (limit 8 blocks)