FlexGet相關文章請優先參考最新版
2020年10月6日 – 三戰FlexGet(CentOS 8 with Python 3.6.8) [1]
—
文章已隨CentOS 6更新,請移步到再戰FlexGet,打造BT下載機 [2]
Transmission [3]玩了那摸久,最近嘗試了搭配FlexGet [4]來實現讀取RSS自動下載功能,測試了幾天確定是OK了啦! 其實很多錯誤是卡在CentOS真的跟帽子差不多機歪,安全性太高了,搞的自己都混亂了,前前後後re-install了幾次OS才確定OK,環境一樣是CentOS 5.5,如果不是用CentOS的會方便很多,總之有興趣在往下看吧! ?
安裝前準備動作:1.安裝Transmission [5]、2.更新Python [6]
Step.1 下載需要的套件
cd /usr/src
wget http://pysqlite.googlecode.com/files/pysqlite-2.6.0.tar.gz
Step.2 安裝基本套件
tar zxf pysqlite-*.tar.gz
cd pysqlite-*
python setup.py build_static install
cd ..
rm -fr pysqlite-*
Step.3 安裝所有套件
easy_install BeautifulSoup FeedParser FlexGet html5lib progressbar pynzb PyRSS2Gen PyYAML SQLAlchemy transmissionrpc
Step.4 設定FlexGet設定檔
mkdir -p /root/.flexget/
vi /root/.flexget/config.yml
config.yml內容如下
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
feeds: tv-shows: rss: http://chdbits.org/torrentrss.php?rows=10&linktype=dl&passkey=ooxx series: - Guilty - Iryu - Nagareboshi set: path: /web/www/transmission transmission: host: localhost port: 5566 username: Transmission設定檔中的rpc-username password: Transmission設定檔中的rpc-password |
簡單的說明各項參數的意義,從第一行的feeds:開始是一個區段,接下來的rss:就是PT站台提供的RSS連結網址,每家都會不同,如果想擷取多家的RSS話就在transmission區段的上面再加一個feeds:區段即可。
series:下面的- Guilty、- Iryu、- Nagareboshi就是指RSS出現這些字串的種子時就自動下載
set:是下載位置,設定跟Transmission的設定檔settings.json裡面的download-dir一樣即可。
第二段的transmission:開始是Transmission設定,設定一樣是依照Transmission的設定檔settings.json裡面的rpc-port、rpc-username、rpc-password即可。
Step.5 測試FlexGet運作是否成功
/usr/local/bin/flexget --test
出現如圖所示就成功了。 ?
Step.6 定時排程每10分鐘執行FlexGet讀取RSS
crontab -e
排程內容如下
*/10 * * * * /usr/local/bin/flexget -cron -c /root/.flexget/config.yml > /dev/null 2>&1
Step.7 定時每1小時清理已完成的種子
crontab -e
排程內容如下
* */1 * * * /root/.flexget/transmission-cleanup.sh > /dev/null 2>&1
vi /root/.flexget/transmission-cleanup.sh
transmission-cleanup.sh內容如下
transmission-remote --auth lulala:balala -l | grep 100% | grep Done | awk '{print $1}' | xargs -n 1 -J % ./transmission-remote -t % -r
替transmission-cleanup.sh加上權限
chmod +x /root/transmission-cleanup.sh
參考網頁:http://flexget.com/wiki/Plugins/transmission [7]
http://flexget.com/wiki/Configuration [8]
The Cookbook [9]