#Install Photoshop CS6 on Ubuntu
I had posted this article back in 2014 on ajwebdesigner.in blog, but re-writting it again since I have closed that website. Or you can read my old AskUbuntu Answer .
You can install Photoshop CS6 on Ubuntu using WINE1.5 or above. I followed this guide and Im using Photoshop CS6 on my ubuntu 13.04
Enter the following commands into a terminal (press Ctrl + Alt + T)
###wine setup
sudo add-apt-repository ppa:ubuntu-wine/ppa
sudo apt-get update
sudo apt-get install wine1.5
###change wine prefix
rm -rf .wine
WINEARCH=win32 WINEPREFIX=~/.wine winecfg
###get winetricks script
wget http://kegel.com/wine/winetricks
###setup dependencies
sh winetricks -q atmlib gdiplus ie6 vcrun2005sp1 vcrun2008 fontsmooth-rgb corefonts msxml3 msxml6 vcrun2010
###copy dll’s from windows ####Download DLL here : http://www.mediafire.com/?2zix528zkye5vky
cp ~/odbc32.dll ~/.wine/drive_c/windows/system32/
cp ~/odbcint.dll ~/.wine/drive_c/windows/system32/
##photoshop setup ####You can download Photoshop CS6 here
wine Setup.exe
##fontsmooth setup
winetricks fontsmooth-rgb
##run photoshop
wine '/home/ajinkya/.wine/drive_c/Program Files/Adobe/Adobe Photoshop CS6/Photoshop.exe'