Linux中國

Linux有問必答:Linux上如何查看種子文件的內容

torrent文件內容由BEncode編碼為BitTorrent數據序列化格式,因此,要查看torrent文件的內容,你需要相應的解碼器。

事實上,任何圖形化的BitTorrent客戶端(如Transmission或uTorrent)都帶有BEncode解碼器,所以,你可以用它們直接打開來查看torrent文件的內容。然而,如果你不想要使用BitTorrent客戶端來檢查torrent文件,你可以試試這個命令行torrent查看器,它叫dumptorrent

dumptorrent命令可以使用內建的BEncode解碼器列印出torrent文件的詳細信息(如,文件名、大小、跟蹤器URL、創建日期、信息散列等等)。

安裝DumpTorrent到Linux

要安裝dumptorrent到Linux,你可以從源代碼來構建它。

在Debian、Ubuntu或Linux Mint上:

$ sudo apt-get install gcc make
$ wget http://downloads.sourceforge.net/project/dumptorrent/dumptorrent/1.2/dumptorrent-1.2.tar.gz
$ tar -xvf dumptorrent-1.2.tar.gz
$ cd dumptorrent-1.2
$ make
$ sudo cp dumptorrent /usr/local/bin 

在CentOS、Fedora或RHEL上:

$ sudo yum install gcc make
$ wget http://downloads.sourceforge.net/project/dumptorrent/dumptorrent/1.2/dumptorrent-1.2.tar.gz
$ tar -xvf dumptorrent-1.2.tar.gz
$ cd dumptorrent-1.2
$ make
$ sudo cp dumptorrent /usr/local/bin 

確保你的搜索路徑 PATH 中包含了/usr/local/bin。

查看torrent的內容

要檢查torrent的內容,只需要運行dumptorrent,並將torrent文件作為參數執行。這會列印出torrent的概要,包括文件名、大小和跟蹤器URL。

$ dumptorrent <torrent-file> 

要查看torrent的完整內容,請添加「-v」選項。它會列印更多關於torrent的詳細信息,包括信息散列、片長度、創建日期、創建者,以及完整的聲明列表。

$ dumptorrent -v <torrent-file> 

via: http://ask.xmodulo.com/view-torrent-file-content-linux.html

作者:Dan Nanni 譯者:GOLinux 校對:wxy

本文由 LCTT 原創翻譯,Linux中國 榮譽推出


本文轉載來自 Linux 中國: https://github.com/Linux-CN/archive

對這篇文章感覺如何?

太棒了
0
不錯
0
愛死了
0
不太好
0
感覺很糟
0
雨落清風。心向陽

    You may also like

    Leave a reply

    您的電子郵箱地址不會被公開。 必填項已用 * 標註

    此站點使用Akismet來減少垃圾評論。了解我們如何處理您的評論數據

    More in:Linux中國