Try running wine with full path to the executable; the above means it's trying to find fifa2008.exe in the Windows system directory, which is probably the default if you don't provide a path. Wine's files are usually stored in a .wine directory under your home directory (~/.wine/) where there should be drive_c directory and so on. So try something like this (note: if there is a space in a dir/filename, you need to use \ to escape it, or wrap the path into quotes):
Code:
wine ~/.wine/drive_c/Program\ files/Games/fifa2008.exe
The actual directory depends on where you installed it, so modify the above command to your needs. Try
Code:
ls ~/.wine/drive_c/Program\ files
to see where the fifa2008 might be, or use
find or
locate to find the file:
Code:
find ~/.wine -type f -name fifa2008.exe
or (use updatedb to make sure the (s)locate database is recent enough)
Code:
sudo updatedb
locate fifa2008.exe