Version 2 (modified by rb07, 12 years ago) (diff) |
---|
Specific Configuration on NASes
- transmission-daemon needs to be run with EVENT_NOEPOLL defined on the environment. This applies to all versions of libevent, up to the current (2.0.11-stable). Reason: epoll has bugs on the kernel shipped with these devices.
Example
EVENT_NOEPOLL=1 transmission-daemon -f
incorporated into the start-up script (needs to be adapted to the specific script used):
... EVENT_NOEPOLL=1; export EVENT_NOEPOLL start-stop-daemon --start --quiet --chuid ${TR_USERNAME:-nobody} --exec transmission-daemon -- ${OPTIONS[@]} ...