zoukankan      html  css  js  c++  java
  • linux下的下载器软件

    XDM

    XDM, Xtreme Download Manager is an open-source downloader written in Java. Like any good download manager, it can work with queues, torrents, browsers, and it also includes a video grabber and a smart scheduler.

    Aria2

    Aria2 is an open-source lightweight multi-source and multi-protocol command line-based downloader with support for Metalinks, torrents, HTTP/HTTPS, SFTP, etc.

    uGet

    uGet has earned its title as the #1 open-source download manager for Linux distros and it features the ability to handle any downloading task you can throw at it including using multiple connections, using queues, categories, etc.

    建议用xdm,因为它不需要安装且有界面,它原本需要超级用户权限,想将自己安装到 /opt目录下,但是可以自己查看它的安装shell脚本,将它安装到自己的用户目录。下面是我自己的示例文件:

    #!/bin/bash
    if [ $EUID -eq 0 ];then
        echo "It's not recomended to run XDM  as root, as it can cause problems"
    fi
    pushd /home/hzh/soft/xdm     # 我加的,下面这行的 /opt 被我改成了 opt
    opt/xdman/jre/bin/java -Dsun.java2d.xrender=false -Xmx1024m -jar opt/xdman/xdman.jar
    popd                 # 我加的

     

     

  • 相关阅读:
    报错:maven 程序包org.junit不存在
    Sublime Text 3
    Win10使用技巧
    CookieHelper
    log4net
    文件导出 Aspose
    C# 数字证书加载 X509Certificate2
    前后端文件上传
    WebApi 后端文件传输至远程服务器
    aspnet_regiis.exe用法(备忘非自创)
  • 原文地址:https://www.cnblogs.com/welhzh/p/14029033.html
Copyright © 2011-2022 走看看