Results 1 to 5 of 5

Thread: HOW-TO: Schedule Downloads using DownThemAll

  1. #1
    Join Date
    Aug 2012
    Beans
    11

    Lightbulb HOW-TO: Schedule Downloads using DownThemAll

    Hey there,

    There's a trick to schedule your downloads using DownThemAll!, if you ask me, DTA is the fastest download manager available for Ubuntu users, flareGet is great, but it doesn't integrate with Firefox unless you pay for it. ( Edit: It does, I was wrong, thanks to adnan-kamili we know that, we can integrate flareGet with Firefox by FlashGot, but we have to download flareGet from it's site, not from Ubuntu Software Centre. You'd better use flareGet or Internet Download Manager 5.05 under wine, they work fine, this trick has some problems. )

    We know that, if we close DownThemAll without pausing downloads, the downloads will resume upon starting DownThemAll again, so, what happens if we make DownThemAll our homepage, and schedule Firefox to open on the right time? that's it! ( Thanks to lovinglinux, we know how to make DownThemAll our homepage )

    So that's it, we make

    Code:
    chrome://dta/content/dta/manager.xul
    our homepage, then, we need a script to start Firefox at the time we want it to, then, shut the system down at the specified time.


    open gedit or any other text editor and write these :

    Code:
    #!/bin/bash
    
    sleep [Time you want this script to wait]
    
    sudo shutdown -h [Shutdown's time]
    
    firefox
    As an example, imagine it is 5:00 PM now, and we want our downloads to be started at 1:00 AM and we want our system to shutdown at 7:45 AM, we'll write our script like this:

    Code:
    #!/bin/bash
    
    #sleep time equals to time between 5 PM and 1 AM, so 8. for more options of sleep command, see sleep --help
    sleep 8h
    
    #24 hours clock
    sudo shutdown -h 7:45
    
    firefox
    You're done with writing, save it as a .sh file, then, you can run it via Terminal like this:


    Code:
    sudo sh /path/to/file/scheduler.sh

    NOTE: YOU MUST RUN IT AS ROOT, ELSE, IT WILL ASK FOR PASSWORD WHEN IT COMES TO RUN SHUTDOWN COMMAND, SO THAT WON'T WORK.


    KNOWN ISSUE:

    Resets Firefox Add-Ons.



    Enjoy!


    (For Persian / Farsi users:
    دوستان فارسی زبان هم میتونند از این لینک استفاده کنند)
    Last edited by Mahdi D; March 5th, 2013 at 12:55 PM.

  2. #2
    Join Date
    Aug 2011
    Beans
    16

    Re: HOW-TO: Schedule Downloads using DownThemAll

    FlareGet integrates with firefox fully, without any cost. Just install flashgot addon and choose flareget from the list.

  3. #3
    Join Date
    Aug 2012
    Beans
    11

    Re: HOW-TO: Schedule Downloads using DownThemAll

    Quote Originally Posted by adnan-kamili View Post
    FlareGet integrates with firefox fully, without any cost. Just install flashgot addon and choose flareget from the list.

    I tried it, but that doesn't seem to work, at least for me, and that goes a little bit illegal, because flareGet itself gives integration with a cost, dunno.

    I really like DownThemAll and I think it's better than flareGet, that's a personal choice anyway. xD
    Last edited by Mahdi D; February 25th, 2013 at 01:29 PM.

  4. #4
    Join Date
    Aug 2011
    Beans
    16

    Re: HOW-TO: Schedule Downloads using DownThemAll

    It seems you have installed flareget from Ubuntu Software Centre. It has some issues. Try using the version available on website: http://flareget.com/download . It works fine, and it is not illegal, flashgot support was added for flareGet on request by its developer only.

  5. #5
    Join Date
    Aug 2012
    Beans
    11

    Re: HOW-TO: Schedule Downloads using DownThemAll

    Quote Originally Posted by adnan-kamili View Post
    It seems you have installed flareget from Ubuntu Software Centre. It has some issues. Try using the version available on website: http://flareget.com/download . It works fine, and it is not illegal, flashgot support was added for flareGet on request by its developer only.

    Hey there, you were right! now, I don't think if anybody needs this trick, thank you very much! <3

Tags for this Thread

Bookmarks

Posting Permissions

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