In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-01-18 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/01 Report--
This article mainly introduces "how to download accelerator for Linux". In daily operation, I believe many people have doubts about how to download accelerator for Linux. The editor consulted all kinds of materials and sorted out simple and easy-to-use operation methods. I hope it will be helpful for you to answer the doubt about "how to download accelerator for Linux". Next, please follow the editor to study!
Wget We'll start with one of the most popular tools called wget. It is a web utility that can be used to download content through HTTP, HTTPS and FTP. Wget can be used in the background and in the foreground, which makes it necessary to keep the download running even if you have logged out.
This tool provides a number of options that allow you to do authenticated downloads, recursive downloads with level restrictions, accept regular expressions for URL, allow exclusion, accept URL input from files, and many more. Wget has so many options that it is strongly recommended that you simply run it to view the tool's help page.
Some useful examples of the $wget-hwget command are: the most basic download example of wget is:
$wget https://wordpress.org/latest.zip examples of URL downloads listed in the file. The first is our list of files:
$cat list.txt https://wordpress.org/latest.zip https://downloads.joomla.org/cms/joomla3/3-8-5/Joomla_3-9-4-Stable-Full_Package.zip https://ftp.drupal.org/files/projects/drupal-8.4.5.zip then you can run the download:
$wget-I list.txt to run the download in the background, you can use:
$wget-b https://wordpress.org/latest.zip if you want to download a single file using wget and FTP.
$wget ftp://user:[email protected]: / path-to-file/file.txt A more useful example is to use background and recursive mode so that you can get all the files and folders in the directory.
$wget-br ftp://user:[email protected]: / path-for-download/Wget is pre-installed on many modern Linux distributions, but if you need to install it, you can use:
$sudo apt install wget # Debian/Ubuntu like distros # yum install wget # CentOS/RHEL # dnf install wget # FedoraCurlcurl is a tool that can be used to transfer data from or to a server. It supports multiple protocols. According to its man pages, the following protocols are supported: DICT,FILE,FTP,FTPS,GOPHER,HTTP,HTTPS,IMAP,IMAPS,LDAP,LDAPS,POP3,POP3S,RTMP,RTSP,SCP,SFTP,SMB,SMBS,SMTP, SMTPS,TELNET and TFTP.
As you can imagine, you can do a lot of things with these. As you may have thought, curl supports proxies, user authentication, FTP upload / download, file transfer recovery, and so on.
Here are some examples of using curl: download a file:
$curl-O https://wordpress.org/latest.zip Download a file to output file by your choice: $curl-o wordpress.zip https://wordpress.org/latest.zip to resume the interrupted download, you can use:
$curl-C-O https://wordpress.org/latest.zip you can see more useful curl examples here: 15 tips on how to use curl in Linux.
To install curl, you can use:
$sudo apt install curl # Debian/Ubuntu # yum install curl # CentOS/RHEL # dnf install curl # FedoraAria2Aria is another multiprotocol download tool. Aria supports HTTP / HTTPS,FTP / SFTP BitTorrent and Metalink. Compared with other features, some of its features are that it supports downloading files, magnetic links and fully functional BitTorrent clients from multiple locations at the same time.
As a BitTorrent client, it supports DHT,PEX, encryption, magnet URI, network seed, selective download and local peer discovery.
Please feel free to check out the Aria2 download Manager article for more detailed usage. Below you can see a few examples of the basic usage of aria2
Here are some examples of using Aria2: download the seed file:
$aria2c http://releases.ubuntu.com/18.10/ubuntu-18.10-desktop-amd64.iso.torrent downloads using the URL listed in the text file:
$aria2c-I downloadurls.txt resumes incomplete download:
Download $aria2c-c http://releases.ubuntu.com/18.10/ubuntu-18.10-desktop-amd64.iso.torrent from a password-protected website:
$aria2c-- http-user=xxx-- http-password=xxx https://protectedwebsite.com/file to install Aria2, you can use the following command:
$sudo apt install aria2 # Debian/Ubuntu # yum install aria2 # CentOS/RHEL # dnf install aria2 # Fedora Axel the fourth download utility in our list is Axel, which attempts to improve the download process by using multiple connections to a file. It can be downloaded at one time using multiple download locations. According to developers, Axel can increase download speed by 60% and supports protocols: HTTP / HTTPS,FTP and FTPS.
We reviewed Axel in another article, where you can find how to use Axel as a download accelerator to speed up FTP and HTTP downloads in Linux.
In the above article, you can check some download time comparisons between wget, HTTP downloads and Axel.
Here are some examples of using Axel: to perform a simple download using Axel, you can use the following command:
$axel https://wordpress.org/latest.zip you can set the maximum download speed using the appropriate option-max-speed or short option-s. This value is set in bytes per second:
$axel-- max-speed=512000 https://wordpress.org/latest.zip to save the file under a different name, you can use the-o option to specify the file name:
$axel-o wordpress.zip https://wordpress.org/latest.zip if you want to install Axel on a Linux system, use the appropriate command in the following command:
$sudo apt install axel # Ubuntu/Debian # yum install epel release & & yum install axel # CentOS/RHEL # dnf install axel # Fedora here, the study on "how to download accelerator for Linux" is over. I hope I can solve your doubts. The collocation of theory and practice can better help you learn, go and try it! If you want to continue to learn more related knowledge, please continue to follow the website, the editor will continue to work hard to bring you more practical articles!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.