Skip to content

Instantly share code, notes, and snippets.

@romuloctba
Last active August 1, 2023 12:03
Show Gist options
  • Star 25 You must be signed in to star a gist
  • Fork 5 You must be signed in to fork a gist
  • Save romuloctba/1201b373b00ea9516d5e to your computer and use it in GitHub Desktop.
Save romuloctba/1201b373b00ea9516d5e to your computer and use it in GitHub Desktop.
Install Adobe Photoshop CS6 on Wine (Ubuntu, Elementary OS, Linux Mint)

Step 1. Install the Wine Team Ubuntu PPA

First start by installing Wine btw it's a utility to install windows apps in linux :

open the Terminal and :

   sudo add-apt-repository ppa:ubuntu-wine/ppa     
   sudo apt-get update && sudo apt-get upgrade
   sudo apt-get install wine1.7 winetricks

É melhor instalar o winetricks pelo site ao invés de usar o PPA

Step 2. Using winetricks to get install dependencies for Photoshop CS6

Now that we have the most recent build of wine, we can get started on fetching the necessary build packages to run the Photoshop installer.

Here’s the command to issue and pull those dependencies

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

If a few errors pop-up, don’t worry – chances are this install will still work.

Step 3. Running the Photoshop CS6 installer

Now that you have all dependencies required to run Photoshop CS6, you can now run the Adobe setup. Either right click Setup.exe, or from the terminal:

   cd /home/user/path/to/installer    
   wine Set-up.exe

If everything worked as intended, you are now done. Photoshop should install like any other program via wine – It should even automatically appear in your programs list!

Originally available @ http://askubuntu.com/a/530127

@romuloctba
Copy link
Author

http://sejalivre.org/como-instalar-photoshop-no-ubuntu/

Instale o Adobe CS5 em sua máquina Windows primeiro. Precisamos copiar algumas entradas do Registro de lá para o Photoshop funcionar bem no Ubuntu. Após a instalação, execute o regedit e navegue até ” HKEY_LOCAL_MACHINE -> Software -> Adobe “

Botão direito do mouse sobre a pasta Adobe e selecione “Export” , nomeie este arquivo como “PS.reg” .

Vamos para o Ubuntu.

Instale o Wine e as fontes true-type da Microsoft com o comando abaixo.

sudo apt-get install wine ttf-mscorefonts-installer

Em seguida, execute o seguinte comando para criar as configurações do Wine.

winecfg
O PS é um aplicativo nativo para Windows e tem algumas dependências baseados em Windows. Para isso, precisamos usar o winetricks para instalar o Photoshop. Execute o seguinte comando:

wget http://www.kegel.com/wine/winetricks
sh winetricks msxml6 gdiplus gecko vcrun2005sp1 vcrun2008 msxml3 atmlib
Agora vem a parte cansativa. Como não podemos usar o instalador do PS no Ubuntu, vamos precisar copiar os arquivos necessários no Windows para o Ubuntu. Estes são os arquivos que você precisa copiar, onde eles devem estar e onde deverão ficar:

C:\Program Files\Adobe\ ----> $HOME/.wine/drive_c/Program Files/Adobe
C:\Program Files\Common Files\Adobe ----> $HOME/.wine/drive_c/Program Files/Common Files/Adobe
C:\Documents and Settings$USER\Application Data\Adobe ----> $HOME/.wine/drive_c/users/$USER/Applications Data/Adobe
C:\windows\system32\odbcint.dll ----> $HOME/.wine/drive_c/windows/system32/odbcint.dll

Uma vez feito isso, copie o seu “PS.reg” de sua máquina Windows para seu diretório home e execute o comando abaixo.

wine regedit adobe.reg

Para testá-lo, vá em ” /home -> .wine -> Program Files -> Adobe ->Adobe Photoshop CS5 “ e clique com o botão direito sobre o ‘photoshop.exe “e selecione” Abrir com Wine ”

O Photoshop CS5 deverá carregar. Você pode até criar um atalho e colocá-lo em seu desktop para facilitar o acesso.

@danielsayidi
Copy link

@albertobraschi
Copy link

acredito ser importante primeiro apagar a pasta do wine no diretorio home
~/.wine
depois baixar o winetricks
wget -c https://raw.githubusercontent.com/Winetricks/winetrick
chmod +x winetricks
./winetricks atmlib gdiplus msxml3 msxml6 vcrun2005 vcrun2005sp1

eu me bati um bom tempo usando o winetricks instado ao inves de baixar esse script atualizado!

@bobpaul
Copy link

bobpaul commented Dec 31, 2021

Some of the tricks are different now. I think you now want

winetricks gdiplus msxml3 msxml6 vcrun2005 vcrun2005sp1 vcrun2008 fontsmooth=rgb ie8 ie8_kb2936068

@Docmine17
Copy link

Docmine17 commented Mar 21, 2023

Captura de tela de 2023-03-21 10-24-47

Captura de tela de 2023-03-21 10-25-09

Em 2023 com o Wine 8.2 usando o Fedora Workstation 37 para instalar no modo de avaliação(Trial) do Ps CS6 com a Intenet desligada, só precisei deste comando:
winetricks msxml3 msxml6
*meu prefixo wine é de 32bit
In 2023 with Wine 8.2 using Fedora Workstation 37 to install in Trial mode of Ps CS6 with the Internet turned off, i only needed this command:
winetricks msxml3 msxml6

*my wine prefix is ​​32bit

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment