Search found 306 matches

by mike.dld
Sun Feb 25, 2018 4:41 pm
Forum: Windows Support
Topic: How to make "script-torrent-done-filename" working in windows
Replies: 20
Views: 15781

Re: How to make "script-torrent-done-filename" working in windows

1. Particular transmission-2.93+-r96926a8337-x64 build has start time over 180 sec+ (during this time GUI is inaccessible): ... This seems to be an issue affecting all released and unreleased Windows builds. Disabling port forwarding helps and it's on our TODO list to fix it properly. 2. Working Pa...
by mike.dld
Sun Feb 25, 2018 12:54 pm
Forum: Windows Support
Topic: How to make "script-torrent-done-filename" working in windows
Replies: 20
Views: 15781

Re: How to make "script-torrent-done-filename" working in windows

@i3laze I've made some changes to the script execution code recently, see https://github.com/transmission/transmission/issues/405. If you could try latest nightly and report back what would be great. If you already are using latest nightly, I believe there should either be an error message in the l...
by mike.dld
Sun Feb 25, 2018 12:47 pm
Forum: Windows Support
Topic: Graceful shutdown (Windows daemon)
Replies: 4
Views: 5670

Re: Graceful shutdown (Windows daemon)

taskkill (w/o /f) works fine for me on Windows 8. What Windows version do you have? What Transmission version do you have?
by mike.dld
Thu Feb 22, 2018 7:23 pm
Forum: Mac Support
Topic: v2.93 - Trojan:OSX/KeRanger.B
Replies: 7
Views: 47076

Re: v2.93 - Trojan:OSX/KeRanger.B

I can't even find OSX/KeRanger.A, let alone OSX/KeRanger.B, in their database: https://www.f-secure.com/en/web/labs_gl ... ions-index :(
by mike.dld
Thu Feb 22, 2018 7:15 pm
Forum: Mac Support
Topic: v2.93 - Trojan:OSX/KeRanger.B
Replies: 7
Views: 47076

Re: v2.93 - Trojan:OSX/KeRanger.B

There's a SHA256 link to VirusTotal site where you can see that Mac DMG was checked by F-Secure yesterday (20180221) and it found nothing wrong with it: https://www.virustotal.com/en/file/61cd9b74cc542458fe2e41be6ac76d8b4201a94293bf681f8d75e12e64bd8d95/analysis/. I also can't find any information on...
by mike.dld
Thu Feb 15, 2018 3:53 am
Forum: Support
Topic: ulimit values for transmission script torrent done
Replies: 1
Views: 2821

Re: ulimit values for transmission script torrent done

Check the /etc/security/limits.conf (or additional files in /etc/security/limits.d/) to see and adjust the global limits. The "item" (3rd column) will be "as" in your case. If there is no rule for transmission, you could add one; either refer to the comments in the file itself or...
by mike.dld
Mon Feb 12, 2018 8:07 am
Forum: Support
Topic: ulimit values for transmission script torrent done
Replies: 1
Views: 2821

Re: ulimit values for transmission script torrent done

Please don't double-post. Previous thread removed.

The limit is clearly shown in "Max address space" line. It's in different units, but if you divide 256800000 by 1024 you'll get exactly 250781.
by mike.dld
Wed Feb 07, 2018 5:47 pm
Forum: Support
Topic: Not Moving eBooks
Replies: 15
Views: 8118

Re: Not Moving eBooks

If you're not new to computer programs in general and command line in particular, those are the arguments that you pass to the program when you start it. I don't know how exactly you're running transmission inside the docker, so I cannot advise you how to pass those arguments to the daemon.
by mike.dld
Wed Feb 07, 2018 8:18 am
Forum: Support
Topic: Transmission keeps showing the "Welcome to transmission" box
Replies: 5
Views: 3253

Re: Transmission keeps showing the "Welcome to transmission" box

Do you have Transmission installed and did you run it at least once? If the answer to both is yes, check if the file and directory storing the preferences have correct permissions. You should see something like this: $ ls -ld ~/Library/Preferences drwx------+ 256 mikedld staff 8704 Feb 7 11:13 /User...
by mike.dld
Tue Feb 06, 2018 8:06 pm
Forum: Support
Topic: Transmission keeps showing the "Welcome to transmission" box
Replies: 5
Views: 3253

Re: Transmission keeps showing the "Welcome to transmission" box

The legal notice is only shown once on the very first start. There is no connection between the donation box and actual donations you make. It's shown once a week at most though, and you could check the "Don't bug me about this ever again" box if you don't want to see. If you see those aga...
by mike.dld
Tue Feb 06, 2018 7:48 pm
Forum: Support
Topic: Not Moving eBooks
Replies: 15
Views: 8118

Re: Not Moving eBooks

If you take a look at the man page, what you need to do is pass -e/--logfile, and maybe --log-{error,info,debug}, to transmission-daemon to get a log file. If you don't to that, default is to write the messages to syslog.
by mike.dld
Wed Jan 31, 2018 9:07 am
Forum: General
Topic: What user does the transmission for script-done running script after download
Replies: 2
Views: 4086

Re: What user does the transmission for script-done running script after download

Is there a particular reason why you're using hard-coded "/mnt/sda1/Downloads/Complete" instead of $TR_TORRENT_DIR when constructing REMOTE_SOURCE value?
by mike.dld
Tue Jan 30, 2018 4:15 pm
Forum: General
Topic: What user does the transmission for script-done running script after download
Replies: 2
Views: 4086

Re: What user does the transmission for script-done running script after download

I wasn't asking you to run the script from outside of Transmission :) What I'm talking about is adding a line to your script such as id -a > /tmp/id.log And then adding a small torrent that will complete quickly, and check out what's written to that /tmp/id.log file which would be the information on...
by mike.dld
Tue Jan 30, 2018 9:36 am
Forum: General
Topic: What user does the transmission for script-done running script after download
Replies: 2
Views: 4086

Re: What user does the transmission for script-done running script after download

You could add a command such as `id -a` to your script (and redirect its output somewhere) to see what user and groups are effective. Script is running with same credentials as the Transmission itself, there is no special magic being done to change that.
by mike.dld
Wed Jan 24, 2018 2:09 pm
Forum: General
Topic: How to track a new added torrent by its ID?
Replies: 1
Views: 3193

Re: How to track a new added torrent by its ID?

Information about original torrent file name is lost after you add it. If you want to track the torrent completion, you'll need to either use infohashes or map those to your IDs. E.g. you could get an infohash by executing transmission-show mytorrent_123.torrent | awk '/Hash:/{print $2}' . Then when...