Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!


Download Managers on Linux?
New on LowEndTalk? Please Register and read our Community Rules.

All new Registrations are manually reviewed and approved, so a short delay after registration may occur before your account becomes active.

Download Managers on Linux?

Are there any download managers on linux Gui/cli you can recommend? Or would you just write a bash script for it (basically to download multiple Hotlinks one by one) ?

Comments

  • I have written some scripts for DMAX and such stuff.

    Usally I use jDownloader.

    Thanked by 1Ympker
  • Found uGet. Will check out jDownloader as wellm

  • Aria2 with some Gui

    Thanked by 1kassle
  • Downthemall from firefox. But I don’t know if it is ready for quantum yet or not

  • Yes, a bash script with nc.

    I've actually done a root user proxy web server application with bash and nc, to this day it is the most secure piece of software known to man kind. It is securely deployed somewhere in my piles of dead drives.

    Thanked by 1Ympker
  • wget -c -i links.txt

    rerun as often as necessary until everything is fetched

    Thanked by 1Ympker
  • JanevskiJanevski Member
    edited December 2017

    Ympker said: (basically to download multiple Hotlinks one by one)

    I think this is what you need:

    $ wget --user-agent="-" --recursive -e robots=off --no-clobber --page-requisites --convert-links --mirror --trust-server-names --adjust-extension --restrict-file-names=windows --no-parent --domains nic.pro.mk http://nic.pro.mk
    

    It just needs to be tweaked so cloudflare doesn't stop you from downloading LET.

    PS: You'll also need --no-check-ceritificate for https.

    Thanked by 1Ympker
  • ehabehab Member
    edited December 2017
  • lftp is usable in scripts.

    https://en.wikipedia.org/wiki/Lftp

    Besides FTP, it also supports FTPS, HTTP, HTTPS, HFTP, FISH,
    and SFTP. The program also supports FXP, allowing for data
    transfers between two FTP servers bypassing the client machine.
    A simple BitTorrent client is also included via the torrent command.
    
  • aria2 https://aria2.github.io

    support: http, ftp, torrent

    you can use uGet for GUI, there is also web based UI

    Thanked by 1Ympker
  • jdownloader on cli with webinterface

  • @akhfa said:
    Downthemall from firefox. But I don’t know if it is ready for quantum yet or not

    >

    DownloadThemAll! is not ready for Firefox 57+. The developer is working on a DTA Lite web extension, but it's not ready yet.

    @ehab said:
    axel

    Axel is really nice, and it has the ability to download files in multiple parts and resume interrupted downloads.

  • I keep connection counts and block based on User-Agent because of people like you.

    Thanked by 1flatland_spider
  • farsighterfarsighter Member
    edited December 2017

    I'm looking for a way to view and solve captchas when using cli text browsers . Many filehost services force captcha solving before download access, making them unusable through text browsers

  • bapbap Member
    edited December 2017

    wget & youtube-dl

    use media inspector plugin on browser

  • @WSS said:
    I keep connection counts and block based on User-Agent because of people like you.

    >

    Smart. Axel defaults to 4 connections, so it's generally not a problem.

    The only time I really hammer a server is when it's a commercial entity. Then "-n 100"...

  • qbeststarqbeststar Member, Host Rep
    edited December 2017

    @Ympker said:
    Are there any download managers on linux Gui/cli you can recommend?

    Hi, Try UGET , they support multi-threading download, pause/resume, queueing
    apt-get install uget

    Thanked by 1Ympker
Sign In or Register to comment.