Transmission added to storage pool problems
Posted: Wed Dec 29, 2010 10:53 am
I added /var/hda/files/torrents to my storage pool to be able to have my torrents using the storage pool and not filling up my sys drive. But I seem to have run into a bit of problems. If Transmission pauses a download greyhole will move the file out to the storage pool. It also sets the owner to root of the link and after that Transmission can't continue. Since Transmission adds it's own folder under files I thought that this issue was already dealt with by Amahi, but I was misstaken. I guess one way would be to mount the torrents share localy nad use that mount when downloading the torrents. But feels like a bit of a dumb solution. Is there any best practice solution to this? I guess I'm not the first one using my Amahi to download torrents and whant it to use the storage pool.
Is there any possibility to have Transmission move finished downloads to another folder? (Like uTorrent can). In that case one could download andw when finished move it into a folder used by the storagepool.
Is there any known good script (or I'll make my own) to scan a given folder for pictures, music and movies and move them to specified folders? In that case one could even have a download folder for the torrents and then move them all out to their correct folders when done.
Would actually be a nice feature to have in the torrent client. Setting "move" when downloading a torrent and having it placed in the "movies" folder when done. Selecting music on a download and having it moved to the "music" folder when done etc.
One quick a dirty way to do it would probably be to set up a script to run this a regular intervals in the torrent download folder
rsync -rvt --include='*/' --include='*.avi' --include='*.mkv' --exclude='*' . ../Movies/
rsync -rvt --include='*/' --include='*.mp3' --include='*.ogg' --exclude='*' . ../Music/
etc
Is there any possibility to have Transmission move finished downloads to another folder? (Like uTorrent can). In that case one could download andw when finished move it into a folder used by the storagepool.
Is there any known good script (or I'll make my own) to scan a given folder for pictures, music and movies and move them to specified folders? In that case one could even have a download folder for the torrents and then move them all out to their correct folders when done.
Would actually be a nice feature to have in the torrent client. Setting "move" when downloading a torrent and having it placed in the "movies" folder when done. Selecting music on a download and having it moved to the "music" folder when done etc.
One quick a dirty way to do it would probably be to set up a script to run this a regular intervals in the torrent download folder
rsync -rvt --include='*/' --include='*.avi' --include='*.mkv' --exclude='*' . ../Movies/
rsync -rvt --include='*/' --include='*.mp3' --include='*.ogg' --exclude='*' . ../Music/
etc