[HOWTO] Premium DDL downloads from your SSH-enabled seedbox with wget
Register

We are the best invite forum on the internet! Here you will find free invites, free seedboxes, free bonuses, and much more. Our members know the true meaning of sharing and have created a truly global bittorent community! Our site has the most up to date information on all private trackers and our members will guide you and introduce you to this truly secretive and enlightened club. Ready to get started? Register now!


View Poll Results: Did you find this tutorial useful?

Voters
8. You may not vote on this poll
  • Yes, awesome!

    7 87.50%
  • No, I don't like it.

    0 0%
  • What the heck is a SSH? Some sort of weapon?

    1 12.50%
Page 1 of 2 1 2 LastLast
Results 1 to 10 of 13
Like Tree1Likes

Thread: [HOWTO] Premium DDL downloads from your SSH-enabled seedbox with wget

  1. #1

    Join Date
    Feb 2011
    Posts
    20

    Default [HOWTO] Premium DDL downloads from your SSH-enabled seedbox with wget

    I've recently got my first seedbox (a basic Feral Hosting slot) and installed Rapidleech to fast download with my premium FileServe/FileSonic/Netload accounts. Bur RL needs plugins, sometimes locks up and things like this so, I had to find an alternative.
    This alternative is a combination of the the good old wget utility with a touch of lynx, a text mode browser.

    First of all we have to install both packages (if they are not yet on your system): assume the absolute path to your home directory is "/media/sdh1/home/shutaroz", this is just a matter of downloading sources, untarring, enter directory, issue a ".configure --prefix=/media/sdh1/home/shutaroz", wait a bit, issue a "make", wait a little bit more, issue a "make install" and done! Repeat this for both packages and you'll end up with a local and complete installation of these awesome pieces of software.
    Notice that now you have bin, etc, man and share folders on your home directory. Nice, uh?
    Let's continue by telling lynx something about cookies and how to handle them.
    Edit the "etc/lynx.cfg" file and add, at the very end, the following lines (assume your home folder is "/media/sdh1/home/shutaroz"):

    SET_COOKIES:TRUE
    ACCEPT_ALL_COOKIES:TRUE
    PERSISTENT_COOKIES:TRUE
    COOKIE_FILE:/media/sdh1/home/shutaroz/lynx_cookies
    COOKIE_SAVE_FILE:/media/sdh1/home/shutaroz/lynx_cookies

    Save this file and fire up lynx browser. Navigate, e.g., to FileServe website (press the "g" key and then enter http://www.fileserve.com), find the login fields (move between fields with up/down arrows or tab), fill them with your username and password and then submit. By doing this step, you have created the famous "cookie" which stores your credentials and open the doors for fast and easy downloads.
    Next step is the last one: we have to tell wget to use the cookie created by lynx (and stored in the "/media/sdh1/home/shutaroz/lynx_cookies" file) and to use your credentials to access FileServe downloads. It's easy, just create a ".wgetrc" file (notice the dot that means this is an hidden file) in the root of your home directory ("/media/sdh1/home/shutaroz") and fill it with the following lines:

    http-user=ShutaroZ
    http-passwd=mySuperSecretPass
    load_cookies=/media/sdh1/home/shutaroz/lynx_cookies

    Save the file and we're done!
    Let's test it! Grab a FileServe link and issue the following command:

    wget http://www.fileserve.com/file/something

    If everything went right, your premium download should start immediately. If wget downloads a small file, thet is the html error page and something is not right in place with our setup: go and check the configuration files!



    If you want to download a list of links, just put them, one per line, in a text file called, for instance, "mylinks" and issue the following command:

    wget -i mylinks

    wget will process all the links in your text file downloading everything without your assistance and without a download manager!

    I've tested it with FileServe, FileSonic, FileCrown and NetLoad hosting services.

    Hope this tutorial to be useful and sorry for my english, it is not my native language!

    Best regards.

    ShutaroZ


  2. To remove ads become VIP. Inquire about advertising here.
  3. #2

    Join Date
    Mar 2011
    Posts
    67

    Default

    nice share

  4. #3

    Join Date
    Sep 2010
    Posts
    5

    Default Re: [HOWTO] Premium DDL downloads from your SSH-enabled seedbox with wget

    Nice tutorial. I'll certainly give it a try.

    Thanks for sharing

  5. #4

    Join Date
    Oct 2010
    Location
    Mexico, DF
    Posts
    75

    Default Re: [HOWTO] Premium DDL downloads from your SSH-enabled seedbox with wget

    if u can be a little more specific with the guide for the most inexperience on SSH and commands like me it would be greatly appreciated.

  6. #5

    Join Date
    Feb 2011
    Posts
    20

    Default Re: [HOWTO] Premium DDL downloads from your SSH-enabled seedbox with wget

    Quote Originally Posted by vic_sparrow View Post
    if u can be a little more specific with the guide for the most inexperience on SSH and commands like me it would be greatly appreciated.
    I'll try to be more specific.
    The goal is to save the cookie from e.g. FileSonic in a file and instruct wget to use that cookie to start a premium download.
    Package installation is required only if you don't have lynx and wget already installed (my FeralHosting slot missed lynx).
    The lynx.cfg coult be the system one (/etc/lynx.cfg) or your user one (~/lynx.cfg). In the latter case, you have to launch lynx with the following command:

    Code:
     lynx -cfg=~/lynx.cfg
    put the required lines (see the main post) in the lynx.cfg with the following command (the cd is to ensure you're in your home directory):

    Code:
    cd
    nano lynx.cfg
    at this point paste the configuration text and then issue

    Code:
    CTRL+X (exit)
    and finally reply "Y" to save the file and confirm filename.

    Open up your lynx browser e.g. to the filesonic login page:

    Code:
     lynx -cfg=~/lynx.cfg www.filesonic.com/user/login
    and login with your credentials.
    Quit lynx with by hitting the "q" key and confirm.

    Make the necessary steps to create the .wgetrc file as explained above and you should now be able to do something like:

    Code:
    wget http://www.filesonic.com/file/1030194291/testfile.rar
    note you have to use full links (with filename) and not short links (e.g. Download testfile.rar for free on Filesonic.com) otherwise wget will download the file and name it 1030194291 (in thos case).

    Hope you'll find these info useful!

    Best regards.

    Shu

  7. #6

    Join Date
    Apr 2011
    Location
    Could be anywhere.
    Posts
    1,499

    Default Re: [HOWTO] Premium DDL downloads from your SSH-enabled seedbox with wget

    Hi buddy. Thanks alot for this! I also have a feral hosting slot and I am going to try this later tonight as I was looking for a tutorial like this!

    Thanks again! Will report back how it works for me!
    ShutaroZ likes this.

  8. #7

    Join Date
    Feb 2011
    Posts
    20

    Default Re: [HOWTO] Premium DDL downloads from your SSH-enabled seedbox with wget

    Quote Originally Posted by JamesGuth View Post
    Hi buddy. Thanks alot for this! I also have a feral hosting slot and I am going to try this later tonight as I was looking for a tutorial like this!

    Thanks again! Will report back how it works for me!
    You're welcome matey!
    I'm experimenting some improvements, will publish them ASAP.
    If you have problems, also ask FH support, they're a very professioal team!

    Best regards!

    AtaruZ

  9. #8

    Join Date
    Apr 2011
    Location
    Could be anywhere.
    Posts
    1,499

    Default Re: [HOWTO] Premium DDL downloads from your SSH-enabled seedbox with wget

    Yes please post anything else you find as I thought maybe this wasn't possible with the limitations of a "slot" instead of a VPS.

    When my feral one runs out I think I may go with a vps next time as there is so much more you can do. Where did you learn how to do this?

  10. #9

    Join Date
    Feb 2011
    Posts
    20

    Default Re: [HOWTO] Premium DDL downloads from your SSH-enabled seedbox with wget

    Eheh, your slot can do things you'd never imagine matey!!! The only thing it needs is some experience and I'm an IT expert with 20 years training and working hard in this business. Google does the rest!!!
    FH offers aa very good cost-performance service with the drawback of limited UL bandwidth (I use very much, even more than 1TB/month) and their support team is simply awesome!

    Which VPS are you going to try?

  11. #10

    Join Date
    Apr 2011
    Location
    Could be anywhere.
    Posts
    1,499

    Default Re: [HOWTO] Premium DDL downloads from your SSH-enabled seedbox with wget

    Well I have the "old" slot with unlimited bandwith but only have 55GB storage. I am 3 weeks into the month and have over 1.5TB already, so if I upgrade and stay with feral, the 1.5TB limit wouldn't be enough for me. So i would need to go higher to the £20 one.

    For £25 from evoboxes.net you can have a VERY good vps with 1GB/s connection. But they are sold out at the moment, I just keep checking for it lol.

Page 1 of 2 1 2 LastLast

Similar Threads

  1. Replies: 19
    Last Post: 1 Week Ago, 06:04 PM
  2. Replies: 9
    Last Post: November 15th, 2011, 02:19 AM
  3. Replies: 1
    Last Post: March 28th, 2010, 06:28 AM
  4. Replies: 198
    Last Post: March 28th, 2010, 12:15 AM
  5. Cannot Download From TorrentLeech
    By shikhar4u2006 in forum Help
    Replies: 5
    Last Post: April 30th, 2009, 01:22 PM

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •