I'm a newbie - just getting to grips with kubuntu... i just got wine using apt-get install wine ... it installed but now I don't know how to go about using it to load my windows software! Anybody help a noob?
Do I literally just run the install exe files ? If you want to edit some of wine's configuration options (optional step) run
winecfg
If you want to run Setup.exe and it is on your desktop, run
wine ~/Desktop/Setup.exe
Wine creates a directory called ".wine" (without quotes) in your home directory. The period at the beginning means this is a hidden directory. Inside this directory is another directory called "drive_c" which which is Wine's emulation of the C: drive in Windows.
So C:\Program Files\Mozilla Firefox\ would be located in ~/.wine/drive_c/Program Files/Mozilla Firefox
Once the program is installed, you run it like this (substituting this path with the correct one). The quotation marks are to keep the terminal from getting confused with the spaces in the path:
wine "~/.wine/drive_c/Program Files/MyApp/MyApp.exe"
Hopefully that little introduction helps. I'd love to see somebody with more expertise than myself write a more in-depth guide to setting up wine 0.9 in Breezy Badger. Perhaps this will appear soon in the Tips and Tricks section <hint><hint>. :)