mirror of
https://github.com/transmission/transmission
synced 2025-01-31 03:12:44 +00:00
updated daemon manpage
This commit is contained in:
parent
4c82187933
commit
f9f8e18865
1 changed files with 27 additions and 35 deletions
|
@ -1,26 +1,14 @@
|
||||||
.\" $Id$
|
.\" $Id$
|
||||||
.\"
|
.\"
|
||||||
.\" Copyright (c) 2007 Joshua Elsasser
|
.\" Copyright (c) 2008 Charles Kerr
|
||||||
.\"
|
.\"
|
||||||
.\" Permission is hereby granted, free of charge, to any person obtaining a
|
.\" This file is licensed by the GPL version 2. Works owned by the
|
||||||
.\" copy of this software and associated documentation files (the "Software"),
|
.\" Transmission project are granted a special exemption to clause 2(b)
|
||||||
.\" to deal in the Software without restriction, including without limitation
|
.\" so that the bulk of its code can remain under the MIT license.
|
||||||
.\" the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
.\" This exemption does not extend to derived works not owned by
|
||||||
.\" and/or sell copies of the Software, and to permit persons to whom the
|
.\" the Transmission project.
|
||||||
.\" Software is furnished to do so, subject to the following conditions:
|
|
||||||
.\"
|
|
||||||
.\" The above copyright notice and this permission notice shall be included in
|
|
||||||
.\" all copies or substantial portions of the Software.
|
|
||||||
.\"
|
|
||||||
.\" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
.\" IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
.\" FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
.\" AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
.\" LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
.\" FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
||||||
.\" DEALINGS IN THE SOFTWARE.
|
|
||||||
|
|
||||||
.Dd March 30, 2007
|
.Dd May 19, 2008
|
||||||
.Dt TRANSMISSION-DAEMON 1
|
.Dt TRANSMISSION-DAEMON 1
|
||||||
.Os
|
.Os
|
||||||
.Sh NAME
|
.Sh NAME
|
||||||
|
@ -31,37 +19,41 @@
|
||||||
.Nm transmission-daemon
|
.Nm transmission-daemon
|
||||||
.Fl h
|
.Fl h
|
||||||
.Nm
|
.Nm
|
||||||
.Op Fl df
|
.Op Fl f
|
||||||
.Op Fl p Ar pid-file
|
.Op Fl a Ar (+|-)x.x.x.x[/x],...
|
||||||
.Op Fl s Ar socket-file
|
.Op Fl g Ar directory
|
||||||
|
.Op Fl p Ar port
|
||||||
.Ek
|
.Ek
|
||||||
.Sh DESCRIPTION
|
.Sh DESCRIPTION
|
||||||
The
|
The
|
||||||
.Nm
|
.Nm
|
||||||
program is a daemon-based Transmission session that can be controlled
|
program is a daemon-based Transmission session that can be controlled
|
||||||
via IPC commands by
|
via RPC commands by
|
||||||
.Xr transmission-remote 1
|
.Xr transmission-remote 1
|
||||||
|
or
|
||||||
|
.Xr Clutch 1
|
||||||
.Pp
|
.Pp
|
||||||
The options are as follows:
|
The options are as follows:
|
||||||
.Bl -tag -width Ds
|
.Bl -tag -width Ds
|
||||||
.It Fl d Fl -debug
|
.It Fl a Fl -acl Ar (+|-)x.x.x.x[/x],...
|
||||||
Print data send and received to and from clients to stdout, also implies
|
Specify access control list (ACL) to control which hosts may submit RPC requests.
|
||||||
.Fl f .
|
ACL is a comma separated list of IP subnets,
|
||||||
|
each subnet is prepended by '-' or '+' sign.
|
||||||
|
Plus means allow, minus means deny.
|
||||||
|
If subnet mask is omitted, like "-1.2.3.4", then it means that single IP address.
|
||||||
|
Masks may vary from 0 to 32 inclusive.
|
||||||
|
Default: +127.0.0.1
|
||||||
.It Fl f Fl -foreground
|
.It Fl f Fl -foreground
|
||||||
Run in the foreground and print errors to stderr instead of forking
|
Run in the foreground and print errors to stderr instead of forking
|
||||||
and logging errors with syslog.
|
and logging errors with syslog.
|
||||||
|
.It Fl g Fl -config-dir Ar directory
|
||||||
|
Where to look for .torrent files and daemon-config.benc on startup.
|
||||||
.It Fl h Fl -help
|
.It Fl h Fl -help
|
||||||
Print command-line option descriptions.
|
Print command-line option descriptions.
|
||||||
.It Fl p Fl -pidfile Ar pid-file
|
.It Fl p Fl -port Ar port
|
||||||
Save the daemon's process ID in
|
Port to open and listen for RPC requests on. Default: 9091
|
||||||
.Ar pid-file .
|
|
||||||
.It Fl g, Fl -config-dir Ar directory
|
|
||||||
Where to look for configuration files.
|
|
||||||
.It Fl s Fl -socket Ar socket-file
|
|
||||||
Create the unix-domain socket file at
|
|
||||||
.Ar socket-file
|
|
||||||
instead of the platform-dependent default location.
|
|
||||||
.El
|
.El
|
||||||
|
|
||||||
.Sh FILES
|
.Sh FILES
|
||||||
.Pa ~/.transmission
|
.Pa ~/.transmission
|
||||||
.Sh AUTHORS
|
.Sh AUTHORS
|
||||||
|
|
Loading…
Reference in a new issue