download – TecAdmin https://tecadmin.net How to guide for System Administrator's and Developers Mon, 15 Aug 2022 03:18:40 +0000 en-US hourly 1 https://wordpress.org/?v=6.1.1 Download Ubuntu 22.04 – DVD ISO Images https://tecadmin.net/download-ubuntu-22-04/ https://tecadmin.net/download-ubuntu-22-04/#respond Wed, 27 Apr 2022 03:58:25 +0000 https://tecadmin.net/?p=14470 Ubuntu 22.04 LTS Jammy Jellyfish is released and available for download. This tutorial will provide you the download links to DVD ISO Images of Ubuntu 22.04 LTS with different desktop flavors. You can find the Ubuntu 22.04 release notes on its official website. Download Ubuntu 22.04 Ubuntu desktop is available in multiple flavors, where you [...]

The post Download Ubuntu 22.04 – DVD ISO Images appeared first on TecAdmin.

]]>
Ubuntu 22.04 LTS Jammy Jellyfish is released and available for download. This tutorial will provide you the download links to DVD ISO Images of Ubuntu 22.04 LTS with different desktop flavors. You can find the Ubuntu 22.04 release notes on its official website.

Download Ubuntu 22.04

Ubuntu desktop is available in multiple flavors, where you can choose what desktop manager you want as default. Some of the flavors are built for specific purposes. Select your favorite Desktop edition and download it with the following links:

Use below link to download Ubuntu server edition, which doesn’t have any preinstalled Desktop environment.

Download Ubuntu ISO with Curl

Wget and curl are the frequently used commands for downloading files over FTP, and HTTP protocols. This tutorial will use the curl command to download files, You can use wget instead. Make sure you have curl utility installed on your system.

sudo apt install curl -y 

Then download the Focal Desktop or server edition image:

### Ubuntu 22.04 Desktop Edition 
curl -O http://cdimage.ubuntu.com/daily-live/current/jammy-desktop-amd64.iso 

### Ubuntu 22.04 Server Edition 
curl -O http://releases.ubuntu.com/22.04/ubuntu-22.04-live-server-amd64.iso 

Conclusion

This tutorial helped you to download different flavors of Ubuntu 22.04 LTS Jammy Jellyfish Desktop and Server editions ISO images.

The post Download Ubuntu 22.04 – DVD ISO Images appeared first on TecAdmin.

]]>
https://tecadmin.net/download-ubuntu-22-04/feed/ 0
Wget – Download files to Specific Directory https://tecadmin.net/wget-download-files-to-specific-directory/ https://tecadmin.net/wget-download-files-to-specific-directory/#respond Sun, 06 Jun 2021 06:27:18 +0000 https://tecadmin.net/?p=25546 Wget is a free command-line utility for downloading files from the remote server. It supports HTTP, HTTPS, and FTP protocols, as well as follows the HTTP proxies servers. The default wget download files under the current working directory. In this tutorial, we will describe you to how to download files to a specific directory using [...]

The post Wget – Download files to Specific Directory appeared first on TecAdmin.

]]>
Wget is a free command-line utility for downloading files from the remote server. It supports HTTP, HTTPS, and FTP protocols, as well as follows the HTTP proxies servers.

The default wget download files under the current working directory. In this tutorial, we will describe you to how to download files to a specific directory using wget.

Using wget -O Option

Use -O or --output-document=FILE option will truncate FILE immediately, and all downloaded content will be written to FILE. Here the wget -O FILE http://path is intended to work like wget -O - http://path > FILE;

For example:

wget -O /tmp/Ubuntu.iso https://releases.ubuntu.com/20.04/ubuntu-20.04-desktop-amd64.iso  

The above command will download the remote ISO file with the Wget command and save it as /tmp/Ubuntu.iso in the local system. No matter what is the current working directory.

Using wget -P Option

Alternatively, Use -P or --directory-prefix=PREFIX. Here the PREFIX is a directory where all other files and subdirectories will be saved to. The default download directory is “.” the current directory.

For example:

