Changes between Version 2 and Version 3 of EditingConfigurationParameters
- Timestamp:
- Jan 22, 2010, 3:04:23 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
EditingConfigurationParameters
v2 v3 1 1 = Editing Configuration Files = 2 2 3 It's not always possible to set all configurations from the GUI, especially on the Daemon or the Web Interface. This guide will try to give an overview of how and what you can change. For the location of these files, look at the [ConfigFiles Configuration Files] page. 4 See the list of [wiki:ConfigurationParameters Configuration Parameters]. 3 The GUIs provide access to many but not all Client configuration properties. For some client and all Daemon configuration it is necessary to directly edit the Transmission Configuration File. 4 The location of this file may be found under the [userDocumentation User Documentation] for your system. 5 See the complete list of [wiki:ConfigurationParameters Configuration Parameters]. 5 6 6 Note: T he client ''should'' be shutdown before making changes, otherwise settings willbe reverted to it's previous state.7 Note: Transmission ''should'' be shutdown before making changes, otherwise settings may be reverted to it's previous state. 7 8 8 == Transmission-Desktop Linux/GTK, Qt, Transmission-Daemon==9 == All Flavours except Mac OS X Client == 9 10 10 GTK, CLI and Daemon (both on a Mac and Linux) usea [http://www.json.org/ JSON] formatted file, mainly because of its human readability. [[BR]]11 In general Tranmssion uses a [http://www.json.org/ JSON] formatted file, mainly because of its human readability. [[BR]] 11 12 (Consult the [http://www.json.org/ JSON] for detailed information) 12 13 === Reload Settings ===14 You can make the daemon reload the settings file by sending it the {{{SIGHUP}}} signal.[[BR]]15 Eg:16 {{{17 $ killall -HUP transmission-daemon18 }}}19 However bear in mind that if you edit settings whilst the daemon is running they may be overwritten.20 13 21 14 === Formatting === … … 43 36 }}} 44 37 38 === Daemon Reload Settings === 39 You can make the daemon reload its settings file by sending it the {{{SIGHUP}}} signal.[[BR]] 40 Eg: 41 {{{ 42 $ killall -HUP transmission-daemon 43 }}} 44 However bear in mind that if you edit settings whilst the daemon is running they may be overwritten. It is preferable to only make changes when the application is not running. 45 45 46 == Mac OS X == 46 47 == Mac OS X Client Only == 47 48 48 49 Mac OS X has a standardized way of saving user preferences files using [http://en.wikipedia.org/wiki/XML XML] format. These files are called [http://en.wikipedia.org/wiki/Plist plist] (short for property list) files. Usually there is no need to modify these files directly, since Apple provided a [http://developer.apple.com/DOCUMENTATION/Darwin/Reference/ManPages/man1/defaults.1.html command-line tool] to reliably change settings. You do need to restart Transmission before these have effect.