Saturday, 12 April 2008 04:08
This article no longer exists
Set as favorite
Email this
Hits: 113828
Comments (36)
Subscribe to this comment's feedi dont have a premium account
and how we can download if we dont have a premium account? what will we do?
...
hiya ive just started using linux and having some difficulties. i have done everything u explained here.im using gnome btw. all the settings are correct but when im tryin to save my cookies it says so such file or dir exists. i have checked my cookies and rapidshare is definetely there.so my question is how come that the terminal says it doesnt exist when i can see it clerly does? thank you 4 your help in advance.
...
Hey larababa. Have you followed the "for gnome users" part of the guide or the first one with "wget"?
I didn't understand where you got the error. Do you have a directory named .cookies inside your home directory? It is hidden. In which directory did you check for the rapidshare cookie?
I didn't understand where you got the error. Do you have a directory named .cookies inside your home directory? It is hidden. In which directory did you check for the rapidshare cookie?
...
@axel
i am also getting the same problems as larababa, using the "for gnome users" part of the guide.
checked my home directory and the .cookies directory does not exist.
at the end of the process i get this:
any help would be great
i am also getting the same problems as larababa, using the "for gnome users" part of the guide.
checked my home directory and the .cookies directory does not exist.
at the end of the process i get this:
Cannot open cookies file `/root/.cookies/rapidshare': No such file or directory
any help would be great
...
I see. There is one more command I should add to the guide.
mkdir ~/.cookies
Type this first and then the wget command.
mkdir ~/.cookies
Type this first and then the wget command.
...
here's another good tutorial to download files from rapidshare with in linux:
http://fedoracoreproject.blogspot.com/2009/03/linux-command-line-tool-to-download.html
http://fedoracoreproject.blogspot.com/2009/03/linux-command-line-tool-to-download.html
download only HTML pages
Hi,
I used your script, but I've got only HTML pages (not files) from rapidshare (HTML pages with buttons to free or premium download)
Do you know how to download files ?
Thanks a lot.
I used your script, but I've got only HTML pages (not files) from rapidshare (HTML pages with buttons to free or premium download)
Do you know how to download files ?
Thanks a lot.
...
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.
...
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: axel firefox cookie support
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: axel firefox cookie support
r434rf
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
make a rs.txt file in a dir and put the rs links in it then excecute this cmd
:)
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
Thanks
@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.
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.
...
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...tu-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!
http://www.econowics.com/linux...tu-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!
...
Sorry the link didnt post above..program is called Tucan..You can download Tucan Manager from Getdeb.net
http://www.getdeb.net/app/Tucan
http://www.getdeb.net/app/Tucan
...
Thank you for the info guys. I'll check tucan. However since I am using KDE4 I am pretty satisfied with kget.
rapidshare script for free users
Hi, thanks for the script.
Here's a small linux/windows rapidshare download script which works for free users:
http://sniper11powers.blogspot...cript.html
Hope you like it too
Here's a small linux/windows rapidshare download script which works for free users:
http://sniper11powers.blogspot...cript.html
Hope you like it too
...
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!
For the time being I am pretty satisfied with Firefox, flashgot and kget!
...
I guess you mean multiple files from Rapidshare, right? Read the paragraph about Firefox in KDE users.
Linux Script to Download RapidShare Link's into TorrentFlux
Paste this in to a file.
don't forget to chmod 700 in order to execute
don't forget to chmod 700 in order to execute
#!/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 +"%m-%d-%y.%H.%M.%S")
export urls='urls.'$dtime
export sdir=$(pwd)
export udir=$sdir'/downloadurls'
function ConfirmOrExit() {
while true
do
echo -n "Please confirm (y or n) :"
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 "###############################################"
echo "You Entered: $dirname"
echo "###############################################"
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 "Yes" or "No"'
esac
done
}
function setcookie() {
echo '############################'
echo 'Setting RapidShare Cookie'
echo '############################'
echo '---------------------------'
mkdir -p ~/.cookies
wget
--save-cookies ~/.cookies/rapidshare
--post-data 'login='$rsuser'&password='$rspass
https://ssl.rapidshare.com/cgi-bin/premiumzone.cgi
< /dev/null
}
function downloadrs () {
for url in `cat $udir/$urls`
do
wget -c --load-cookies ~/.cookies/rapidshare $url
done
}
function setudir() {
echo '---------------------------'
echo "Setting up Directories"
echo '---------------------------'
mkdir -p $udir
echo '######################################################
#######'
echo "The current time stamp is "$dtime
echo "The working URL file will be "$udir'/'$urls
echo '######################################################
#######'
ConfirmOrExit
}
function addurls () {
echo " #######################################################
#####"
echo "## Next, you will need to paste the list of URL's into ##"
echo "## the VI editor. Consult VI documentation for info on ##"
echo "## how to use VI. Don't forget to Write/Quit when done. ##"
echo " #######################################################
#####"
ConfirmOrExit
vi $udir'/'$urls
}
setcookie
setudir
dname
addurls
clear
echo " #######################################################
##############"
echo "## Now we will Download the list of URL's into the TF Directory. ##"
echo " #######################################################
##############"
cd $tdir'/'$user
mkdir $dirname
chmod 777 $dirname
cd $dirname
downloadrs
chmod 777 *
ls -l -h
...
Interesting script jcjoey! I haven't used torrentflux before but I believe your script is helpful.
Thanks!
Thanks! ...
Why u dont using jdownloader from http://jdownloader.org/download ? It is perfect for free an premium users for all host sites.
...
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.
Tucan
The main reason I would use not to use Ubuntu in the past for all my premium rapidshare downloads, was I did not have enough knowledge of the software available. I have collected a few applications suitable for ubuntu and posted them on my blog. I hope this helps someone. http://ubuntudan.blogspot.com/...nager.html
Thank you for this
This article was perfect. It worked perfectly for me, and I'd been looking for something like this.
Small update
Small change from RS:
https://ssl.rapidshare.com/cgi-bin/premiumzone.cgi
changes to
https://ssl.rapidshare.com/premzone.html
https://ssl.rapidshare.com/cgi-bin/premiumzone.cgi
changes to
https://ssl.rapidshare.com/premzone.html
Write comment