3 Configuration Files
Charles Kerr edited this page 2020-04-30 16:46:08 -05:00

Locations

Mac OS X Defaults

WhatWhere
Per-torrent settings$HOME/Library/Application Support/Transmission
Application settings$HOME/Library/Preferences/org.m0k.transmission.plist
Default download folder$HOME/Downloads

Linux / GTK Defaults

WhatWhere
GTK+/Qt client settings$HOME/.config/transmission
Daemon settings$HOME/.config/transmission-daemon
CLI settings$HOME/.config/transmission-cli
Default download folder$HOME/Downloads

Some Linux distributions' start script for transmission-daemon use different location. This varies by distribution, but two paths sometimes used are /var/lib/transmission-daemon and /var/run/transmission.

If you want to swap between the two applications, all you have to do is pass in a different config directory with the -g command-line option. For example, to have the daemon pick up where the gtk+ client left off, run transmission-daemon -g ~/.config/transmission.

Windows Defaults

WhatWhere
Qt client settings%LOCALAPPDATA%/transmission
Daemon settings%LOCALAPPDATA%/transmission-daemon
Default download folder%LOCALAPPDATA%/Downloads

Overriding the Defaults

The per-user configuration folder's location can be overridden by setting TRANSMISSION_HOME and/or other environment variables.

Files

The configuration folder typically has the following files:

settings.json

This is a json-encoded file that holds all the client's settings and preferences. It's currently only used by the daemon, GTK+ and CLI clients. json was chosen because it's mostly human-readable and -writable, but also allows data hierarchies to be stored. See the Editing Configuration Files page on how to modify them.

stats.json

This is a json-encoded file that holds session statistics such as running upload and download byte counts.

torrents/

This subfolder holds the .torrent files that have been added to Transmission. The files in this folder are named with a combination of the torrent's name (to make it human-readable) and a portion of the torrent's SHA1 hash (to avoid filename collisions from similarly-named torrents).

resume/

This subfolder holds .resume files that hold information about a particular torrent, such as which parts have been downloaded, the folder the downloaded data was stored in, and so on. These follow an identical naming scheme to the files in the torrents subfolder.

blocklists/

This subfolder holds bluetack-formatted blocklists. Files ending in ".bin" are generated by Transmission as it parses a bluetack file and stores it into a binary format for faster lookups. On startup, Transmission will try to parse any non-".bin" file and generate a new blocklist from it, so you can have multiple blocklists just by copying new bluetack files into this location. See Blocklists for more information.

Legacy Versions of Transmission

Older, pre-XDG versions of transmission-gtk and transmission-daemon stored their settings in $HOME/.transmission. Newer releases try to automatically migrate these files to $HOME/.config/transmission/.