访问 www.transmissionbt.com   下载最新版

1)下载transmission:
#  wget https://transmission.cachefly.net/transmission-2.84.tar.xz
2)解压transmission得到transmission-2.77目录:

#  xz -d transmission-2.84.tar.xz

#  tar -xvf transmission-2.84.tar
--------------------------------------------------
3)进入transmission-2.77目录:
#  cd transmission-2.84
4)配置
#  ./configure
---------------------------------------------------
如果报错如下错误:configure: error: no acceptable C compiler found in $PATH,则需要安装GCC编辑器,命令如下:
#  sudo apt-get install build-essential
接着再执行
#  ./configure
---------------------------------------------------
---------------------------------------------------
如果出现这个错误checking for OPENSSL... checking for OpenSSL... configure: error: Cannot locate ssl,则需要安装OPENSSL库,命令如下:
#  sudo apt-get install openssl
#  sudo apt-get install libssl-dev
#  sudo apt-get install libssl0.9.8

---------------------------------------------------
如果出现错误configure:17208: error: The pkg-config script could not be found or is too old.  Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. 则执行如下命令:
#  sudo apt-get install pkg-config
---------------------------------------------------
如果出现如下错误checking for LIBCURL... configure: error: Package requirements (libcurl >= 7.15.4) were not met: No package 'libcurl' found,则执行如下命令:
#  sudo apt-get install libcurl4-openssl-dev
---------------------------------------------------
如果出现如下错误checking for LIBEVENT... configure: error: Package requirements (libevent >= 2.0.10) were not met: No package 'libevent' found,则执行如下命令:
#  sudo apt-get install libevent-dev
---------------------------------------------------
如果出现如下错误checking for LIBEVENT... configure: error: Package requirements (libevent >= 2.0.10) were not ./configure: line 18393: intltool-update: command not found checking for intltool >= 0.35.0...  found configure: error: Your intltool is too old.  You need intltool 0.35.0 or later.则执行如下命令:
#  sudo apt-get install intltool
---------------------------------------------------

如果没有错误,配置一下:
# ./configure

5)编译源码:
#  make
6)安装transmission
#  sudo make install

---至此安装成功

编译版本transmission启动和关闭如下---------------------------------:

启动:

#  /usr/local/bin/transmission-daemon

关闭:

#  killall transmission-daemon

配置文件位置:

/home/xxx/.config/transmission-daemon/settings.json

下载PT相关设置:

"cache-size-mb": 500,  缓存设置大点;
    "dht-enabled": false,  DHT关闭;

"peer-limit-global": 900,  全局连接数设置大点;
    "peer-limit-per-torrent": 500,  单种连接数设置大点;

"rpc-authentication-required": true, 开机RPC访问验证;

"rpc-password": "{e6aa0d2d8187046bfc14a2136b6326fc227a26f4L/RhkrH6", RPC密码; 
    "rpc-username": "uuser",  RPC用户;

"rpc-whitelist-enabled": false 白名单关闭;

"upload-slots-per-torrent": 80,  每个种子的上传通道设置大点。

ubuntu 安装transmission最新版的更多相关文章

  1. 为Ubuntu 安装Transmission 2.90

    Transmission 是 Ubuntu 的默认 BitTorrent 客户端,近期发布了最新的 Transmission 2.90 版本,目前已经可通过 PPA 为 Ubuntu 15.10.Ub ...

  2. Ubuntu 安装配置最新版 PostgreSQL

    环境:Ubuntu Xenial (16.04)     !!! CentOS 参考这里 #安装 PostgreSQL sudo apt-get updatesudo apt-get upgradea ...

  3. ubuntu 安装 gitlab最新版(下载慢问题)

    Debian/Ubuntu 用户 首先信任 GitLab 的 GPG 公钥: curl https://packages.gitlab.com/gpg.key 2> /dev/null | su ...

  4. ubuntu安装shadowshocks-qt5

    sudo add-apt-repository ppa:hzwhuang/ss-qt5 sudo apt-get update sudo apt-get install shadowsocks-qt5 ...

  5. ubuntu18.04系统下用devstack安装openstack(最新版)

    ubuntu18.04系统下用devstack安装openstack(最新版) 2018年12月14日 16:34:14 Cherls 阅读数:427   前期准备: 安装git,升级pip,其他 s ...

  6. ubuntu安装docker,docker部署dotnetcore2.0 web应用(三)

    我是在本地安装的虚拟机 1.下载ubuntu18.0.4 iso镜像包 2.打开win10自带的Hyper-V管理器 3.创建新的虚拟机,引用ubuntu18.0.4 iso镜像包,一步步安装成功. ...

  7. [190308]Ubuntu 安装完之后,安装的软件小记

    install software vim sudo apt-get install -y vim Typora command copy from Typora website # or run: # ...

  8. ubuntu 安装 lrzsz 上传下载

    原文:ubuntu 安装 lrzsz 上传下载 版权声明:本文为博主原创文章,随意转载. https://blog.csdn.net/Michel4Liu/article/details/808223 ...

  9. 总结关于Ubuntu 安装 Docker 配置相关问题及解决方法

    总结关于Ubuntu 安装 Docker 配置相关问题及解决方法 Tomcat 示例 软件镜像(xx安装程序)----运行镜像----产生一个容器(正在运行的软件,运行的xx): 步骤: 1.搜索镜像 ...

随机推荐

  1. Codeforces558E A Simple Task(线段树)

    题目 Source http://codeforces.com/problemset/problem/558/E Description This task is very simple. Given ...

  2. 将公司的主要项目从eclipse迁移到android studio for mac环境(2)

    1.将eclipse 的 代码迁移到android studio的过程中,现在已经有了一个未优化版本能够在android studio使用,这时候,只需要将已优化版本的代码中的libs  res  s ...

  3. Android底部菜单的实现

    前言:以前制作菜单使用TabHost,但是android 3.0以上就被废弃了,google已经不建议使这个类了.ActionBar也是菜单,不过在头部,算是导航了 ===本文就介绍怎么制作底部菜单= ...

  4. 【转】安装第三方库出现 Python version 2.7 required, which was not found in the registry

    安装第三方库出现 Python version 2.7 required, which was not found in the registry 建立一个文件 register.py 内容如下. 然 ...

  5. (原)解决.NET 32位程序运行在64位操作系统下的兼容性问题

    背景:一个第三方组件是C++.NET  32位开发的,后被C#(基于FrameWork4.0)调用并封装成组件,此二次封装的组件无法运行于64位操作系统上.        开发环境:VS2012:解决 ...

  6. PHP-格式标签

    格式控制标签 <font color="" size="" face=""></font>  控制字体:color控 ...

  7. Servlet异步上传文件

    这里需要用到插件ajaxfileupload.js,jar包:commons-fileupload-1.3.2.jar,commons-io-2.5.jar 注意红色部分的字!!!! 1.创建一个we ...

  8. opengl中对glOrtho()函数的理解

    glOrtho是创建一个正交平行的视景体. 一般用于物体不会因为离屏幕的远近而产生大小的变换的情况.比如,常用的工程中的制图等.需要比较精确的显示. 而作为它的对立情况, glFrustum则产生一个 ...

  9. 移动端rem 适配

    在 index.html 中添加如下代码 <script> let html = document.documentElement; window.rem = html.getBoundi ...

  10. cloudera learning2:HDFS

    存入HDFS的文件会按块(block)划分,默认每块128MB.默认1个block还有2个备份.备份增加了数据的可靠性和提高计算效率(数据本地化). HDFS部署可选择不支持HA,也可选择支持HA. ...