mirror of
https://github.com/Zeckmathederg/glfs.git
synced 2025-01-24 23:32:12 +08:00
c93bd07a93
Update to ConsoleKit2-1.1.0. Update to pygobject-3.20.0. Update to transmission-2.92. git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@17190 af4574ff-66df-0310-9fd7-8a98e5e911e0
297 lines
9.2 KiB
XML
297 lines
9.2 KiB
XML
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
|
|
"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
|
|
<!ENTITY % general-entities SYSTEM "../../general.ent">
|
|
%general-entities;
|
|
|
|
<!ENTITY transmission-download-http "https://transmission.cachefly.net/transmission-&transmission-version;.tar.xz">
|
|
<!ENTITY transmission-download-ftp " ">
|
|
<!ENTITY transmission-md5sum "3fce404a436e3cd7fde80fb6ed61c264">
|
|
<!ENTITY transmission-size "3.2 MB">
|
|
<!ENTITY transmission-buildsize "338 MB">
|
|
<!ENTITY transmission-time "1.6 SBU (with Qt and GTK gui interfaces)">
|
|
]>
|
|
|
|
<sect1 id="transmission" xreflabel="Transmission-&transmission-version;">
|
|
<?dbhtml filename="transmission.html"?>
|
|
|
|
<sect1info>
|
|
<othername>$LastChangedBy$</othername>
|
|
<date>$Date$</date>
|
|
</sect1info>
|
|
|
|
<title>Transmission-&transmission-version;</title>
|
|
|
|
<indexterm zone="transmission">
|
|
<primary sortas="a-Transmission">Transmission</primary>
|
|
</indexterm>
|
|
|
|
<sect2 role="package">
|
|
<title>Introduction to Transmission</title>
|
|
|
|
<para>
|
|
<application>Transmission</application> is a cross-platform, open source
|
|
BitTorrent client. This is useful for downloading large files (such as
|
|
Linux ISOs) and reduces the need for the distributors to provide server
|
|
bandwidth.
|
|
</para>
|
|
|
|
&lfs79_checked;
|
|
|
|
<bridgehead renderas="sect3">Package Information</bridgehead>
|
|
<itemizedlist spacing="compact">
|
|
<listitem>
|
|
<para>
|
|
Download (HTTP): <ulink url="&transmission-download-http;"/>
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
Download (FTP): <ulink url="&transmission-download-ftp;"/>
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
Download MD5 sum: &transmission-md5sum;
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
Download size: &transmission-size;
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
Estimated disk space required: &transmission-buildsize;
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
Estimated build time: &transmission-time;
|
|
</para>
|
|
</listitem>
|
|
</itemizedlist>
|
|
|
|
<bridgehead renderas="sect3">Transmission Dependencies</bridgehead>
|
|
|
|
<bridgehead renderas="sect4">Required</bridgehead>
|
|
<para role="required">
|
|
<xref linkend="curl"/>,
|
|
<xref linkend="libevent"/>, and
|
|
<xref linkend="openssl"/>
|
|
</para>
|
|
|
|
<bridgehead renderas="sect4">Recommended (to build a GUI)</bridgehead>
|
|
<para role="recommended">
|
|
<xref linkend="gtk3"/> and either
|
|
<xref linkend="qt4"/> or
|
|
<xref linkend="qt5"/>
|
|
</para>
|
|
|
|
<bridgehead renderas="sect4">Optional</bridgehead>
|
|
<para role="optional">
|
|
<xref linkend="doxygen"/> and
|
|
<xref linkend="gdb"/>
|
|
</para>
|
|
|
|
<para condition="html" role="usernotes">
|
|
User Notes: <ulink url="&blfs-wiki;/transmission"/>
|
|
</para>
|
|
</sect2>
|
|
|
|
<sect2 role="installation">
|
|
<title>Installation of Transmission</title>
|
|
<para>
|
|
Install <application>Transmission</application> by running the
|
|
following commands:
|
|
</para>
|
|
|
|
<screen><userinput>./configure --prefix=/usr &&
|
|
make</userinput></screen>
|
|
|
|
<para>
|
|
The following commands are used if you have installed Qt and would like
|
|
to compile the Qt GUI. If <application>Qt4</application> and
|
|
<application>Qt5</application> are installed in
|
|
<filename class="directory">/opt</filename>, use
|
|
<command>source setqt4</command> or <command>source setqt5</command> to
|
|
choose which one will be used to build the Qt GUI.
|
|
</para>
|
|
|
|
<para>
|
|
Compile the Qt GUI with the following commands:
|
|
</para>
|
|
|
|
<screen><userinput>pushd qt &&
|
|
qmake qtr.pro &&
|
|
make &&
|
|
popd</userinput></screen>
|
|
|
|
<para>
|
|
This package does not come with a test suite.
|
|
</para>
|
|
|
|
<para>
|
|
Now, as the <systemitem class="username">root</systemitem> user:
|
|
</para>
|
|
|
|
<screen role="root"><userinput>make install</userinput></screen>
|
|
|
|
<para>
|
|
If you compiled the Qt GUI, install it by running the following commands
|
|
as the <systemitem class="username">root</systemitem> user:
|
|
</para>
|
|
|
|
<screen role="root"><userinput>make INSTALL_ROOT=/usr -C qt install &&
|
|
|
|
install -m644 qt/transmission-qt.desktop /usr/share/applications/transmission-qt.desktop &&
|
|
install -m644 qt/icons/transmission.png /usr/share/pixmaps/transmission-qt.png</userinput></screen>
|
|
|
|
</sect2>
|
|
|
|
<sect2 role="commands">
|
|
<title>Command Explanations</title>
|
|
|
|
<!-- with-gtk is auto detected if gtk3 is present -->
|
|
<para>
|
|
<option>--without-gtk</option>: This switch disables building of the
|
|
<application>GTK+</application> interface if
|
|
<application>GTK+</application> is present on the system (useful for
|
|
<application>Qt5</application> or cli only builds).
|
|
</para>
|
|
|
|
</sect2>
|
|
|
|
<sect2 role="content">
|
|
<title>Contents</title>
|
|
|
|
<segmentedlist>
|
|
<segtitle>Installed Programs</segtitle>
|
|
<segtitle>Installed Libraries</segtitle>
|
|
<segtitle>Installed Directory</segtitle>
|
|
|
|
<seglistitem>
|
|
<seg>
|
|
transmission-cli, transmission-create, transmission-daemon,
|
|
transmission-edit, transmission-gtk, transmission-qt,
|
|
transmission-remote and transmission-show
|
|
</seg>
|
|
<seg>
|
|
None
|
|
</seg>
|
|
<seg>
|
|
/usr/share/transmission
|
|
</seg>
|
|
</seglistitem>
|
|
</segmentedlist>
|
|
|
|
<variablelist>
|
|
<bridgehead renderas="sect3">Short Descriptions</bridgehead>
|
|
<?dbfo list-presentation="list"?>
|
|
<?dbhtml list-presentation="table"?>
|
|
|
|
<varlistentry id="transmission-cli">
|
|
<term><command>transmission-cli</command></term>
|
|
<listitem>
|
|
<para>
|
|
is a lightweight, command-line BitTorrent client with scripting
|
|
capabilities.
|
|
</para>
|
|
<indexterm zone="transmission transmission-cli">
|
|
<primary sortas="b-transmission-cli">transmission-cli</primary>
|
|
</indexterm>
|
|
</listitem>
|
|
</varlistentry>
|
|
|
|
<varlistentry id="transmission-create">
|
|
<term><command>transmission-create</command></term>
|
|
<listitem>
|
|
<para>
|
|
is a command line tool used to create .torrent files.
|
|
</para>
|
|
<indexterm zone="transmission transmission-create">
|
|
<primary sortas="b-transmission-create">transmission-create</primary>
|
|
</indexterm>
|
|
</listitem>
|
|
</varlistentry>
|
|
|
|
<varlistentry id="transmission-daemon">
|
|
<term><command>transmission-daemon</command></term>
|
|
<listitem>
|
|
<para>
|
|
is a daemon-based Transmission session that can be controlled via
|
|
RPC commands from transmission's web interface or
|
|
<command>transmission-remote</command>.
|
|
</para>
|
|
<indexterm zone="transmission transmission-daemon">
|
|
<primary sortas="b-transmission-daemon">transmission-daemon</primary>
|
|
</indexterm>
|
|
</listitem>
|
|
</varlistentry>
|
|
|
|
<varlistentry id="transmission-edit">
|
|
<term><command>transmission-edit</command></term>
|
|
<listitem>
|
|
<para>
|
|
is a command-line utility to modify .torrent files' announce URLs.
|
|
</para>
|
|
<indexterm zone="transmission transmission-edit">
|
|
<primary sortas="b-transmission-edit">transmission-edit</primary>
|
|
</indexterm>
|
|
</listitem>
|
|
</varlistentry>
|
|
|
|
<varlistentry id="transmission-gtk">
|
|
<term><command>transmission-gtk</command></term>
|
|
<listitem>
|
|
<para>
|
|
is a GTK+ bittorrent client.
|
|
</para>
|
|
<indexterm zone="transmission transmission-gtk">
|
|
<primary sortas="b-transmission-gtk">transmission-gtk</primary>
|
|
</indexterm>
|
|
</listitem>
|
|
</varlistentry>
|
|
|
|
<varlistentry id="transmission-qt">
|
|
<term><command>transmission-qt</command></term>
|
|
<listitem>
|
|
<para>
|
|
is a Qt bittorrent client.
|
|
</para>
|
|
<indexterm zone="transmission transmission-qt">
|
|
<primary sortas="b-transmission-qt">transmission-qt</primary>
|
|
</indexterm>
|
|
</listitem>
|
|
</varlistentry>
|
|
|
|
<varlistentry id="transmission-remote">
|
|
<term><command>transmission-remote</command></term>
|
|
<listitem>
|
|
<para>
|
|
is a remote control utility for transmission-daemon and transmission.
|
|
</para>
|
|
<indexterm zone="transmission transmission-remote">
|
|
<primary sortas="b-transmission-remote">transmission-remote</primary>
|
|
</indexterm>
|
|
</listitem>
|
|
</varlistentry>
|
|
|
|
<varlistentry id="transmission-show">
|
|
<term><command>transmission-show</command></term>
|
|
<listitem>
|
|
<para>
|
|
is a command line tool to display bittorrent .torrent file metadata.
|
|
</para>
|
|
<indexterm zone="transmission transmission-show">
|
|
<primary sortas="b-transmission-show">transmission-show</primary>
|
|
</indexterm>
|
|
</listitem>
|
|
</varlistentry>
|
|
|
|
</variablelist>
|
|
|
|
</sect2>
|
|
|
|
</sect1>
|