wget -P /tmp https://releases.ubuntu.com/20.04/ubuntu-20.04-desktop-amd64.iso

The above command will download the iso file under the /tmp directory.

Conclusion

In this guide, you have learned two methods to download files to a specified directory using the Wget command.

The post Wget – Download files to Specific Directory appeared first on TecAdmin.

]]>
https://tecadmin.net/wget-download-files-to-specific-directory/feed/ 0
Download Ubuntu 20.04 LTS – DVD ISO Images https://tecadmin.net/download-ubuntu-20-04-lts-dvd-iso-images/ https://tecadmin.net/download-ubuntu-20-04-lts-dvd-iso-images/#respond Thu, 17 Dec 2020 07:29:38 +0000 https://tecadmin.net/?p=24204 Ubuntu 20.04 Focal Fossa is the latest LTS release available to download. This tutorial will provide you the download links to DVD ISO Images of Ubuntu 20.04 LTS with different desktop flavors. You can find the Ubuntu 20.04 release notes on its official website. In this tutorial, you will find instructions to download Ubuntu 20.04 [...]

The post Download Ubuntu 20.04 LTS – DVD ISO Images appeared first on TecAdmin.

]]>
Ubuntu 20.04 Focal Fossa is the latest LTS release available to download. This tutorial will provide you the download links to DVD ISO Images of Ubuntu 20.04 LTS with different desktop flavors. You can find the Ubuntu 20.04 release notes on its official website.

In this tutorial, you will find instructions to download Ubuntu 20.04 LTS Focal Fossa ISO images from official site. Also you will learn how to download images with zsync command line utility.

Ubuntu 20.04 LTS Download Links

Select your favorite Desktop edition and use below links to download the required editions.

Download Ubuntu ISO with Curl

Wget and curl is the frequently used commands for downloading files over ftp, http protocols. This tutorial will use curl command to download files, You can use wget instead. Make sure you have curl utility installed on your system.

sudo apt install curl -y 

Then download the Focal Desktop or server edition image:

### Ubuntu 20.04 Desktop Edition 
curl -O http://cdimage.ubuntu.com/focal/daily-live/current/focal-desktop-amd64.iso 

### Ubuntu 20.04 Server Edition 
curl -O http://releases.ubuntu.com/20.04/ubuntu-20.04.1-live-server-amd64.iso 

Download Ubuntu ISO with Zsync

Zsync allows us to download only the updates in a iso file. So, first install the zsync utility on your system:

sudo apt install zsync -y 

Now, use the following command to download Ubuntu Desktop ISO image.

zsync http://cdimage.ubuntu.com/focal/daily-live/current/focal-desktop-amd64.iso.zsync 

The first time, it will show you a message on screen “No relevent local data found – I will be downloading the whole file.” It means zsync is downloading the complete ISO files.

Next time, when you want to download updates, use the same command from directory contains previously downloaded iso file. Alternatively, use -i option to define existing iso file. Now, zsync only download the change part of the ISO only.

zsync -i focal-desktop-amd64.iso http://cdimage.ubuntu.com/focal/daily-live/current/focal-desktop-amd64.iso.zsync 

#################### 100.0% 1503.2 kBps DONE

reading seed file /root/focal-desktop-amd64.iso: ***************************
****************************************************************************
*************Read /root/focal-desktop-amd64.iso. Target 100.0% complete.
verifying download...checksum matches OK
used 2827042816 local, fetched 0 

Conclusion

In this tutorial, you have learned multiple options to download Ubuntu 20.04 LTS Focal Fossa ISO images.

The post Download Ubuntu 20.04 LTS – DVD ISO Images appeared first on TecAdmin.

]]>
https://tecadmin.net/download-ubuntu-20-04-lts-dvd-iso-images/feed/ 0
Download Manjaro 17 – DVD ISO Images https://tecadmin.net/download-manjaro-linux/ https://tecadmin.net/download-manjaro-linux/#respond Fri, 01 Sep 2017 08:27:51 +0000 https://tecadmin.net/?p=13531 Manjaro is a beautiful, user-friendly Linux distribution. It provides all the benefits of the Arch operating system. Manjaro is mainly developed in Austria, France, and Germany. Download Manjaro Use the below download links to Manjaro ISO images from its official download page. You may also visit Manjaro Linux download page to check for latest available [...]

