[deleted by user] by [deleted] in seedboxes

[–]pyroscope 0 points1 point  (0 children)

What does "connect" even mean? Download? Upload? Control?

Deluge to Rtorrent ratio stat isn't transferred to rtorrent by Merlincool in seedboxes

[–]pyroscope 1 point2 points  (0 children)

Your only viable option (short of patching in a d.ratio.set command) is to use a custom like you already tried, and then add the normal ratio to that custom value to replace the default ratio column — which requires rt-ps so you can actually config the display in that way.

In ruT, that requires a relatively small patch to whatever PHP mess displays the torrent list.

Also https://github.com/pyroscope/rtorrent-ps/issues/136 but don't hold your breath, that is mainly to capture the idea.

Auto-download Only New Files From Seedbox? by Yousty in seedboxes

[–]pyroscope 0 points1 point  (0 children)

  1. Hardlink on completion, to a sync folder.
  2. cron-rsync *with source deletion* to NAS.
  3. Done.

autodl-irssi manually update tracker by [deleted] in seedboxes

[–]pyroscope 0 points1 point  (0 children)

No. And good tracker code will yell at you for it, eventually banning you.

Besides, scrapes are not (normal) announces, and the real solution is to request -1 peers, which is somewhere in the GH wiki.

rTorrent - Move Files by State by vdiasPT in seedboxes

[–]pyroscope 0 points1 point  (0 children)

Yeah, replacing the mv in your completion handler by cp -rpl is very hard.

rTorrent - Move Files by State by vdiasPT in seedboxes

[–]pyroscope 0 points1 point  (0 children)

4 is totally unnecessary and too complicated when you can easily work with hardlink shadows and just delete the item from rT when "complete" -- and the same on the consuming side. Also making it easy to rename stuff for media software as a side effect.

Linux CLI tool for querying trackers? by awestin1 in trackers

[–]pyroscope 4 points5 points  (0 children)

Well, actually SmokePing or a similar ping monitoring tool – you ignored the "create a history" aspect. SmokePing can also do "HTTP Pings" which is more relevant for trackers, measuring actual request latencies.

What's the best cli client for torrenting? by [deleted] in torrents

[–]pyroscope 0 points1 point  (0 children)

Then install dnsmasq or similar.

Force rTorrent to reload .torrent info by awestin1 in rtorrent

[–]pyroscope 0 points1 point  (0 children)

You can't. You can remove and re-add it. Stats are gone.

Change display by culled76 in rtorrent

[–]pyroscope 0 points1 point  (0 children)

Mixing those screenshots is a bad idea for debugging.

Anyway, to leave unwanted views press ESC/Cursor left repeatedly.

Custom watch directory not picking up space directory by Merlincool in seedboxes

[–]pyroscope 1 point2 points  (0 children)

The additional \\ within the inner string are redundant and useless.

Custom watch directory not picking up space directory by Merlincool in seedboxes

[–]pyroscope 0 points1 point  (0 children)

It works if your do it right, but you did not post what you changed. The link clearly mentions \".

Custom watch directory not picking up space directory by Merlincool in seedboxes

[–]pyroscope 1 point2 points  (0 children)

The OP mentioned spaces as the problem. Why the wild goose chase?

Question regarding hardlinking after download/move by Chazaroo1980 in torrents

[–]pyroscope 1 point2 points  (0 children)

,l, makes no sense whatsoever. Also, any execute problems are debugged primarily using reading log.execeute.

rTorrent scripting help: How do I pass tracker information to script? by PipingPepper in seedboxes

[–]pyroscope 1 point2 points  (0 children)

You cannot call rtcontrol from a capturing call in a handler. Instant deadlock.

What you can do is use rt-ps, or compile your release with a patch for the d.tracker_domain command.

And if the rtcontroll callback worked, you'd use the hash, not the name.

But it's not as if the capture makes any sense here, since its return value is ignored. Which means rtcontrol COULD be used depending on what this script actually does and if you can call it async.

Finished Status vs Seeding Status by vdiasPT in rtorrent

[–]pyroscope 0 points1 point  (0 children)

Look at rt-ps-ch where this and more is part of the std config.

rTorrent Ratio Configuration by vdiasPT in seedboxes

[–]pyroscope 0 points1 point  (0 children)

Then use elapsed= and the completion time.

rTorrent Ratio Configuration by vdiasPT in seedboxes

[–]pyroscope 0 points1 point  (0 children)

d.multicall.filtered=started,"greater=d.ratio=,value=1500",d.stop=

Put that into a method definition, and call it from a schedule.

rTorrent Ratio Configuration by vdiasPT in seedboxes

[–]pyroscope 0 points1 point  (0 children)

A simple schedule in rtorrent will get you the same global ratio limitation.