Just downloaded ubuntu 17.04. Instructions suggest verifying iso before burning. Only verification link is for 16.??.
Asked
Active
Viewed 235 times
1 Answers
2
Please use this link to verify your download:
http://releases.ubuntu.com/17.04/
Steps to check the md5sum of iso
file:
Copy the md5sums for your particular download and place into a file say
check.md5
:echo "18cc54af55d7ca931bbb8588e8d9c1bd *ubuntu-17.04-desktop-amd64.iso" > check.md5
Put that file (
check.md5
) in the same folder as the downloadediso
file.Check it with:
md5sum -c check.md5

George Udosen
- 36,677
checksum
ormd5sums
? – George Udosen Sep 09 '17 at 00:47md5sum
(without saving to a file) according to this command line,echo "18cc54af55d7ca931bbb8588e8d9c1bd *ubuntu-17.04-desktop-amd64.iso"|md5sum -c
– sudodus Sep 09 '17 at 05:48