On Sat, Mar 24, 2012 at 16:18, vitamin <wineforum-user@xxxxxxxxxx> wrote: > > Martin Gregorie wrote: >> To find where the program(s) got to, try: >> <code> >> sudo updatedb >> locate progname.exe >> </code> > > Why so complicated? Besides locate is not installed on most modern distros. Regular "find" will be enough: > > Code: > > find ~ -iname '*exe' find ~/.wine -iname '*exe' will typically be even quicker (or substitute ~/.wine with a wineprefix if you use multiple ones) Frédéric