0

I installed Wine-1.5 with these commands in the terminal >>

    sudo add-apt-repository ppa:ubuntu-wine/ppa
    sudo apt-get update
    sudo apt-get install wine1.5

After it downloaded some files, it got installed and I closed the terminal...but what the problem is that > I cannot find the Wine icon for the application anywhere. I went to 'Ubuntu Software Center' and looked through installed files and it wasn't there :/?. So I've decided to download it via 'Ubuntu Software Center' but can anyone tell me how to delete the files it downloaded using terminal cause it turns out to be a waste of space for my PC.

Bruno Pereira
  • 73,643

1 Answers1

1

You could see whole listing of files wine1.5 installed as that (from command line):

dpkg -L wine1.5 | less

Or if you need just where is executable:

which wine

If you need to see it's attributes too:

ls -la `which wine`
Jjed
  • 13,874
wk.
  • 600
  • Wine-1.5 removed successfully. Later on I re-installed it but this time using 'Ubuntu Software Center' and it WORKED!! :D Thanks for the help guys :) – Mohd Arafat Hossain May 03 '12 at 06:09