2009/4/25 jasonmh <wineforum-user@xxxxxxxxxx> > I'm still not sure how I did it, but I managed to use the link > http://wiki.winehq.org/GitWine for the latest development version, and > even installed git (blind man navigating New York City streets). So now all > I have to do is > Code: > git fetch ; git rebase origin > > to stay up to date. My question is how do I run programs with it? When I > do the normal > Code: > wine setup.exe > > for example, it says that I don't have Wine installed. > > The reason I'm trying to do this is because the Wine in the repository > won't even install Warhammer or EQ2 (for example), and the steps to install > Wine manually get about as far as uncompressing the thing to my computer. > lol I sure wish I knew what voodoo your clever Linux users were using to get > this program to work right. I had thought I understood computers pretty well > until I installed Jaunty Jackalope and tried using Wine [Embarassed] > [Shocked] > > > > > > I can't say that I understand what you did in 100% but... whenever you get source code of wine (or any other app) you MUST compile it first (build your app). For wine follow this steps: 1.sudo apt-get build-dep wine (that should get all dependencies required to build wine) 2.sudo apt-get install checkinstall (this tool will allow you to build .deb package of wine after compilation) 3.(in wine source dir) ./configure && make depend && make OR if your CPU have many cores: ./configure && make depend -jX && make -jX where X is numeber of cores your CPU has After (hopefully, successful) compilation just type: sudo checkinstall and follow instructions there - it should install wine at the end - if it won't just install it by hand: sudo dpkg -i wine_<something>.deb Now you are all set, just type wine appname.exe to start something ;] -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://www.winehq.org/pipermail/wine-users/attachments/20090425/8f7cb93b/attachment.htm>