「AMule」の版間の差分
(ページの作成:「Category:インターネットアプリケーション en:aMule zh-CN:AMule {{Lowercase title}} aMule は eD2k や Kademlia ネットワーク用の eMule ラ...」) |
|||
25行目: | 25行目: | ||
* amuleweb の設定ファイル {{ic|/var/lib/amule/.aMule/remote.conf}} |
* amuleweb の設定ファイル {{ic|/var/lib/amule/.aMule/remote.conf}} |
||
+ | パッケージのインストール時に ''pacman'' は外部接続のプリセットパスワードが書かれたシンプルな {{ic|amule.conf}} ファイルを生成します。同一のパスワードは ''amuleweb'' 設定ファイルでも使われます。''amule-gui'' などのリモートクライアントから amule を接続するのにパスワードを使うことができます。 |
||
− | At the package instalation time ''pacman'' generates a simple {{ic|amule.conf}} file with preset external connection password. The same password is used for ''amuleweb'' config file. One can use the password for connecting amule from other remote clients such as ''amule-gui''. |
||
+ | パスワードを生成するには、次を実行: |
||
− | To generate password, run: |
||
$ echo -n ''your password here'' | md5sum | cut -d ' ' -f 1 |
$ echo -n ''your password here'' | md5sum | cut -d ' ' -f 1 |
||
+ | 上記のコマンドで暗号化されたパスワードが出力されます。設定ファイルを編集して {{ic|[ExternalConnect]}} セクションの下に以下の行を追加してください: |
||
− | The output of the above command is the encrypted password. Now you edit the config file by adding following lines under section {{ic|[ExternalConnect]}}: |
||
{{hc|1=/var/lib/amule/.aMule/amule.conf|2= |
{{hc|1=/var/lib/amule/.aMule/amule.conf|2= |
||
[ExternalConnect] |
[ExternalConnect] |
||
37行目: | 37行目: | ||
}} |
}} |
||
− | + | {{ic|/var/lib/amule}} 下のファイルは全て '''amule''' ユーザーによって所有されるようにする必要があります: |
|
# chown amule:amule -R /var/lib/amule |
# chown amule:amule -R /var/lib/amule |
||
2015年3月7日 (土) 12:51時点における版
aMule は eD2k や Kademlia ネットワーク用の eMule ライクなクライアントです。複数のプラットフォームをサポートしています。
インストール
aMule は amule パッケージでインストールできます。公式リポジトリから取得可能です。
amuled
はユーザーインターフェイス (GUI) が付いていない、フル機能の aMule デーモンです。aMuleGUI (GTK+), aMuleWeb, aMuleCmd などでリモートでアクセスすることでコントロールします。
サービス
パッケージには2つの systemd サービスが入っています: amuled
と amuleweb
。最初に設定を行う必要があります。外部接続のためのパスワードと amuleweb
の管理パスワードを設定してください。amuled
サービスと必要であれば amuleweb
も起動します。有効化することでブート時に aMule が起動するようになります。
amulweb
サービスを起動したら、http://127.0.0.1:4711
から使うことができます (もしくはホストの外部アドレス)。
設定
パッケージのインストール時に amule という名前の新しいユーザーアカウントが作成されます。systemd サービスを実行するときはこのサービスが使われます。
設定や一時ファイルは全て amule のホームディレクトリ /var/lib/amule
に保存されます:
- amuled の設定ファイル
/var/lib/amule/.aMule/amule.conf
- amuleweb の設定ファイル
/var/lib/amule/.aMule/remote.conf
パッケージのインストール時に pacman は外部接続のプリセットパスワードが書かれたシンプルな amule.conf
ファイルを生成します。同一のパスワードは amuleweb 設定ファイルでも使われます。amule-gui などのリモートクライアントから amule を接続するのにパスワードを使うことができます。
パスワードを生成するには、次を実行:
$ echo -n your password here | md5sum | cut -d ' ' -f 1
上記のコマンドで暗号化されたパスワードが出力されます。設定ファイルを編集して [ExternalConnect]
セクションの下に以下の行を追加してください:
/var/lib/amule/.aMule/amule.conf
[ExternalConnect] AcceptExternalConnections=1 ECPassword=<encrypted password>
/var/lib/amule
下のファイルは全て amule ユーザーによって所有されるようにする必要があります:
# chown amule:amule -R /var/lib/amule
amuleweb
設定ファイルの作成
Start amuleweb too using the user you just created to create the configuration file:
$ sudo -u amule amuleweb --write-config --password=password here --admin-pass=web password here
Note that here, the password here is the unencrypted password you used to configure amuled. web password here is the unencrypted for the log in on the web interface. This command will write configuration file as such.
amulegui
Amulegui は aMule の GTK+ インターフェイスです。
通知の設定
Some automatic actions settings are avaible through Settings → Events. The core command notify-send (requires libnotify) is useful to set notifications, using some amule variables. In example, set the core command in the section Download completed for a notification when a download is complete:
notify-send -i amule "%NAME completed (%SIZE bytes)"
The option "-i amule" includes the amule icon (a custom file may be specified adding its path between apostrophes, instead of "amule" icon filename).