Difference between revisions of "Rapidshare Downloader Concurrent commandline aria2"

From MS Computech
Jump to: navigation, search
Line 1: Line 1:
aria2 downloader
+
'''Aria2 rapidshare'''
  
็How to install aria2 support bittorrent Metalink
+
วิธีการ install aria2 และทำให้สามารถดาวโหลด bittorrent Metalink ได้ ( Debian 4 5 )
 
<pre>
 
<pre>
 
wget http://downloads.sourceforge.net/sourceforge/aria2/aria2-1.5.0.tar.bz2?use_mirror=nchc
 
wget http://downloads.sourceforge.net/sourceforge/aria2/aria2-1.5.0.tar.bz2?use_mirror=nchc
Line 34: Line 34:
 
make install
 
make install
 
</pre>
 
</pre>
 
 
[http://aria2.sourceforge.net/ Bittorrent Http Multiple download]
 
 
batch downloading via the -i list_file_name option. e.g.
 
he switches for this explained:-
 
 
    * -s 5 Split the download into 5 connections
 
    * -j 1 How many files to download at once.
 
    * -c Continue any paused / cancelled downloads
 
    * –load-cookies /path/to/cookie The rapidshare cookie file that was created earlier. This has to be an absolute path
 
 
<pre>
 
<pre>
 
aria2c --load-cookies=/home/rapid_cookie.txt -s 5 -j 2 http://rapidshare.com/files/250512100/TDK.2008.1080p.mkv.001
 
aria2c --load-cookies=/home/rapid_cookie.txt -s 5 -j 2 http://rapidshare.com/files/250512100/TDK.2008.1080p.mkv.001
 
aria2c --load-cookies=/home/rapid_cookie.txt -s 5 -j 2 -i lists.txt
 
aria2c --load-cookies=/home/rapid_cookie.txt -s 5 -j 2 -i lists.txt
 
</pre>
 
</pre>
Export Cookies ออกมาจาก firefox 3.5  
+
Export Cookies ออกมาจาก firefox 3.5 โดยใช้ extension ด้านล่าง
  
 
download
 
download
Line 55: Line 44:
 
http://rapidshare.com/files/256898797/export_cookies-1.0-fx.xpi
 
http://rapidshare.com/files/256898797/export_cookies-1.0-fx.xpi
 
</pre>
 
</pre>
 +
 +
Export ออกมาและ นำไปไว้ที่ Linux
 +
<pre>
 +
aria2c --load-cookies=/home/rapid_cookie.txt -s 5 -j 2 http://rapidshare.com/files/250512100/TDK.2008.1080p.mkv.001
 +
</pre>
 +
ดาวโหลดแบบ Batch
 +
<pre>
 +
aria2c --load-cookies=/home/rapid_cookie.txt -s 5 -j 2 -i downloadlists.txt
 +
</pre>
 +
 +
    * -s 5 Split the download into 5 connections
 +
    * -j 1 How many files to download at once.
 +
    * -c Continue any paused / cancelled downloads
 +
    * –load-cookies /path/to/cookie The rapidshare cookie file that was created earlier. This has to be an absolute path
 +
 +
----
 +
 +
[http://aria2.sourceforge.net/ Source]

Revision as of 22:19, 18 July 2009

Aria2 rapidshare

วิธีการ install aria2 และทำให้สามารถดาวโหลด bittorrent Metalink ได้ ( Debian 4 5 )

wget http://downloads.sourceforge.net/sourceforge/aria2/aria2-1.5.0.tar.bz2?use_mirror=nchc
tar jxvf aria2-1.5.0.tar.bz2
cd aria2-1.5.0
apt-get install libssl-dev libxml2-dev libsqlite3-dev libexpat1-dev zlib1g-dev
./configure
make

<source lang=text> Build: i686-pc-linux-gnu Target: i686-pc-linux-gnu Install prefix: /usr/local CFLAGS: -g -O2 CPPFLAGS: LDFLAGS: LIBS: SQLite3: yes GnuTLS: no OpenSSL: yes CA Bundle: LibXML2: yes LibExpat: LibCares: Libz: yes Epoll: yes Bittorrent: yes Metalink: yes XML-RPC: yes </source>

make install
aria2c --load-cookies=/home/rapid_cookie.txt -s 5 -j 2 http://rapidshare.com/files/250512100/TDK.2008.1080p.mkv.001
aria2c --load-cookies=/home/rapid_cookie.txt -s 5 -j 2 -i lists.txt

Export Cookies ออกมาจาก firefox 3.5 โดยใช้ extension ด้านล่าง

download

http://rapidshare.com/files/256898797/export_cookies-1.0-fx.xpi

Export ออกมาและ นำไปไว้ที่ Linux

aria2c --load-cookies=/home/rapid_cookie.txt -s 5 -j 2 http://rapidshare.com/files/250512100/TDK.2008.1080p.mkv.001

ดาวโหลดแบบ Batch

aria2c --load-cookies=/home/rapid_cookie.txt -s 5 -j 2 -i downloadlists.txt
   * -s 5 Split the download into 5 connections
   * -j 1 How many files to download at once.
   * -c Continue any paused / cancelled downloads
   * –load-cookies /path/to/cookie The rapidshare cookie file that was created earlier. This has to be an absolute path

Source