Widać w sieci zamieszanie z dyskami w Ubuntu, sprawdziłem na moim serwerze i mam już ponad 1 500 000 cykli
smartctl -d ata -a /dev/hda | grep Load_Cycle_Count
Cytuj:
225 Load_Cycle_Count 0x0012 001 001 000 Old_age Always - 1509486
Czytałem troche w sieci i niewiem co trzeba zrobić żeby zadziałalo to n a NND.
W NND nie mam tego pliku /etc/hdpar.conf i tych w acpi
Cytuj:
1) I added the following lines to my hdparm.conf:
/dev/sda {
apm = 255
}
2) I created a file /etc/acpi/resume.d/99-stop-hitachi-madness.sh
with the following contents:
#!/bin/sh
hdparm -B 255 /dev/sda
lub
Cytuj:
Here is how I permanently fixed it:
1) make a file named "99-hdd-spin-fix.sh". The important thing is starting with "99".
2) make sure the file contains the following 2 lines (fix it if you have PATA HDD):
#!/bin/sh
hdparm -B 255 /dev/sda
3) copy this file to 3 locations:
/etc/acpi/suspend.d/
/etc/acpi/resume.d/
/etc/acpi/start.d/