The post Download Manjaro 17 – DVD ISO Images appeared first on TecAdmin.

]]>
Manjaro is a beautiful, user-friendly Linux distribution. It provides all the benefits of the Arch operating system. Manjaro is mainly developed in Austria, France, and Germany.

Download Manjaro

Use the below download links to Manjaro ISO images from its official download page. You may also visit Manjaro Linux download page to check for latest available version.

The post Download Manjaro 17 – DVD ISO Images appeared first on TecAdmin.

]]>
https://tecadmin.net/download-manjaro-linux/feed/ 0
Fedora 23 Released! Whats New ? https://tecadmin.net/fedora-23-released-whats-new/ https://tecadmin.net/fedora-23-released-whats-new/#respond Wed, 04 Nov 2015 02:49:41 +0000 https://tecadmin.net/?p=8668 Fedora 23 final has been released on Nov 3, 2015 and available for download. The release was delayed by a week. Fedora 23 has lots of changes, improvements and security fixes. This article will give you details about few major changes in this release. Steps to Upgrade to Fedora 23 Changes in Fedora 23 Releasing [...]

The post Fedora 23 Released! Whats New ? appeared first on TecAdmin.

]]>
Fedora 23 final has been released on Nov 3, 2015 and available for download. The release was delayed by a week. Fedora 23 has lots of changes, improvements and security fixes. This article will give you details about few major changes in this release.

Steps to Upgrade to Fedora 23

Changes in Fedora 23

  • Releasing with Linux Kernel 4.2
  • Update the Mono stack in Fedora from 2.10 to 4.*
  • Disable SSL3 and RC4 cipher by default.
  • Perl version 5.22.
  • Python 3 as the Default Implementation .
  • Changed location of the SELinux policy store.
  • Unicode 8.0 support.
  • Fedup is being redesigned and integrated into DNF.

Download Fedora 23 Editions

Fedora is now more focused and available to download in 3 variants. Visit the following links to download Fedora 23 variants as per your choice.

1. Work Station Edition This is useful for desktop and laptop users. It is build with complete set to tools for developers.

Fedora 23 Workstation – Download

2. Server Edition Fedora servers are fully loaded with data-center technologies. These are best suitable for your servers.

Fedora 23 Server – Download

3. Cloud Edition It provides the minimal operating system with essential tools only. It is designed keeping mind for cloud servers.

Fedora 23 Cloud – Download

The post Fedora 23 Released! Whats New ? appeared first on TecAdmin.

]]>
https://tecadmin.net/fedora-23-released-whats-new/feed/ 0
How to Download Files with cURL (5 Examples) https://tecadmin.net/curl-files-download-examples/ https://tecadmin.net/curl-files-download-examples/#respond Thu, 01 Oct 2015 09:56:47 +0000 https://tecadmin.net/?p=8666 cURL is an open source command line tool and library for transferring data from remote systems. cURL support wide range of protocols like FILE, FTP, FTPS,HTTP, HTTPS, SCP, SFTP and many more. This article will help you to how to download remote files using cURL command line. 1. Download Single File Use following command to [...]

The post How to Download Files with cURL (5 Examples) appeared first on TecAdmin.

]]>
cURL is an open source command line tool and library for transferring data from remote systems. cURL support wide range of protocols like FILE, FTP, FTPS,HTTP, HTTPS, SCP, SFTP and many more. This article will help you to how to download remote files using cURL command line.

1. Download Single File

Use following command to download a single file from remote server using HTTP protocol. The following example will download latest.tar.gz from remote server and save in current directory with same name.

curl -O http://wordpress.org/latest.tar.gz


% Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100   178  100   178    0    0    239      0 --:--:-- --:--:-- --:--:--   239

2. Download File and Save with Other Name

Use following command to download a single file from remote server and save at specified location with specified name on local disk. The following example will download latest.tar.gz from remote server and save in /tmp/ directory with name wp.tar.gz.

