How I can know that a Ubuntu ISO was created using a Live CD customization tool, e.g. remastersys? Or how I can know that a Ubuntu ISO was created or generated? Do Live CD customization tools leave things in generated ISO?
2 Answers
I'd suggest checking the SHA256 sum for the .iso you have vs the official ones.
Download the
SHA256SUMSfile from the respective release page here: http://releases.ubuntu.com/Ensure that the iso you want to verify matches the file name of the iso you believe it could be from (one of the filenames in
SHA256SUMS).Ensure that the downloaded
SHA256SUMSfile and the iso are in the same folder.Execute these commands in a terminal:
cd <PATH TO THE FOLDER> sha256sum -c ./SHA256SUMS | grep OK- If it prints the file name then
OK, it is an official iso otherwise it has been changed.
- 28,986
Unless you know what they changed to the installer you will not know. It is totally possible to create an installer with alterations you never ever going to notice.
If you want to be sure that you download an official unaltered version of Ubuntu you need to get the file from the official source. The would be from this location or this location (where the last one will change the last part of the URL when we change release).
If you want to know more about creating an ISO or want to know how to do it to understand it start here How to customize the Ubuntu Live CD? I used that topic to create a rather large answer creating a new ISO by doing it manually. There are more good answers in there worth reading.