3

hashcheck checks for matches of many common hash codes. (See http://code.kliu.org/hashcheck/)

Is there an alternative for this software for Windows on Ubuntu?

Volker Siegel
  • 13,065
  • 5
  • 49
  • 65
Unknown
  • 333
  • 2
    @bodhi.zazen I don't see how this isn't a question.. He wants an alternative for some Windows software. – Seth May 30 '14 at 00:11

2 Answers2

4

Most sum checking utilities are already included in Linux as command line programs - a few can be listed by running ls $(echo $PATH | sed -e s/:/' '/g) | grep sum (which searches the directories of executables to find filenames containing sum) :

sum
cksum
md5sum
md5sum-lite
sha1sum
sha224sum
sha256sum
sha384sum
sha512sum
shasum
sum

So you can get the md5 sum by running:

md5sum /PATH/TO/FILE(S)

and the sha1 sum by running:

sha1sum /PATH/TO/FILE(S)

For other commands (although these usually use a similar syntax), you can search for their usage & options online or by using manual or help commands:

man cksum
cksum --help

MD4: I do not think has been used or included much outside of Windows for a few years due security concerns, although the rhash package appears to support it.

If you want a GUI, as this suggests, you can use this:

enter image description here

or other similar packages like gtkhash, which look like they can integrate into Ubuntu's file managers. Otherwise, you may be able to run it under Wine

Serge Stroobandt
  • 5,268
  • 1
  • 48
  • 59
Wilf
  • 30,194
  • 17
  • 108
  • 164
0

GtkHash

$ sudo apt install gtkhash

GtkHash

Serge Stroobandt
  • 5,268
  • 1
  • 48
  • 59