Transmission 4.0.6-1
-
- Member
- Beiträge: 108
- Registriert: 07 Jul 2021 09:14
- Hat gedankt: 1 Mal
- Hat Dank erhalten: 2 Mal
Transmission 4.0.6-1
Ever since upgrading to 4.0.6-1, Transmission seems to be crashing when I decide to pause a torrent.
Zuletzt geändert von Papi2000 am 20 Mär 2025 09:13, insgesamt 1-mal geändert.
Grund: Titel etwas angepasst
Grund: Titel etwas angepasst
- Captain
- Community Administrator
- Beiträge: 15568
- Registriert: 03 Apr 2013 20:33
- Hat gedankt: 715 Mal
- Hat Dank erhalten: 17475 Mal
Re: Transmission 4.0.6-1
Which version should we use? Please make a suggestion. I don’t use the tool myself, so I have no information on what is required to use it. It would be helpful if you could provide me with the necessary details.
-
- Member
- Beiträge: 108
- Registriert: 07 Jul 2021 09:14
- Hat gedankt: 1 Mal
- Hat Dank erhalten: 2 Mal
Re: Transmission 4.0.6-1
http://www.kepfeltoltes.eu/view.php?fil ... 062351.jpgCaptain hat geschrieben: 20 Mär 2025 06:19 Which version should we use? Please make a suggestion. I don’t use the tool myself, so I have no information on what is required to use it. It would be helpful if you could provide me with the necessary details.
-
- Member
- Beiträge: 108
- Registriert: 07 Jul 2021 09:14
- Hat gedankt: 1 Mal
- Hat Dank erhalten: 2 Mal
Re: Transmission 4.0.6-1
#!/bin/sh
### BEGIN INIT INFO
# Provides: transmission-daemon
# Required-Start: networking
# Required-Stop: networking
# Default-Start: 2 3 5
# Default-Stop: 0 1 6
# Short-Description: Start the transmission BitTorrent daemon client.
### END INIT INFO
DIRECTORY="/media/hdd/transmission"
DOWNLOAD_DIR="${DIRECTORY}/download"
CONFIG_DIR="${DIRECTORY}/config"
WATCH_DIR="${DIRECTORY}/watch"
RPC_PORT=9091
USERNAME="root"
PASSWORD="enigma2"
ALLOWED="*.*.*.*,*:*:*:*:*:*:*:*"
[ -f /etc/default/transmission-daemon ] && . /etc/default/transmission-daemon
NAME="transmission-daemon"
DAEMON="/bin/nice -n 9 /usr/bin/transmission-daemon"
ARGS="-c $WATCH_DIR -g $CONFIG_DIR -r :: -a $ALLOWED -w $DOWNLOAD_DIR -p $RPC_PORT -t -u $USERNAME -v $PASSWORD"
[ -z "$DAEMON_USER" ] || SSDOPTIONS="--chuid $DAEMON_USER:$DAEMON_GROUP"
PATH=/usr/sbin:/usr/bin:/sbin:/bin
if [ ! -d $DOWNLOAD_DIR ] ; then mkdir -p $DOWNLOAD_DIR; fi
if [ ! -d $CONFIG_DIR ] ; then mkdir -p $CONFIG_DIR; fi
if [ ! -d $WATCH_DIR ] ; then mkdir -p $WATCH_DIR; fi
case $1 in
start)
echo "Starting $NAME"
start-stop-daemon $SSDOPTIONS -S -b -n $NAME -a $DAEMON -- $ARGS
;;
stop)
echo "Stopping $NAME"
start-stop-daemon --stop --quiet --exec /usr/bin/transmission-daemon
;;
restart)
echo -n "Stopping $NAME"
start-stop-daemon --stop --quiet --exec /usr/bin/transmission-daemon
for i in 1 2 3 ; do
sleep 1
echo -n "."
done
echo
echo "Restarting $NAME"
start-stop-daemon $SSDOPTIONS -S -b -n $NAME -a $DAEMON -- $ARGS
;;
autostart | enable)
echo
update-rc.d transmission-daemon defaults 60
sleep 2
echo
;;
noautostart | disable)
echo
update-rc.d -f transmission-daemon remove
sleep 2
echo
;;
*)
echo "Usage: $0 {start|restart|stop|enable|disable}"
exit 1
esac
exit 0
- Captain
- Community Administrator
- Beiträge: 15568
- Registriert: 03 Apr 2013 20:33
- Hat gedankt: 715 Mal
- Hat Dank erhalten: 17475 Mal
Re: Transmission 4.0.6-1
we use the same include in the feed with small changes
SSL Options
The first version sets CURL_CA_BUNDLE and TR_CURL_SSL_NO_VERIFY=1.
This can help if transmission-daemon has issues with SSL certificates.
Network Optimizations
sysctl -n -w net.core.rmem_max=4194304
sysctl -n -w net.core.wmem_max=1048576
These settings can improve transmission-daemon's network performance.
we use -T your script use -t
explanation
-T disables peer exchange (PEX), while -t disables utp support.
so we can change -T with -t its ok for you please test it
SSL Options
The first version sets CURL_CA_BUNDLE and TR_CURL_SSL_NO_VERIFY=1.
This can help if transmission-daemon has issues with SSL certificates.
Network Optimizations
sysctl -n -w net.core.rmem_max=4194304
sysctl -n -w net.core.wmem_max=1048576
These settings can improve transmission-daemon's network performance.
we use -T your script use -t
explanation
-T disables peer exchange (PEX), while -t disables utp support.
so we can change -T with -t its ok for you please test it