web-dev-qa-db-ja.com

Linuxのトレントコンテンツ

Linuxでコマンドラインを使用してトレントファイルのコンテンツを表示/探索する方法。

transmissionqbitorrentなどのGUIを使用できることはわかっています...

伝送を使用して取得する方法

この写真は単なるサンプルであり、著作権で保護されたファイルを盗んだりコピーしたりすることはしたくありません。これは単なる技術的な質問であり、この例は単なる例です。

enter image description here

しかし、私はコマンドラインを使用してそれを行う必要があります。

17
Maythux

最も簡単な解決策btshowmetainfoを使用することです

最初にBitTorrentをインストールします

 Sudo apt-get install bittorrent

これで、以下を使用してトレントコンテンツを表示できます。

btshowmetainfo file.torrent


別の解決策見つけましたDumpTorrent

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

内容を表示するには

dumptorrent file.torrent


6
Maythux

transmission-cliSudo apt-get install transmission-cliを使用できます。

これにより、トレント用のCLIが提供されます。トレントファイルの内容は次の方法で表示できます。

transmission-show my-file.torrent

ファイルのみを表示するには:

transmission-show my-file.torrent | sed -n -e '/FILES/,$p'

簡単に使用するには、次の行を~/.bashrcに追加します。

function tsf { transmission-show "$1" | sed -n -e '/FILES/,$p'; }

tsfを好きなものに置き換えて、tsf my-file.torrentを使用できます。

25
Pabi

lstor from pyroscope/pyrocore を使用することもできます。

インストール手順 に従うだけで、コマンドラインツールをインストールできます。

ファイルリストを取得するには、次のコマンドを使用します。

$ lstor -qo info.name ~/Downloads/ubuntu-14.04.2-desktop-AMD64.iso.torrent
ubuntu-14.04.2-desktop-AMD64.iso
2
Sylvain Pineau