Wednesday, May 1, 2013

instaling photoshop cs6


Hello,

I've been trying to install CS6 on Ubuntu 10.04 using wine 1.5 (apparently wine 1.5 is only available for more recent os).
I ended up adding odbc32.dll and odbcint.dll using dll- fixer http://www.dll-files.com/dllindex/dll-files.shtml?odbcint  to correct the glitches

#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

# Configure wine install prefix and architecture
export WINEPREFIX=$PREFIX
export WINEARCH=win32
#
# Install dll files
winetricks atmlib
# Message from previous gdiplus install tryout:
# Please download NDP1.0sp2-KB830348-X86-Enu.exe from download.cnet.com/NET-Framework-1-0-GDIPLUS-DLL-Security-Update/3000-10250_4-10732223.html and place it in $HOME/.cache/winetricks/gdiplus, then re-run this script.
cp $DIRECTORY/CS6/DLL\ FILE/NDP1.0sp2-KB830348-X86-Enu.exe $HOME/.cache/winetricks/gdiplus/.
winetricks gdiplus
winetricks msxml3
winetricks msxml6
winetricks dotnet20
# dotnet20 install completed, but installed file $PREFIX/dosdevices/c:/windows/Microsoft.NET/Framework/v2.0.50727/mscorlib.dll not found
cp $DIRECTORY/CS6/DLL\ FILE/mscorlib.dll $PREFIX/dosdevices/c:/windows/Microsoft.NET/Framework/v2.0.50727/.
winetricks vcrun2005sp1
winetricks vcrun2008
# vcrun2008 install completed, but installed file $PREFIX/dosdevices/c:/Program Files/Common Files/Microsoft Shared/VC/msdia90.dll not found
cp $DIRECTORY/CS6/DLL\ FILE/msdia90.dll $PREFIX/dosdevices/c:/Program Files/Common Files/Microsoft Shared/VC/.
winetricks vcrun2010 


open setup. exe using wine

No comments:

Post a Comment