Problem scenario
You are administering Linux SUSE machines. You want to see if Hadoop is installed on them. The command hadoop version does not work.
Solution
Run this command:
sudo find / -name hadoop -type f
From the results above, you can probably find the file and path of the executable. It will likely not be in /var/ or /tmp/.
…