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                 # 我加的

 

 

原文地址:https://www.cnblogs.com/welhzh/p/14029033.html