<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.7.2" -->
<rss version="2.0">
	<channel>
		<title>How to easilly download RapidShare files in Linux</title>
		<description>Comments for How to easilly download RapidShare files in Linux at http://www.my-guides.net/en , comment 1 to 30 out of 20 comments</description>
		<link>http://www.my-guides.net/en</link>
		<lastBuildDate>Sun, 14 Mar 2010 19:27:40 +0100</lastBuildDate>
		<generator>FeedCreator 1.7.2</generator>
		<item>
			<title>...</title>
			<link>http://www.my-guides.net/en/content/view/102/26/#comment-1144</link>
			<description>When I wrote this guide I didn't know jdownloader. I've heard a lot of people using it. Nonetheless I am pretty happy with kget in my KDE. :) - axel</description>
			<pubDate>Sat, 05 Dec 2009 10:30:52 +0100</pubDate>
		</item>
		<item>
			<title>...</title>
			<link>http://www.my-guides.net/en/content/view/102/26/#comment-1138</link>
			<description>Why u dont using jdownloader from http://jdownloader.org/download ? It is perfect for free an premium users for all host sites. - chami</description>
			<pubDate>Fri, 04 Dec 2009 06:32:02 +0100</pubDate>
		</item>
		<item>
			<title>...</title>
			<link>http://www.my-guides.net/en/content/view/102/26/#comment-1071</link>
			<description>Interesting script jcjoey! I haven't used torrentflux before but I believe your script is helpful. :) Thanks! - axel</description>
			<pubDate>Sun, 15 Nov 2009 17:17:48 +0100</pubDate>
		</item>
		<item>
			<title>...</title>
			<link>http://www.my-guides.net/en/content/view/102/26/#comment-1068</link>
			<description>the Above script is for use with torrentflux... - jcjoey</description>
			<pubDate>Fri, 13 Nov 2009 06:43:07 +0100</pubDate>
		</item>
		<item>
			<title>Linux Script to Download RapidShare Link's into TorrentFlux</title>
			<link>http://www.my-guides.net/en/content/view/102/26/#comment-1067</link>
			<description>Paste this in to a file.
don't forget to chmod 700 in order to execute

[quote]
#!/bin/sh
#########################################
#Script Setings - Change as needed.     #
#########################################
export tdir='/usr/local/torrentflux' #Directory where TorrentFlux downloads are stored.
export user='root' #TorrentFlux User account to download files to.
export rsuser='99999999' #RapidShare Username (you must be premium user)
export rspass='passowrd' #RapidShare Password 
#########################################
# Do not change anything below here.    #
#########################################

export dtime=$(date +&quot;%m-%d-%y.%H.%M.%S&quot;)
export urls='urls.'$dtime
export sdir=$(pwd) 
export udir=$sdir'/downloadurls'

function ConfirmOrExit() {
while true
do
echo -n &quot;Please confirm (y or n) :&quot;
read CONFIRM
case $CONFIRM in
y|Y|YES|yes|Yes) break ;;
n|N|no|NO|No)
echo Aborting - you entered $CONFIRM
exit
;;
*) echo Please enter only y or n
esac
done
echo You entered $CONFIRM. Continuing ...
}

function dname() {
while true
do
echo '----- Enter the name of the Directory for the new torrent.       ------'
echo '----- Be sure to use the proper syntax for directories in Linux. ------'
read dirname

echo &quot;###############################################&quot;
echo &quot;You Entered: $dirname&quot;
echo &quot;###############################################&quot;
echo '-----  Is this Correct (Y or N) ------'
read CONFIRM
case $CONFIRM in
n|N|no|NO|No) ;;
y|Y|YES|yes|Yes)
break
;;
exit) exit
;;
*) echo 'Please enter only &quot;Yes&quot; or &quot;No&quot;'
esac
done
}

