3

I am very fascinated with the professional help here on AskUbuntu. And I need your help again. I installed Ubuntu just two days ago and spent all this time setting it up. Now the question is about the Photoshop.

I followed this: https://askubuntu.com/a/530127/491656

sudo add-apt-repository ppa:ubuntu-wine/ppa

sudo apt-get update && sudo apt-get upgrade

sudo apt-get install wine1.7 winetricks

Everything was fine, but after the last one I got:

winetricks atmlib gdiplus msxml3 msxml6 vcrun2005 vcrun2005sp1 vcrun2008 ie6 fontsmooth-rgb gecko

I installed the Photoshop, but...I decided to delete all these and Photoshop, because I don't wont to use it in Linux. It feels like I miss Windows, but I don't. I'm looking forward to delete all files and dependencies installed so nothing left in Ubuntu. Could you please, help me to clarify what should I write in terminal?

I have Ubuntu 14.04 LTS 64b

2 Answers2

4

Before following CiberSheep instructions, you can delete Photoshop with the Wine Uninstaller. Run, in a terminal:

wine uninstaller

Find Photoshop and remove it.

After doing what CiberSheep said, run sudo apt-get autoremove to remove dependencies.

Eduardo Cola
  • 5,817
  • 2
    Easier to rm -rf ~/.wine – Panther Jan 11 '16 at 19:04
  • Okay. Thank you @Eduardo Cola for your response. So, I've done what you said, but it seems Photoshop uninstaller doesn't respond. It's frozen and doesn't respond... – user491656 Jan 11 '16 at 19:06
  • Then find Photoshop's installation directory and remove it maually. If you installed it in Wine's "C:" drive run, in a terminal, nautilus $HOME/.wine/drive_c and look for it there. – Eduardo Cola Jan 11 '16 at 19:09
  • @bodhi.zazen he might have installed Photoshop in a place other than Wine's C: drive. I always do it with my Windows games. – Eduardo Cola Jan 11 '16 at 19:10
  • Okay, friends. So, I successfully uninstalled Photoshop and run , but the answer is <Package 'wine' is not installed, so not removed>. What should I do? – user491656 Jan 11 '16 at 19:13
  • First, I must tell you you didn't install the Wine version present in the official repository, you installed from third party PPA. Run sudo apt-get remove --purge wine1.7 instead. – Eduardo Cola Jan 11 '16 at 19:15
  • Okay. Thank you for your patience! I I've done 'sudo apt-get remove --purge wine1.7' and 'sudo apt-get autoremove'. Thank you. But in the Menu I still have Winetricks. How whould I delete it? – user491656 Jan 11 '16 at 19:20
  • By the way, buddy, I suggest you to understand the Linux command line a bit further before messing around with it. There are a few commands that can break your system down, and there are always graphical alternative ways of doing everything, remember that. I myself already broke many Linux installations until I learned. – Eduardo Cola Jan 11 '16 at 19:21
  • Winetricks is not a Wine dependency, so it's not removed as Wine's orphan. Just run sudo apt-get remove --purge winetricks; sudo apt-get autoremove – Eduardo Cola Jan 11 '16 at 19:22
  • Thank you. Thank you. Thank you. We did it. And thank you for your suggestion to learn Linux before using command line. I really do understand this and will follow your advice. – user491656 Jan 11 '16 at 19:26
  • @EduardoCola - I would assume the OP installed to ~/.wine or if not s/he knows the name of the location. – Panther Jan 11 '16 at 20:21
0

You can type this in the terminal.

sudo apt-get purge wine

That would be enough to uninstall and purge it. But it is important that you understand what you are doing ;) so at the beginning take some time to look for the commands you are going to type in the terminal.

You can take a look here.

CiberSheep
  • 76
  • 1
  • 7