Reputation: 11
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
Reputation: 25966
Connect to the server as usually:
ssh your_server
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