123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- <!DOCTYPE html>
- <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title>Install Web Based Download Utility with AriaNg on Windows</title>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <meta charset="UTF-8">
- <meta name="keywords" content="How To,Tutorial,i12bretro,Aria2,Web UI,Web Downloader,Web Based Utilities,AriaNg,FOSS">
- <meta name="author" content="i12bretro">
- <meta name="description" content="Install Web Based Download Utility with AriaNg on Windows">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
- <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
- <script type="text/javascript" src="includes/js/steps.js"></script>
- <link href="css/steps.css" rel="stylesheet" type="text/css" />
- </head>
- <body>
- <div id="gridContainer">
- <div class="topMargin"></div>
- <div id="listName" class="topMargin">
- <h1>Install Web Based Download Utility with AriaNg on Windows</h1>
- </div>
- <div></div>
- <div id="content">
- <h2>Quick Setup</h2>
- <ol>
- <li>Download aria2 <a href="https://github.com/aria2/aria2/releases" target="_blank">Download</a></li>
- <li>Download the AriaNg AllInOne <a href="https://github.com/mayswind/AriaNg/releases/" target="_blank">Download</a></li>
- <li>Extract the downloaded AriaNg .zip file</li>
- <li>Extract the downloaded aria2 .zip file</li>
- <li>Rename the extracted folder aria2</li>
- <li>Copy the aria2 folder to a permanant location such as C:\Program Files</li>
- <li>Hold the SHIFT key and right click in the white space > Open PowerShell windows here...</li>
- <li>Run the following command to start aria2 with the RPC server enabled
- <div class="codeBlock">.\aria2c.exe --dir=C:\Downloads --enable-rpc=true --rpc-allow-origin-all=true --rpc-listen-all=true --rpc-listen-port=6800 --rpc-secret=SomethingSecure -D</div>
- </li>
- <li>Navigate back to the extracted AriaNg folder</li>
- <li>Double click index.html to open it in the default web browser</li>
- <li>Select AriaNg Settings from the left navigation menu</li>
- <li>Select the automatically generated RPC connection in the top sub-navigation menu</li>
- <li>Scroll down to the Aria2 RPC Secret Token field and paste the rpc-secret string, SomethingSecure in this example</li>
- <li>Click the Reload AriaNg button on the notification popup</li>
- <li>The AriaNg will now be able to communicate with aria2 over RPC</li>
- </ol>
- <h2>Starting Aria2 on System Boot</h2>
- <ol>
- <li>Open File Explorer and navigate to C:\Program Files\Aria2 (or wherever Aria2 is installed)</li>
- <li>Right click in the white space > New > Text Document</li>
- <li>Name the new doucment aria2.conf</li>
- <li>Edit the new aria2.conf file in a text editor</li>
- <li>Paste the following basic configuration into the file
- <p>dir=C:\Downloads<br />
- enable-rpc=true<br />
- rpc-allow-origin-all=true<br />
- rpc-listen-all=true<br />
- rpc-listen-port=6800<br />
- rpc-secret=SomethingSecure</p>
- </li>
- <li>Save the aria2.conf file</li>
- <li>Click on the Start Button > Type task > Launch Task Scheduler</li>
- <li>Right click the Task Scheduler Library folder in the left pane > Create Basic Task...</li>
- <li>Set the name to Aria2 and optionally set a Description > Click Next</li>
- <li>For the Trigger, select When the computer starts > Click Next</li>
- <li>For the Action, select Start a program > Click Next</li>
- <li>In the Program/script field, paste the following, editing the path if Aria2 is installed somewhere else
- <p>"%ProgramFiles%\aria2\aria2c.exe"</p>
- </li>
- <li>In the Add Arguments field, paste the following, again editing the path if necessary
- <p>--conf-path="%ProgramFiles%\aria2\aria2.conf" -D</p>
- </li>
- <li>Click Next</li>
- <li>Click Finish</li>
- <li>In the Properties dialog, click the Change User or Group... button</li>
- <li>Type System in the Object name field > Click OK</li>
- <li>Check the Run with highest privileges box</li>
- <li>Click OK to create the scheduled task</li>
- <li>Right click the Aria2 scheduled task > Run</li>
- <li>Right click the task bar > Task Manager</li>
- <li>Select the Details tab and aria2c.exe should be running</li>
- <li>Open the AriaNg page to very it has connected</li>
- </ol>
- <p>Additional Aria2 documentation, including how to setup SSL, can be found at <a href="https://aria2.github.io/manual/en/html/aria2c.html#options" target="_blank">https://aria2.github.io/manual/en/html/aria2c.html#options</a></p>
- </div>
- </div>
- </body>
- </html>
-
|