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
本文轉載來自 Linux 中國: https://github.com/Linux-CN/archive
對這篇文章感覺如何?
太棒了
0
不錯
0
愛死了
0
不太好
0
感覺很糟
0
More in:Linux中國
如何通過 VLC 使用字幕
使用 VLC 媒體播放器播放和管理字幕的新手指南。
Unix 桌面:在 Linux 問世之前
僅僅開源還不足以實現開放,還需開放標準和建立共識。
Valve 對於 Ubuntu 的 Snap 版本的 Steam 並不滿意:原因何在
你可能會發現,Snap 版本的 Steam 並不如你期待的那樣好,你怎麼看?
Wine 9.0 發布,實驗性地加入了 Wayland 驅動
Wine 的這個新版本正在為未來做好準備!