只是我的2美分...
旋转磁盘会缩短其使用寿命,这确实是事实。多年的经验表明,启动和停止磁盘电动机比24/7旋转引起的疲劳要严重得多。我所有启动/停止计数大的磁盘都有重新分配的扇区,并且我所有24/7旋转10年的磁盘都很好(不管信不信由你)。毕竟,磁盘是为旋转而设计的,而不是为了使驱动器空转,因此,如果您的首要任务是减轻疲劳而不是消耗电能,那么可以自由旋转24/7磁盘。
我有一个外部2TB磁盘,在闲置30分钟后它会旋转下来。该磁盘旨在24/7上电,以用于备份目的,并充当连接到Orange PI的小型NAS。
我在下面使用了udev规则
/etc/udev/rules.d
(它从未使用过,因为降速是在磁盘固件中进行的)
SUBSYSTEM=="usb", TEST=="power/autosuspend" ATTR{power/autosuspend}="-1"
尽管磁盘支持
hdparm -B
我写了一个小的守护进程,可以在启动时运行
/etc/rc.local
在日志文件中将当前日期和时间写入cicle中的10次,因此磁盘始终处于打开状态。随意修改。
命令行选项包括:写入aake.log的目标目录和(可选)时间延迟(默认为300)
例如
/usr/sbin/disk_awake /mnt/some_disk/keep_alive 30
代码:(您可以使用gcc进行编译)
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <string.h>
#include <time.h>
int main(int argc, char* argv[])
{
FILE *fp=NULL;
pid_t process_id=0;
pid_t sid=0;
int secs=300;
char log_file[512];
time_t raw_time;
struct tm *time_info;
int ticks=0;
unsigned long step=1;
if (argc<2||argc>3)
{
printf("Usage: %s target_directory [seconds]\n",argv[0]);
exit(1);
}
if (strlen(argv[1])>500)
{
printf("String length of target_directory is HUGE!\n");
exit(1);
}
if (chdir(argv[1])<0)
{
printf("Directory %s does not exist\n",argv[1]);
exit(1);
}
strcpy(log_file,argv[1]);
strcat(log_file,"/awake.log");
if (!(fp=fopen(log_file,"w+")))
{
printf("Could not open log file %s\n",log_file);
exit(1);
}
if (!(argv[2]))
{
printf("Delay argument not specified. Defaulting to 300 seconds\n");
secs=300;
}
if (argv[2]&&(secs=atoi(argv[2]))<=0)
{
printf("Could not parse delay option. Defaulting to 300 seconds\n");
secs=300;
}
printf("Delay interval %d seconds\n",secs);
process_id=fork();
if (process_id<0)
{
printf("Could not fork()\n");
exit(1);
}
if (process_id>0)
{
printf("Started with pid %d\n", process_id);
exit(0);
}
umask(0);
sid=setsid();
if(sid<0)
{
printf("Could not setsid()\n");
exit(1);
}
close(STDIN_FILENO);
close(STDOUT_FILENO);
close(STDERR_FILENO);
while (1)
{
if (ticks==10)
{
fclose(fp);
if (!(fp=fopen(log_file,"w+"))) exit(1);
ticks=0;step++;
}
time(&raw_time);
time_info=localtime(&raw_time);
fprintf(fp,"%s %lu : %s","Step",step,asctime(time_info));
fflush(fp);
ticks++;
sleep(secs);
}
fclose(fp);
return(0);
}