checking md5sums for 10.04.2

Asked by Geoff Angle

I am trying to check the md5sums on the recent download of 10.04.2 desktop-i386. I was following the guidelines listed as such :

MD5SUM on Linux

Most Linux distributions come with the md5sum utility so installation is usually unnecessary. We are going to use the Ubuntu 8.10 LiveCD for the following example:

Check the iso file

Manual method

First open a terminal and go to the correct directory to check a downloaded iso file:

      cd download_directory

Then run the following command from within the download directory.

      md5sum ubuntu-8.10-desktop-i386.iso

md5sum should then print out a single line after calculating the hash:

      24ea1163ea6c9f5dae77de8c49ee7c03 ubuntu-8.10-desktop-i386.iso

Compare the hash (the alphanumeric string on left) that your machine calculated with the corresponding hash on the UbuntuHashes page.

I cannot seem to find the directory. I find the file in down loads, click properties, and it says /home/nicole/downloads. I tried that and it doesn't work. any suggestions?

Question information

Language:
English Edit question
Status:
Solved
For:
Ubuntu ubiquity Edit question
Assignee:
No assignee Edit question
Solved by:
Sam_
Solved:
Last query:
Last reply:
Revision history for this message
Peter Jordan (austinjames) said :
#1

I have had the identical problem to Geoff, tried all the things he did with the same result. See my own question on launchpad. Pete Jordan.

Revision history for this message
Best Sam_ (and-sam) said :
#2

Open a terminal: ctrl+alt+t
Type:
cd /home/nicole/Downloads
## Hit [Enter] key
Next type:
md5sum ubuntu-8.10-desktop-i386.iso

Above .iso is just an example, if you attempt to install 10.4 and saved the .iso to Downloads folder it's probably:
md5sum ubuntu-10.04.02-desktop-i386.iso

Revision history for this message
Sam_ (and-sam) said :
#3

After cd to Downloads folder, you can also list the content with:
ls

Revision history for this message
Geoff Angle (ravenbrimstone) said :
#4

Thanks Sam_, that solved my question.