ASIL
ASIL

Reputation: 11

How to download files from url to the server via ssh

My internet is slow relatively, So I need to download ubuntu server iso to my server directly via ssh connection.
My server based on VMware ESXi.

How can I do it?

Upvotes: 1

Views: 3548

Answers (1)

Jakuje
Jakuje

Reputation: 25966

  1. Connect to the server as usually:

    ssh your_server
    
  2. Download the ISO to the server using wget from direct url (install wget if not installed yet):

    wget https://releases.ubuntu.com/16.04.1/ubuntu-16.04.1-server-amd64.iso
    

    or just using http:

    wget http://releases.ubuntu.com/16.04.1/ubuntu-16.04.1-server-amd64.iso
    

Upvotes: 1

Related Questions