Download Softwares
apt
apt, short for Advanced Package Tool, is a package management system commonly used in Debian-based Linux distributions like Ubuntu. It simplifies the process of installing, updating, and managing software packages on a system.
Usually, we could do apt insatll
or sudo apt install
. In this case, commands would link into /usr/bin
or /usr/local/bin
which requires root permission. You could also use it to down load the deb
file and download in local. Take a common software tree
as an example:
|
After that, you just need to export the bin from tree into the environment.
wget
|
支持断点续传
aria2c
website: https://aria2.github.io/
install:
|
aria2 is a lightweight multi-protocol & multi-source command-line download utility. It supports HTTP/HTTPS, FTP, SFTP, BitTorrent and Metalink. aria2 can be manipulated via built-in JSON-RPC and XML-RPC interfaces.
Examples
|
curl
reference: https://curl.haxx.se/docs/manpage.html
curl is a tool to transfer data from or to a server, using one of the supported protocols (DICT, FILE, FTP, FTPS, GOPHER, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS, POP3, POP3S, RTMP, RTSP, SCP, SFTP, SMB, SMBS, SMTP, SMTPS, TELNET and TFTP). The command is designed to work without user interaction.
|
more tutorial: https://curl.haxx.se/docs/manual.html
Download Softwares
https://karobben.github.io/2020/06/23/Linux/Download-Software/