Binaries are usually installed in a bin directory. Look in /usr/bin and /usr/local/bin. Maybe they're in /opt, or in another subdirectory of /usr. Try using the find command to locate one of the binaries. Once you've found out where they are, make sure they're listed on your path.
From a terminal, run commands like:
Code:
ls /usr/local/bin/wine
Or try find:
Code:
cd /usr
find -name wine
To check your path:
If the directory containing your binary isn't listed in your path, you can't run it with a normal run command.