function setcookie() {
echo '############################'
echo 'Setting RapidShare Cookie'
echo '############################'
echo '---------------------------'
mkdir -p ~/.cookies
wget 
    --save-cookies ~/.cookies/rapidshare 
    --post-data 'login='$rsuser'&amp;password='$rspass 
    --no-check-certificate 
    -O - 
    https://ssl.rapidshare.com/cgi-bin/premiumzone.cgi 
    &amp;lt; /dev/null

}

function downloadrs () {
for url in `cat $udir/$urls`
do
 wget -c --load-cookies ~/.cookies/rapidshare $url
done
}

function setudir() {
echo '---------------------------'
echo &quot;Setting up Directories&quot;
echo '---------------------------'
mkdir -p $udir
echo '#############################################################'
echo &quot;The current time stamp is &quot;$dtime
echo &quot;The working URL file will be &quot;$udir'/'$urls
echo '#############################################################'
ConfirmOrExit
}

function addurls () {
echo &quot;############################################################&quot;
echo &quot;## Next, you will need to paste the list of URL's into    ##&quot;
echo &quot;## the VI editor. Consult VI documentation for info on    ##&quot;
echo &quot;## how to use VI. Don't forget to Write/Quit when done.   ##&quot;
echo &quot;############################################################&quot;

ConfirmOrExit
vi $udir'/'$urls
}

setcookie

setudir

dname

addurls

clear
echo &quot;#####################################################################&quot;
echo &quot;## Now we will Download the list of URL's into the TF Directory.   ##&quot;
echo &quot;#####################################################################&quot;

cd $tdir'/'$user
mkdir $dirname
chmod 777 $dirname
cd $dirname

downloadrs

chmod 777 *
ls -l -h

[/quote] - jcjoey</description>
			<pubDate>Fri, 13 Nov 2009 06:41:19 +0100</pubDate>
		</item>
		<item>
			<title>...</title>
			<link>http://www.my-guides.net/en/content/view/102/26/#comment-1010</link>
			<description>I guess you mean multiple files from Rapidshare, right? Read the paragraph about Firefox in KDE users.  :) - axel</description>
			<pubDate>Fri, 16 Oct 2009 18:28:38 +0100</pubDate>
		</item>
		<item>
			<title>SORRY :D</title>
			<link>http://www.my-guides.net/en/content/view/102/26/#comment-1009</link>
			<description>how to download multiple files on Linux - Fisher</description>
			<pubDate>Fri, 16 Oct 2009 07:05:33 +0100</pubDate>
		</item>
		<item>
			<title>...</title>
			<link>http://www.my-guides.net/en/content/view/102/26/#comment-979</link>
			<description>Thanks for the script John. I'll check it as soon as possible. :) 

For the time being I am pretty satisfied with Firefox, flashgot and kget! - axel</description>
			<pubDate>Thu, 01 Oct 2009 19:55:29 +0100</pubDate>
		</item>
		<item>
			<title>rapidshare script for free users</title>
			<link>http://www.my-guides.net/en/content/view/102/26/#comment-978</link>
			<description>Hi, thanks for the script.
Here's a small linux/windows rapidshare download script which works for free users:
[url]http://sniper11powers.blogspot.com/2009/03/rapidshare-automatic-download-script.html[/url]
Hope you like it too :) - John</description>
			<pubDate>Thu, 01 Oct 2009 16:38:45 +0100</pubDate>
		</item>
		<item>
			<title>...</title>
			<link>http://www.my-guides.net/en/content/view/102/26/#comment-916</link>
			<description>Thank you for the info guys. I'll check tucan. However since I am using KDE4 I am pretty satisfied with kget. :) - axel</description>
			<pubDate>Sun, 30 Aug 2009 19:10:40 +0100</pubDate>
		</item>
		<item>
			<title>...</title>
			<link>http://www.my-guides.net/en/content/view/102/26/#comment-913</link>
			<description>Sorry the link didnt post above..program is called Tucan..You can download Tucan Manager from Getdeb.net 

