Search found 6 matches

by tigertailz
Thu Oct 14, 2010 3:04 am
Forum: Support
Topic: Å Ä Ö on torrent downloads.
Replies: 3
Views: 2436

Re: Å Ä Ö on torrent downloads.

Oops sorry was in a rush.

Ver: 2.10 and daemon.

What is your suggestion?
by tigertailz
Wed Oct 13, 2010 5:51 pm
Forum: Support
Topic: Å Ä Ö on torrent downloads.
Replies: 3
Views: 2436

Å Ä Ö on torrent downloads.

When I download torrents with Å Ä Ö i get strange foldernames Ã¥=Šö=ö-


I'm using Ubuntu Server and my current locale is like this.


LANG=sv_SE.UTF-8
LC_CTYPE="sv_SE.UTF-8"
LC_NUMERIC="sv_SE.UTF-8"
LC_TIME="sv_SE.UTF-8"
LC_COLLATE="sv_SE.UTF-8"
LC_MONETARY="sv_SE.UTF-8"
LC_MESSAGES="sv_SE.UTF ...
by tigertailz
Fri Oct 08, 2010 12:22 pm
Forum: General
Topic: Unrar and cleanup script - UPDATE 2025.01.29
Replies: 143
Views: 367600

Re: Implemented unrar and cleanup script

Alright, thank you. =)
by tigertailz
Fri Oct 08, 2010 12:06 pm
Forum: Web Interface
Topic: Changing download location per torrent
Replies: 2
Views: 4364

Re: Changing download location per torrent

https://trac.transmissionbt.com/ticket/3607


I filed this today, would surely help alot.
by tigertailz
Fri Oct 08, 2010 11:24 am
Forum: General
Topic: Unrar and cleanup script - UPDATE 2025.01.29
Replies: 143
Views: 367600

Re: Implemented unrar and cleanup script

# posttorrent.sh by Killemov
cd $TR_TORRENT_DIR
if [ -d "$TR_TORRENT_NAME" ]
then
if ls "$TR_TORRENT_NAME"/*.rar > /dev/null 2>&1
then
find "$TR_TORRENT_NAME" -iname "*.rar" | while read file
do
unrar x -inul /media/wd1000/unrared "$file"
done
echo "Unrarred" $TR_TORRENT_NAME >> /var/log ...
by tigertailz
Fri Oct 08, 2010 10:51 am
Forum: General
Topic: Unrar and cleanup script - UPDATE 2025.01.29
Replies: 143
Views: 367600

Re: Implemented unrar and cleanup script

Cool, is it possible to choose wich dir it will unrar to ? and if I don't wan't it to keep the torrent seeded I just comment the following line right?

transmission-remote -n name:password -t$TR_TORRENT_ID --remove-and-delete &