Where are the programs installed?

Open forum for end-user questions about Wine. Before asking questions, check out the Wiki as a first step.
Forum Rules
Locked
The_Loko
Newbie
Newbie
Posts: 4
Joined: Fri Mar 23, 2012 3:08 pm

Where are the programs installed?

Post by The_Loko »

This is my question. I want to install some mods to my games, but the program files folder in wine looks empty (only IE) Where are the game folders??
Thanks.
John Drescher

Where are the programs installed?

Post by John Drescher »

On Fri, Mar 23, 2012 at 4:15 PM, The_Loko <[email protected]> wrote:
This is my question. I want to install some mods to my games, but the program files folder in wine looks empty (only IE) Where are the game folders??
By default your wine virtual windows is at


$HOME/.wine

Turn on hidden files in your file manager to browse that.

John
Doug

Where are the programs installed?

Post by Doug »

On 03/23/2012 04:15 PM, The_Loko wrote:
This is my question. I want to install some mods to my games, but the program files folder in wine looks empty (only IE) Where are the game folders??
Thanks.

Use your "Find Files" program--it doesn't care if the game is designed
for Windows. For example, the results of finding Pinball:

file:///home/doug/.wine/drive_c/Program Files/Microsoft Games/Pinball

--doug
The_Loko
Newbie
Newbie
Posts: 4
Joined: Fri Mar 23, 2012 3:08 pm

Re: Where are the programs installed?

Post by The_Loko »

I know that, but my Program files folder in .wine is empty, only the default folders installed when I installed wine.
User avatar
dimesio
Moderator
Moderator
Posts: 13367
Joined: Tue Mar 25, 2008 10:30 pm

Re: Where are the programs installed?

Post by dimesio »

The_Loko wrote:I know that, but my Program files folder in .wine is empty, only the default folders installed when I installed wine.
How did you install your games? If it was with a third party script, it probably installed to a different wineprefix than the default.
Martin Gregorie

Where are the programs installed?

Post by Martin Gregorie »

On Sat, 2012-03-24 at 05:12 -0500, The_Loko wrote:
I know that, but my Program files folder in .wine is empty, only the default folders installed when I installed wine.
To find where the program(s) got to, try:
<code>
sudo updatedb
locate progname.exe
</code>

Martin
vitamin
Moderator
Moderator
Posts: 6605
Joined: Sat Feb 23, 2008 2:29 pm

Re: Where are the programs installed?

Post by vitamin »

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: Select all

find ~ -iname '*exe'
Martin Gregorie

Where are the programs installed?

Post by Martin Gregorie »

On Sat, 2012-03-24 at 10:18 -0500, vitamin wrote:
Martin Gregorie wrote:
To find where the program(s) got to, try:
<code>
sudo updatedb
locate progname.exe
</code>
Why so complicated?
What is so complex in typing two simple commands? I suggested running
updatedb because it is typically run as an overnight cron job and Murphy
says the OP will have tried the install since it was last run.
Besides locate is not installed on most modern distros.
Its been part of RedHat distros forever and is still part of it.
Regular "find" will be enough:
...and a *lot* slower that updatedb+locate

Martin
Frédéric Delanoy

Where are the programs installed?

Post by Frédéric Delanoy »

On Sat, Mar 24, 2012 at 16:18, vitamin <[email protected]> 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
The_Loko
Newbie
Newbie
Posts: 4
Joined: Fri Mar 23, 2012 3:08 pm

Re: Where are the programs installed?

Post by The_Loko »

dimesio wrote:
The_Loko wrote:I know that, but my Program files folder in .wine is empty, only the default folders installed when I installed wine.
How did you install your games? If it was with a third party script, it probably installed to a different wineprefix than the default.
I used playonlinux. So, this is the problem?
The_Loko
Newbie
Newbie
Posts: 4
Joined: Fri Mar 23, 2012 3:08 pm

Post by The_Loko »

Yes! The games are in the .PlayOnlinux Folder. Thanks xD
Frédéric Delanoy

Where are the programs installed?

Post by Frédéric Delanoy »

On Sun, Mar 25, 2012 at 13:09, The_Loko <[email protected]> wrote:
dimesio wrote:
The_Loko wrote:
I know that, but my Program files folder in .wine is empty, only the default folders installed when I installed wine.
How did you install your games? If it was with a third party script, it probably installed to a different wineprefix than the default.
I used playonlinux. So, this is the problem?
Third party applications are not supported here.
See http://wiki.winehq.org/FAQ#head-aeffd8e ... c926cb1235
Locked