-1

How or where will I find C:\Program Files(x86) in Ubuntu 13.04? I cannot find it. I need it as I have installed a game there and I need to uninstall it. I have already tried to post a similar question here but this was unclear. thanks

viera
  • 27
  • 1
    There is no C:\Program Files(x86) in Ubuntu. How did you install the game, and how did you install Ubuntu? – Mitch Oct 06 '13 at 18:20
  • thank you, I managed it finally, the wine was the key :). so there is this above mentioned file in ubuntu :) – viera Oct 06 '13 at 19:17

4 Answers4

2

For PlayOnLinux

cd /home/user/.PlayOnLinux

Then try to find destinations for Program Files folder

find . -type f -name "Program Files" 

There may be many such folders depending on count of programs you installed

1

I'm guessing you used Wine?

Look here ~/.wine/drive_c/ But I suggest using winecfg to uninstall.

  • i finally found it! thanks! but how is winecfg used? what should i do with this command? – viera Oct 06 '13 at 18:49
  • It's a Wine GUI with configuration options, but also an add/remove program option. I haven't used it in some time, so It may not work as I remembered. If you using Ubuntu with Unity. Tap the Windows key, then type wine, you will probably see several Wine programs: "Configure Wine", "Uninstall Wine Software", etc. Try "Uninstall Wine Software". – Kevin C. Smith Oct 06 '13 at 19:00
  • ohh, i have already done the uninstallation thanks to this http://askubuntu.com/questions/101064/uninstall-a-program-installed-with-wine. great! – viera Oct 06 '13 at 19:10
0

If you have Wine installed then Wine will appear on your Menu.

Click on it and you will see, on the right panel of the menu, Browse C: Drive.

Click on that to see what is there.

You should immediately see Program Files(x86)

Ronshere
  • 493
  • where is my Menu? – viera Oct 06 '13 at 18:51
  • Hi, the Menu is located in the lower left hand corner of your screen if yopu have a bottom panel. If you have a top panel it should be visible there. – Ronshere Oct 06 '13 at 19:09
  • It should be in the right corner, a symbol sort of like the sun – Ronshere Oct 06 '13 at 19:15
  • As Kevin C Smith mentioned you can use Winecfg to remove the program but you can also just go through all the folders and delete everything related to the game but Winecfg is best. – Ronshere Oct 06 '13 at 19:18
  • i was not able to use winecfg, but i followed the advice in http://askubuntu.com/questions/101064/uninstall-a-program-installed-with-wine and typed "wine uninstaller" into terminal, and it worked! so the game is already uninstalled. – viera Oct 06 '13 at 19:24
0

The Linux directory structure is different from Windows's one. There is no "Program Files" directory.

For more info about the Linux directory structure, I found this usefull link on the internet, which may help you: http://www.thegeekstuff.com/2010/09/linux-file-system-structure/

If the game you installed was a linux native game and you used a runnable file to install it (often .run/.bin, like most of the games from the Humble Bundle) they usually install themselves into the /opt directory.
If you used PlayOnLinux (or wine), you can find the wine "windows filesystem" in your home directory, inside the .wine directory ( ~/.wine/ ).

Instead, if you used the Ubuntu Software Center (or apt-get) to install the game, you can uninstall it by the USC or using

sudo apt-get remove GAMENAME

PeppeDAlterio
  • 5,722
  • 1
  • 16
  • 10