「QBittorrent」の版間の差分
Kusanaginoturugi (トーク | 投稿記録) (→Web interface: 翻訳) |
Kusanaginoturugi (トーク | 投稿記録) (翻訳) |
||
69行目: | 69行目: | ||
[https://github.com/qbittorrent/qBittorrent/wiki/NGINX-Reverse-Proxy-for-Web-UI qbittorrent wiki] を参照してください。 |
[https://github.com/qbittorrent/qBittorrent/wiki/NGINX-Reverse-Proxy-for-Web-UI qbittorrent wiki] を参照してください。 |
||
− | == |
+ | == テーマ == |
− | === |
+ | === 非公式のテーマ === |
− | * [https://github.com/qbittorrent/qBittorrent/wiki/How-to-use-custom-UI-themes |
+ | * [https://github.com/qbittorrent/qBittorrent/wiki/How-to-use-custom-UI-themes カスタム UI テーマの使用方法] |
− | * [https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-qBittorrent-themes |
+ | * [https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-qBittorrent-themes 既知の qBittorrent テーマの一覧] |
+ | == トラブルシューティング == |
||
− | == Troubleshooting == |
||
− | == |
+ | == 関連情報 == |
− | *[https://www.qbittorrent.org/ qBittorrent |
+ | * [https://www.qbittorrent.org/ qBittorrent 公式ウェブサイト] |
− | *[https://github.com/qbittorrent/qBittorrent/wiki qBittorrent |
+ | * [https://github.com/qbittorrent/qBittorrent/wiki qBittorrent の GitHub 上の wiki] |
− | *[[Wikipedia:qBittorrent]] |
+ | * [[Wikipedia:qBittorrent]] |
2023年9月14日 (木) 18:48時点における最新版
qBittorrent は、libtorrent-rasterbar ライブラリを使用したオープンソースでクロスプラットフォームの BitTorrent クライアントです。このクライアントは C++、Qt、および Python(オプションの検索エンジン)で書かれています。
qBittorrent は高速で安定しており、軽量です。また、ユニコードをサポートし、統合された検索エンジンを提供しています。UPnP ポート転送 / NAT-PMP、暗号化(Vuze と互換)、FAST 拡張(メインライン)、および PeX サポート(uTorrent と互換)も付属しています。
目次
インストール
公式リポジトリには qBittorrent を インストール するための2つのパッケージがあります:
- qBittorrent — Qt グラフィカルインターフェースおよび #Web インターフェース 付き。
- qBittorrent-nox — グラフィカルインターフェースなし(nox -> no X サーバー)。
設定
プログラムを初めて実行すると、設定ファイルが ~/.config/qBittorrent/qBittorrent.conf
に作成されます。
自動起動
qbittorrent-nox をインストールすると、systemd ユニットテンプレート qbittorrent-nox@.service
が付属してきます。qbittorrent-nox@ユーザー名.service
を開始/有効化 することで、QBittorrent は特定のユーザーとして動作します。
QBittorrent はユーザー ユーザー名
として動作します。デフォルトのダウンロードフォルダはユーザーの Downloads
ディレクトリになりますが、後で再設定することができます。
検索エンジン
オプションの検索エンジンは、メニューの View > Search Engine を通じて有効にすることができます。これにより、Search タブが開きます。
検索プラグイン
デフォルトのトラッカーは、Search タブでトラッカーウィンドウを Search plugins...(右下)で開いて、Check for updates を押すことで追加/有効化できます。より多くの非公式な検索プラグインはこちらで見つけることができます。
Web インターフェース
デフォルトの場所
デフォルトでは、qBittorrent はすべてのインターフェースのポート 8080 で待ち受けます。したがって、http://HOST_IP:8080
でアクセス可能です。
デフォルトのユーザー名とパスワード
デフォルトのユーザー名は admin
で、デフォルトのパスワードは adminadmin
です。
ユーザー名とパスワードなしでのアクセスを許可する
ホーム環境では、ユーザー名とパスワードを入力せずに Web UI にアクセスできるようにすることが望まれる場合がよくあります。これは、デフォルトのユーザー名とパスワードを使用してログインした後、Web UI 自体で設定することができます。
あるいは、初めてログインするのを避けるために、~/.config/qBittorrent/qBittorrent.conf
にこのセクションを追加します:
[Preferences] WebUI\AuthSubnetWhitelist=192.168.1.0/24 WebUI\AuthSubnetWhitelistEnabled=true WebUI\UseUPnP=false
上記の設定項目により:
- 192.168.1.x からログインするクライアントは、ユーザー名とパスワードを入力せずに Web UI にアクセスできます。
- Web UI の UPnP を無効にするため、Web UI はネットワーク外からはアクセスできません。
その後、qbittorrent-nox@ユーザー名.service
をリロードします。
リバースプロキシの設定
nginx
qbittorrent wiki を参照してください。