I've been trying to create a bootable USB drive with Mate 24.04 so I can update 3 laptops. The first time I used Torrent to download the iso file. It took 2 hours. I dragged and dropped the iso file into Terminal and used the sha256sum command. It worked but the checksums didn't match.
I deleted that file and directly downloaded the file into documents using my browser. I again entered the sha256sum command, dragged and dropped the iso file located in the document folder into terminal. I keep getting 'NO such file or directory.'
Since the Terminal command no longer works I'm thinking about creating a bootable USB drive and try installing it. What are the chances of the iso file being corrupted during a direct download from this website?
cd Downloads
-rw-rw-r-- 1 user user 4196413440 Aug 3 08:56 ubuntu-mate-24.04-desktop-amd64.iso
sha256sum ubu*
matches
eae78e56c306ba30e5d59cbcbb48e54bef6e9263e8481f3f0f3a883054083f24 *ubuntu-mate-24.04-desktop-amd64.iso
You've mentioned that you "directly downloaded the [ ISO ] file into documents", so I'm assuming you can find the ISO file in ~/Documents which is the "Documents" folder of your user. So, I suggest that you check that by entering the following command:
ls -l ~/Documents/ubuntu-mate-24.04-desktop-amd64.iso
If you do find that file by entering the above command, then you can run the sha256sum command (to get the SHA256 file checksum), which should be the following command:
Thanks for taking time to post a possible solution. I moved the iso file to my download folder in case that was creating an issue. Terminal still can't find it.
ls: cannot access '/home/jim/Downloads/ubuntu-mate-24.04-desktop-amd64.iso': No such file or directory
Thanks for the reply, @linuxis4me Let's try something slightly different. Please run the following command (the command should be entered in one single line, even if it appears to be "split" in two lines in this message) and reply again with the output / result :
sudo find / -type f -iname 'ubuntu-mate-*.iso' -exec ls -lh {} \; -exec sha256sum {} \;