Linux Command To Download File



  1. Linux Command To Download File From Artifactory
  2. Linux Command To Download File
  3. Linux Command Line To Download File
Curl is a popular command-line tool used for downloading files from the Internet. It is a lightweight tool that is available on any UNIX system. Curl supports a wide range of protocols, for example, HTTP, HTTPS, FTP, FTPS, SFTP, etc. If no protocol is specified, curl defaults to HTTP. The functionalities of curl come from libcurl.

Curl started its journey back in the mid-1990s when the Internet was still a new thing. Daniel Stenberg, a Swedish programmer, started the project that eventually became curl. He aimed to develop a bot that would download currency exchange rates from a webpage periodically and provide Swedish Kronor equivalents in USD to IRC users. The project was successful and, thus, curl was born.

To download a.rpm file from the repositories, enter the following: sudo yumdownloader packagename If you wanted to download the files for Apache, for instance, you’d replace packagename with httpd. Curl is another effective download tool, it can be use to upload or download file with giving a simple command, it supports pause or resume of downloaded package and supports maximum of web protocols, it can predict time left in download to be complete, progress is visible via progress bar. My host allows limited access to SSH and Linux commands. However, I can't use Wget believe it or not. I was hoping for something to download a file (.flv) from another server. Is there another command I can try? If there isn't, I could probably make use of Python, Perl or PHP (favourite) to achieve a file download.

Over time, curl was further improved with the addition of new internet protocols and features. In this guide, check out how to use curl to download a file.

Installing curl

Linux Command To Download File From Artifactory

Today, you will find curl pre-installed in most of the Linux distros. Curl is quite a popular package and is available for any Linux distro. However, there is no guarantee that curl is currently installed in your distro.

Run the command according to your distro type to install curl on your system.

To install curl on Debian/Ubuntu and derivatives, enter the following: Paul allenthe initials game.

To install curl on RHEL, CentOS, Fedora, and derivatives, enter the following:

To install curl on OpenSUSE and derivatives, enter the following:

To install curl on Arch Linux and derivatives, enter the following:

Curl is open-source software. You can grab the curl source code and compile it manually. However, this process is more complex and should be avoided if you intend to use curl for more than testing or redistributing/packaging.

The following process was demonstrated in Ubuntu. For an in-depth guide on compiling curl, check out the official curl documentation.

Download the curl source code here. I have grabbed the latest version of the curl source code. At the time of writing this article, the latest version is curl v7.72.0.

Command
$ wget https://curl.haxx.se/download/curl-7.72.0.tar.xz

Extract the archive.

Run the configuration script.

Start the compilation process.

Finally, install the curl program that we just compiled.

Using curl

To demonstrate the usage of the curl program, first, we need a dummy file to download. Any online file will work for this, as long as you have the direct download link. For this guide, I will use the small file provided by think broadband.

Curl Version

Check out the version of curl by entering the following:

Download File Using curl

This is a very basic way of using curl. We will download the dummy file. Here, the “-O” flag tells curl to download and save the file in the current directory.

$ curl -O http://ipv4.download.thinkbroadband.com/10MB.zip

To download and save the file with a different file name, use the “-o” flag. With this flag, the file will be downloaded and saved at the current working directory.

$ curl -o demo.file http://ipv4.download.thinkbroadband.com/10MB.zip

Download Multiple Files

Need to download multiple files? Follow the command structure shown below. Use either “-o” or “-O” as necessary.

Progress Bar

By default, curl does not show any progress bar. To enable the progress bar, use the “-#” flag.

Linux Command To Download File
$ curl -# -O http://ipv4.download.thinkbroadband.com/10MB.zip

Silent Mode

Linux

If you want curl to print no output, use the “–silent” flag.

$ curl --silent-O http://ipv4.download.thinkbroadband.com/10MB.zip

Speed Limit

Curl allows you to limit the download speed. Use the “–limit-rate” flag, followed by the bandwidth limit, to do so. Here, the download speed is limited to 1mb.

$ curl --limit-rate 1m -O http://ipv4.download.thinkbroadband.com/10MB.zip

Manage FTP Server

It is also possible to manage an FTP server using curl. Assuming that the FTP server is protected, you will need to use the “-u” flag, followed by the username and password. If no file is specified, curl will print a list of all the files and directories under the user’s home directory.

Downloading files from an FTP server is like the method shown before. However, assuming the FTP server requires user authentication, use the following command structure:

$ curl -u<username>:<password> ftp://exmaple.com/<file>

To upload a file to the FTP server, use the following command structure:

$ curl -T<file_to_upload>-u<username>:<password> ftp://exmaple.com/

User Agent

Linux Command To Download File

Command to download file in linux

Linux Command Line To Download File

In certain situations, the URL that you are trying to access may be blocked due to a lack of a proper user agent. Curl allows you to define the user agent manually. To do so, use the flag “-A,” followed by the user agent. As for the user agent, you can use the User Agents randomizer. If you want a custom user agent, then you can find one from WhatIsMyBrowser.

$ curl -A'<user_agent>'-O http://ipv4.download.thinkbroadband.com/10MB.zip

Final Thoughts

Despite it being a simple and lightweight tool, curl offers tons of features. Compared to other command-line download managers, like wget, curl offers a more sophisticated way of handling file downloads.

Linux command to download file from url

For in-depth information, I always recommend checking out the man page of curl, which you can open with the following command:

Check out some of the best download managers for Linux here.

Happy computing!