curl -o /tmp/wp.tar.gz  http://wordpress.org/latest.tar.gz


% Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100   178  100   178    0    0    212      0 --:--:-- --:--:-- --:--:--   212

3. Download Multiple Files

Use following command to download files from multiple files from multiple remote servers using HTTP protocol. The following example will download latest.tar.gz and latest.zip from remote servers and save in current directory with same names.

curl -O http://wordpress.org/latest.tar.gz -O http://wordpress.org/latest.zip


% Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100   178  100   178    0    0    202      0 --:--:-- --:--:-- --:--:--   202
100   178  100   178    0    0    387      0 --:--:-- --:--:-- --:--:--   387

4. Download File with Authentication

If remote files are behind authentication and required username and password to download files. Use following examples to download files.

Download files from ftp server with ftp login credentials

curl -u ftpuser:ftppasswd -O ftp://ftp.example.com/file.zip

Download files from http server with http login credentials.

curl -u username:password -O http://wordpress.org/latest.tar.gz

5. Download Files Behind Proxy Server

If your connection required proxy server to download remote files. Use following examples to download files through proxy server. Use -x following by proxy_server:port .

curl -x 192.168.0.100:3128 -L -O  http://wordpress.org/latest.tar.gz 


% Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100   178  100   178    0    0    435      0 --:--:-- --:--:-- --:--:--   435
100 6373k  100 6373k    0    0   116k      0  0:00:54  0:00:54 --:--:--  102k

The post How to Download Files with cURL (5 Examples) appeared first on TecAdmin.

]]>
https://tecadmin.net/curl-files-download-examples/feed/ 0
5 Curl Commands to download Files https://tecadmin.net/5-curl-commands-to-download-files/ https://tecadmin.net/5-curl-commands-to-download-files/#comments Mon, 16 Feb 2015 03:57:50 +0000 https://tecadmin.net/?p=7362 Curl command file utility supports for downloading and uploading files. Curl is useful for many works with system administration, web development for calling web services, etc. In this tutorial, we are providing 5 frequently used curl commands to download files from remote servers. 1. Simple curl command to download file To download a file using [...]

The post 5 Curl Commands to download Files appeared first on TecAdmin.

]]>
Curl command file utility supports for downloading and uploading files. Curl is useful for many works with system administration, web development for calling web services, etc. In this tutorial, we are providing 5 frequently used curl commands to download files from remote servers.

1. Simple curl command to download file

To download a file using curl use the following syntax. -O is used for saving files on the local system with the same name on the remote system.

curl -O http://example.com/download/myfile.zip 

2. Curl download file and save with different name

You can also save the downloaded file with a different name on the local machine. Use -o followed by the new file name to download and save files with a different name.

curl -o localname.zip http://example.com/download/myfile.zip 

3. Curl to Download Multiple Files

Curl also provides an option to download multiple files simultaneously. To download multiple files at once using the following syntax. All files will be saved with original file names.

curl -O http://example.com/myfile.zip -O http://example.com/myfile2.zip 

4. Use Login Credential with Curl Download

Some of the remote resources required authentication to download any file. Curl also allows you to provide authentication details to authorize requests. You can pass login credentials using -u option for HTTP for FTP requests, like:

curl -u user:password -O http://example.com/myfile.zip 
curl -u ftpuser:ftppassword -O ftp://ftp.example.com/myfile.zip 

5. Curl download file via proxy

If the server file is only available through a proxy server, or you want to use a proxy for downloading files, Use -x followed by a proxy address and port to download the file via a proxy server.

curl -x "my.proxy.com:3128" -O http://example.net/myfile.zip 

Conclusion

Curl is a useful utility to create GET, POST, HEADER, and many other requests to remote servers. Even it is helpful for downloading remote files quickly like wget. This tutorial 5 examples of the curl commands for downloading files from a remote server.

The post 5 Curl Commands to download Files appeared first on TecAdmin.

]]>
https://tecadmin.net/5-curl-commands-to-download-files/feed/ 5