Changes between Version 21 and Version 22 of MovedToGitHub/Building
- Timestamp:
- Nov 16, 2008, 1:14:19 AM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
MovedToGitHub/Building
v21 v22 96 96 * {{{HOME}}} (optional) = if set, this will override where Transmission thinks your home directory is 97 97 98 If {{{TRANSMISSION_HOME}}} isn't set, {{{HOME}}} is used to determine the location of the configuration folder's location. Also, it is used for the default download folder, unless specified otherwise in the preferences. ({{{$HOME/Downloads/}}}) 98 If {{{TRANSMISSION_HOME}}} isn't set, {{{HOME}}} is used to determine the location of the configuration folder's location. Also, it is used for the default download folder, unless specified otherwise in the preferences. ({{{$HOME/Downloads/}}}) 99 99 100 100 ==== XDG Environment Variables ==== … … 107 107 108 108 === Debug === 109 * 110 * 111 *112 *113 * 109 These environment variables let you control the debug output of Transmission. 110 * {{{TR_DEBUG_FD}}} 111 * = If set to 1, It'll output debug messages to {{{stdout}}} 112 * = If set to 2, It'll output debug messages to {{{stderr}}} 113 * {{{TR_CURL_VERBOSE}}} = if set to nonzero, it'll spew libcurl messages to {{{stderr}}} 114 114 115 Example use of {{{TR_DEBUG_FD}}}, in bash: 116 {{{ 117 $ export TR_DEBUG_FD=2 118 $ transmission 2>runlog 119 }}} 120 This will write all the flood of messages to a new file named "runlog". (Note: 2>runlog means pipe file descriptor 2 to the file "runlog". It could be any number, but I always use 2 for no reason in particular) 115 121 116 122 ----