Install Photoshop on Ubuntu 14.04
This article is based on http://ajwebdesigner.in/blog/install-photoshop-cs6-on-linux-ubuntu-13-04/ and I made adjustment and notes based on my own experience.
I already use Ubuntu 14.10
What is needed:
1. Internet Connection with huge internet quota (we are gonna need <1gb 1-3gb="" but="" div="" prepare="" quota="" to="">
1gb>
2. Install bit torrent client from Ubuntu Software Center. I use Transmission BitTorrent Client.
What you need to know:
1. All command done in Command Line/Console/Terminal. Press CTRL+ALT+T to open it
2. One line of command begins with ~$ thecommand sign
3. Please copy-paste thecommand only, without ~$ sign
4. Do it sequentially
5. Do it on your own risk
LET'S BEGIN
Install Wine
1. Add specific repository for wine
~$ sudo add-apt-repository ppa:ubuntu-wine/ppa
2. Update your software database
~$ sudo apt-get update
3. Install wine
~$ sudo apt-get install wine1.5
Change wine prefix
If we use default wine prefix, then wine will set it's prefix based on the Operating System architecture.
For example, if we use Ubuntu 64bit, then default wine prefix is 64bit.
Once we set wine prefix to an architecture, to 32bit for example, then all installed application on wine should be 32bit.
You cannot install 64bit application on 32bit wine prefix, or vise versa. The installation may runs well, but you will find lots and lots bugs when you runs the application latter on.
For example, if we use Ubuntu 64bit, then default wine prefix is 64bit.
Once we set wine prefix to an architecture, to 32bit for example, then all installed application on wine should be 32bit.
You cannot install 64bit application on 32bit wine prefix, or vise versa. The installation may runs well, but you will find lots and lots bugs when you runs the application latter on.
1. Delete default wine prefix at /home
~$ rm -rf .wine
2. Set wine prefix to your photoshop architecture (I use 32bit)
~$ WINEARCH=win32 WINEPREFIX=~/.wine winecfg
Install Dependencies Photoshop
Many library needs by photoshop you should install. and winetricks will need to install to complete these option.
3 steps to use winetricks
1. Download winetricks
~$ wget http://kegel.com/wine/winetricks
2. runs winetricks to install libraries
~$ sh winetricks -q atmlib gdiplus ie6 vcrun2005sp1 vcrun2008 fontsmooth-rgb corefonts msxml3 msxml6 vcrun2010
3. Repeat no 2 above until you see:
Executing w_do_call vcrun2010
vcrun2010 already installed, skipping
Copy Windows DLL
Use browser and file manager to do these 2 command
1. Download dll from http://www.mediafire.com/?2zix528zkye5vky
2. Extract, Copy-paste odbc32.dll AND odbcint.dll to .wine/drive_c/windows/system32/ on your home directory
Install Photoshop
Finally, Installing Photoshop. For those who has the CD you can simply right click on setup.exe and choose Open with wine windows loader, then do the install process like you did on windows.
or, download it via torrent at https://kickass.to/adobe-photoshop-cs6-13-1-2-extended-repack-p2p-t7744263.html
Run winetricks once more to make sure windows fonts are loaded.
~$ winetricks fontsmooth-rgb
To run Photoshop, you can use desktop shortcut or through Terminal
~$ wine '/home/namakamu/.wine/drive_c/Program Files/Adobe/Adobe Photoshop CS6/Photoshop.exe'
1gb>
Comments