http://www.getdeb.net/app/Tucan - condor</description>
			<pubDate>Fri, 28 Aug 2009 20:09:52 +0100</pubDate>
		</item>
		<item>
			<title>...</title>
			<link>http://www.my-guides.net/en/content/view/102/26/#comment-912</link>
			<description>I was looking for an an easy to use download manager for rapidshare and the like and ran across this:
http://www.econowics.com/linux/318/install-tucan-rapidshare-megaupload-etc-download-manager-in-ubuntu-linux/

Being a linux noob..I'm running Mint 7..I found this easy to install and use..for paid and free account of many hosting sites...works great!  :) - condor</description>
			<pubDate>Fri, 28 Aug 2009 20:04:39 +0100</pubDate>
		</item>
		<item>
			<title>Thanks</title>
			<link>http://www.my-guides.net/en/content/view/102/26/#comment-906</link>
			<description>@easier wget way:
Nice one!!
For some reason aria2c doesn't work on my Desktop anymore [only on my server] and wget with a cookie never worked.

That's a nice tip, withe --auth-no-challenge option, works a treat on my desktop!

Thanks again.
 - DaveQB</description>
			<pubDate>Tue, 25 Aug 2009 04:16:00 +0100</pubDate>
		</item>
		<item>
			<title>:)</title>
			<link>http://www.my-guides.net/en/content/view/102/26/#comment-891</link>
			<description>Nice tutorial im having my NAS box thats running busy box download the files it seems to be much much faster than old style browser downloads - m11324996</description>
			<pubDate>Fri, 14 Aug 2009 00:11:27 +0100</pubDate>
		</item>
		<item>
			<title>r434rf</title>
			<link>http://www.my-guides.net/en/content/view/102/26/#comment-777</link>
			<description>wget --auth-no-challenge --user=USERNAME --password=PASSWORD -i rs.txt

make a rs.txt file in a dir and put the rs links in it then excecute this cmd - easier wget way</description>
			<pubDate>Wed, 17 Jun 2009 10:32:53 +0100</pubDate>
		</item>
		<item>
			<title>...</title>
			<link>http://www.my-guides.net/en/content/view/102/26/#comment-629</link>
			<description>I have not tried axel. I am pretty satisfied with kget at the moment. :)

As I understand from axel's site currently it doesn't officially support loading of cookies. A patch is submitted but it hasn't been added to the stable package. You can read more and apply the patch on your own here: [url=http://emiraga.wikispaces.com/Axel+Firefox+3+Cookies+Patch]axel firefox cookie support[/url] - axel</description>
			<pubDate>Wed, 22 Apr 2009 19:52:20 +0100</pubDate>
		</item>
		<item>
			<title>...</title>
			<link>http://www.my-guides.net/en/content/view/102/26/#comment-627</link>
			<description>how bout axel? can we use axel to download rapidshare file? - modo</description>
			<pubDate>Wed, 22 Apr 2009 13:58:14 +0100</pubDate>
		</item>
		<item>
			<title>...</title>
			<link>http://www.my-guides.net/en/content/view/102/26/#comment-595</link>
			<description>It's nice to know it helped you GG.  :D - axel</description>
			<pubDate>Thu, 09 Apr 2009 18:41:25 +0100</pubDate>
		</item>
		<item>
			<title>Thanks</title>
			<link>http://www.my-guides.net/en/content/view/102/26/#comment-593</link>
			<description>Hi, 

I was excatly looking for this kind of trick, thank you!

GG - GG</description>
			<pubDate>Thu, 09 Apr 2009 04:10:01 +0100</pubDate>
		</item>
		<item>
			<title>...</title>
			<link>http://www.my-guides.net/en/content/view/102/26/#comment-566</link>
			<description>Hi venda. Although I write this in the beginning of this tutorial I think I should put it in bold to make it more noticeable. :) - axel</description>
			<pubDate>Sun, 29 Mar 2009 19:30:20 +0100</pubDate>
		</item>
	</channel>
</rss>
