红联Linux门户
Linux帮助

Ubuntu安装使用CouchPotato

发布时间:2016-08-14 15:29:56来源:topspeedsnail.com作者:斗大的熊猫
CouchPotato(https://couchpota.to/)是开源的自动种子下载器,它是免费的影视资源搜索器,您只要输入资源的名称和或关键词,即可进行后台搜索,支持下载字幕,支持通过bt软件下载。CouchPotato使用C/S架构,Python开发。
CouchPotato源代码:https://github.com/CouchPotato/CouchPotatoServer
CouchPotato (CP) is an automatic NZB and torrent downloader. You can keep a “movies I want”-list and it will search for NZBs/torrents of these movies every X hours. Once a movie is found, it will send it to SABnzbd or download the torrent to a specified directory.
 
Ubuntu安装CouchPotato:
 
安装Python和git:
$ sudo apt-get install python git
从Github clone源码:
$ cd /opt
$ sudo git clone https://github.com/RuudBurger/CouchPotatoServer
把CouchPotato注册为系统服务:
$ sudo cp CouchPotatoServer/init/ubuntu /etc/init.d/couchpotato
$ sudo chmod +x /etc/init.d/couchpotato
创建couchpotato文件:
$ sudo vim /etc/default/couchpotato
写入内容:
CP_USER=snail
CP_HOME=/opt/CouchPotatoServer
CP_DATA=/home/snail/couchpotato
把snail替换为你的系统用户名。
刷新服务:
$ sudo update-rc.d couchpotato defaults
启动CouchPotato服务:
$ sudo service couchpotato start
# 停止服务
# sudo service couchpotato stop
Ubuntu安装使用CouchPotato
使用CouchPotato
使用浏览器访问:http://localhost:5050
使用你的洪荒之力设置尽可能多的信息。
Ubuntu安装使用CouchPotato
设置管理员用户:
Ubuntu安装使用CouchPotato
选择默认的下载器:
Ubuntu安装使用CouchPotato
添加种子站,越多越好:
Ubuntu安装使用CouchPotato
最后完成安装:
Ubuntu安装使用CouchPotato
登录:
Ubuntu安装使用CouchPotato
Ubuntu安装使用CouchPotato
Ubuntu安装使用CouchPotato
Ubuntu安装使用CouchPotato
 
升级CouchPotato
$ cd /opt/CouchPotatoServer
$ sudo git pull
Ubuntu安装使用CouchPotato
 
本文永久更新地址:http://www.linuxdiyf.com/linux/23309.html