Skip to content

Instantly share code, notes, and snippets.

@phackwer
Last active November 17, 2015 02:51
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save phackwer/3c41ee74b6c72244d9bd to your computer and use it in GitHub Desktop.
Save phackwer/3c41ee74b6c72244d9bd to your computer and use it in GitHub Desktop.
Adobe CS6 em Case Sensitive FileSystem - MacOS
Installing Adobe CS6 on case-sensitive drives (Mac OS X)¶
20 May 2013
Well, everybody knows that Adobe are a shitty company. Their products are the defacto standard for image/video editing and designing, but their codebase really suck. No excuses.
The problem addressed here is that Creative Studio™ refuses to install on a case-sensitive drives on Mac OS X. And it doesn’t just refuse to install on a case-sensitive drive, but it also requires to install on your boot drive as well! Srsly?
Well, there’s a solution. I’ve just stumbled upon this, and I’m really anxious to share it. I’ve forked the code to update it for CS6.
Prerequisites¶
Xcode. You can install it from the AppStore.
Command Line Tools for Xcode. You can install it from Xcode’s Preferences -> Downloads.
A step-by-step installation instructions¶
Create a .sparsebundle pseudo-image to install CS6:
mkdir -p ~/Stuff/Adobe
cd ~/Stuff/Adobe
hdiutil create -size 15g -type SPARSEBUNDLE -nospotlight -volname 'Adobe CS6 SparseBundle' -fs 'Journaled HFS+' ~/Stuff/Adobe/Adobe_CS6_SparseBundle.sparsebundle
Mount the newly created image and create a /Adobe directory inside
open ~/Stuff/Adobe/Adobe_CS6_SparseBundle.sparsebundle
mkdir -p /Volumes/Adobe\ CS6\ SparseBundle/Adobe
Create an extra /Applications/Adobe folder on the boot drive (we will trick the installer with this temporary directory)
mkdir -p /Applications/Adobe
Get the hack, compile it, and run it
OK, at this point you'll need to edit the Makefile and set the CS6_INSTALLER_PATH variable to point to the Install.app directory
The current one tries to find it automatically, but it may fail...
cd ~/Stuff/Adobe
git clone git://github.com/tzvetkoff/adobe_case_sensitive_volumes.git
cd adobe_case_sensitive_volumes
make
sudo make run
When asked, select /Applications/Adobe for installation directory rather than just /Applications, but don't click the Install button!!
Remember, don't click the Install button just yet
Now, time to do one more hack - remove the /Applications/Adobe directory and replace it with a symlink to the /Adobe directory from the SparseBundle.
rm -rf /Applications/Adobe
ln -s /Volumes/Adobe\ CS6\ SparseBundle/Adobe/ /Applications/Adobe
Now click the Install button
You can now safely delete the intermediate files and probably move the SparseBundle somewhere easier to mount by just clicking it (the Desktop, probably?)
mv ~/Stuff/Adobe/Adobe_CS6_SparseBundle.sparsebundle ~/Desktop/Adobe_CS6_SparseBundle.sparsebundle
rm -rf ~/Stuff/Adobe
That's it!
Just remember that you’ll need to mount the SparseBundle every time you need to use Adobe’s products…
Update @ 2014-04-01¶
You can also run the updater (Adobe Application Manager), with a slightly different command:
sudo make run CS6_INSTALLER_PATH='"/Applications/Utilities/Adobe Application Manager/core/Adobe Application Manager.app/Contents/MacOS/PDApp"'
Note the double quoting!
Thanks¶
lokkju, for writing that awesome article and code to start from
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment