XPEnology
April 16

XPEnology. "Ловля блох". ч.2

ПРОБЛЕМА:
Спам (polling_sys_current.c:38 ioctl device failed) каждую минуту в /var/log/scemd.log
РЕШЕНИЕ:
1. Редактировать файл

# nano /etc.defaults/syslog-ng/patterndb.d/scemd.conf
filter f_scemd_ioctl { program(scemd) and match("polling_.*ioctl\ device\ failedquot; value("MESSAGE")); };
log { source(src); filter(f_scemd_ioctl); flags(final); };

filter f_scemd_sev { level(info..emerg) };
filter f_no_auth { not facility(auth); };
destination d_scemd { file("/var/log/scemd.log"); };
log { source(src); filter(f_scemd); filter(f_scemd_sev); filter(f_no_auth); destination(d_scemd); };

2. Перезапустить службу

systemctl restart syslog-ng

Источник:

https://xpenology.com/forum/topic/32861-hdd-fail-to-hibernate-after-upgrade-from-622-to-623/page/2/#comment-161474