I am trying to build a virtual machine running Ubuntu 13.04 on a server running 12.04. I don't have any GUI. How can I download the iso file to 12.04 server using wget? I want to download the 13.04 server edition 64-bit.
Asked
Active
Viewed 3.6k times
2 Answers
9
You can find the links to all the images for Raring on this page.
To download 13.04 64-bit Server Edition, run the following command:
wget http://releases.ubuntu.com/raring/ubuntu-13.04-server-amd64.iso
You may further refer the manpage for the wget
command

Aditya
- 13,416
3
Here you go:
32bit wget http://releases.ubuntu.com/raring/ubuntu-13.04-server-i386.iso
64bit wget http://releases.ubuntu.com/raring/ubuntu-13.04-server-amd64.iso

mikewhatever
- 32,638
ubuntu-12.04-server-amd64.iso
is no longer available on that server. However, the link for all the images is standardized. You may access that link for any distribution usingreleases.ubuntu.com/<distribution adjective>
. Eg: http://releases.ubuntu.com/precise. – Aditya Jun 07 '13 at 15:50