Install Adobe CS5 on Mac with case-sensitive Filesystem
Adobe CS5 installation fails saying it can't be installed on a case-sensitive partition. I have read the brain-damaged System Requirements where it clearly states "cannot install on a volume that uses a case-sensitive file system".
Is there a way to circumvent this limitation and install it on my mac case-sensitive partition?
Thanx!
(PS: "Just format your partition to be case insensitive" Answers are a NO NO)
macos installation adobe-photoshop
add a comment |
Adobe CS5 installation fails saying it can't be installed on a case-sensitive partition. I have read the brain-damaged System Requirements where it clearly states "cannot install on a volume that uses a case-sensitive file system".
Is there a way to circumvent this limitation and install it on my mac case-sensitive partition?
Thanx!
(PS: "Just format your partition to be case insensitive" Answers are a NO NO)
macos installation adobe-photoshop
3
You just can't. Adobe software is, in my opinion, one of the primary reasons to not go case-sensitive. It has been like this for years, starting out as an unofficial requirement you had to know about. That they document it is a big step forward, actually.
– Daniel Beck♦
Feb 19 '11 at 20:47
hey! this came from CS3?? OMG....
– Mauricio
Feb 19 '11 at 21:04
Might a virtual machine be an option, either for your development, or Photoshop? Of course it's probably a Windows or Linux VM.
– Daniel Beck♦
Feb 20 '11 at 7:42
add a comment |
Adobe CS5 installation fails saying it can't be installed on a case-sensitive partition. I have read the brain-damaged System Requirements where it clearly states "cannot install on a volume that uses a case-sensitive file system".
Is there a way to circumvent this limitation and install it on my mac case-sensitive partition?
Thanx!
(PS: "Just format your partition to be case insensitive" Answers are a NO NO)
macos installation adobe-photoshop
Adobe CS5 installation fails saying it can't be installed on a case-sensitive partition. I have read the brain-damaged System Requirements where it clearly states "cannot install on a volume that uses a case-sensitive file system".
Is there a way to circumvent this limitation and install it on my mac case-sensitive partition?
Thanx!
(PS: "Just format your partition to be case insensitive" Answers are a NO NO)
macos installation adobe-photoshop
macos installation adobe-photoshop
edited Feb 19 '11 at 20:47
Daniel Beck♦
92.1k12232284
92.1k12232284
asked Feb 19 '11 at 20:43
Mauricio
150115
150115
3
You just can't. Adobe software is, in my opinion, one of the primary reasons to not go case-sensitive. It has been like this for years, starting out as an unofficial requirement you had to know about. That they document it is a big step forward, actually.
– Daniel Beck♦
Feb 19 '11 at 20:47
hey! this came from CS3?? OMG....
– Mauricio
Feb 19 '11 at 21:04
Might a virtual machine be an option, either for your development, or Photoshop? Of course it's probably a Windows or Linux VM.
– Daniel Beck♦
Feb 20 '11 at 7:42
add a comment |
3
You just can't. Adobe software is, in my opinion, one of the primary reasons to not go case-sensitive. It has been like this for years, starting out as an unofficial requirement you had to know about. That they document it is a big step forward, actually.
– Daniel Beck♦
Feb 19 '11 at 20:47
hey! this came from CS3?? OMG....
– Mauricio
Feb 19 '11 at 21:04
Might a virtual machine be an option, either for your development, or Photoshop? Of course it's probably a Windows or Linux VM.
– Daniel Beck♦
Feb 20 '11 at 7:42
3
3
You just can't. Adobe software is, in my opinion, one of the primary reasons to not go case-sensitive. It has been like this for years, starting out as an unofficial requirement you had to know about. That they document it is a big step forward, actually.
– Daniel Beck♦
Feb 19 '11 at 20:47
You just can't. Adobe software is, in my opinion, one of the primary reasons to not go case-sensitive. It has been like this for years, starting out as an unofficial requirement you had to know about. That they document it is a big step forward, actually.
– Daniel Beck♦
Feb 19 '11 at 20:47
hey! this came from CS3?? OMG....
– Mauricio
Feb 19 '11 at 21:04
hey! this came from CS3?? OMG....
– Mauricio
Feb 19 '11 at 21:04
Might a virtual machine be an option, either for your development, or Photoshop? Of course it's probably a Windows or Linux VM.
– Daniel Beck♦
Feb 20 '11 at 7:42
Might a virtual machine be an option, either for your development, or Photoshop? Of course it's probably a Windows or Linux VM.
– Daniel Beck♦
Feb 20 '11 at 7:42
add a comment |
5 Answers
5
active
oldest
votes
For Photoshop CS5 you can copy over an existing install on a case-sensitive filesystem and rename all the folders so they match. This method has been used with CS3 and CS4. I wrote a script for CS5 as well:
https://web.archive.org/web/20150519130030/https://gist.github.com/cypres/1368631
The same procedure seems to work for InDesign CS5 (although I only tested a few things), but Illustrator CS5 gives me trouble, it complains about localized files after the linked libs are corrected.
1
Can't believe that worked but it did. I'm on CS 5.1. It's en vogue to jump on Adobe so I won't, .... nevermind, I will -- When we pay +$500 for software, I would expect that some of that money could be used abate the laziness that roughly ~8 lines of code solved.
– jnunn
Aug 2 '12 at 17:04
the link is dead
– HMagdy
Sep 19 '18 at 10:07
add a comment |
You can try this, it works for me with photoshop CS6
https://bitbucket.org/lokkju/adobe_case_sensitive_volumes
- Make sure you have Xcode 4 installed
get the code:
hg clone ssh://hg@bitbucket.org/lokkju/adobe_case_sensitive_volumes
- go into the directory:
cd adobe_case_sensitive_volumes
- make the library:
make
- create a 20GB sparsebundle using Disk Utility, making sure it has a case-insensitive file system, and mount it.
- create a folder called "
Adobe" in your mounted sparsebundle
- create a folder called "
/Applications/Adobe"
- run the hack (you may have to modify the Makefile to point to the right installer path):
sudo make run
- When you get to the point it asks you to choose an installation directory, choose "
/Applications/Adobe"
Delete "
/Applications/Adobe", and a create a symlink from
"
<your sparsebundle>/Adobe" to "/Applications/Adobe"
- Now continue your installation as normal
- Make sure that your sparsebundle is mounted when you want to use Adobe, and just go into
/Application/Adobe, and choose what to run.
The only (insignificant) downside is that you have to mount the disk image prior to execute photoshop.
add a comment |
if you're willing to go through a bit of work, here is a project that will let you install from a case sensitive system to a non-case-sensitive sparsebundle. Essentially, it bypasses the installer checks, and then it installs into the disk image, and you run the apps from the disk image. It is written for Lion and CS5.5 - YMMV.
add a comment |
- Purchase and install iPartition ($70, but worth it if it's your only solution)
- In iPartition, do a Create Boot Disk
- Insert your installer disk to make a boot disk from it
- Insert blank DVD-R to create boot disk through iPartition
- Restart computer, with boot disk inserted and holding "C" key on keyboard until progress spinner thing shows at start-up
- iPartition should automatically load. Choose "Make Case Insensitive" from one of the drop-down menus
- Let it complete this process...
- Quit iPartition and allow computer to restart, now from your "Case Insensitive" hard drive
- Install Photoshop as normal
- Drink beer. Celebrate.
1
(PS: "Just format your partition to be case insensitive" Answers are a NO NO)
– Mauricio
Feb 10 '13 at 17:21
add a comment |
Another option is to get Carbon Copy Cloner. It's cheaper than iPartition.
- Backup everything with Carbon Copy Cloner (to another harddrive)
- Format the harddrive. Format it so that it is case insensitive
- Restore the data to the Formatted volume.
- Install Photoshop now
1
(PS: "Just format your partition to be case insensitive" Answers are a NO NO) being a unix developer a case insensitive is non sense for me.
– Mauricio
Feb 10 '13 at 17:21
It will fail, if you have existing case sensitive files on your machine, wich can't be written twice on case insensitive volumes. Only the other way will work.
– jokumer
May 1 '18 at 8:02
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f247920%2finstall-adobe-cs5-on-mac-with-case-sensitive-filesystem%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
5 Answers
5
active
oldest
votes
5 Answers
5
active
oldest
votes
active
oldest
votes
active
oldest
votes
For Photoshop CS5 you can copy over an existing install on a case-sensitive filesystem and rename all the folders so they match. This method has been used with CS3 and CS4. I wrote a script for CS5 as well:
https://web.archive.org/web/20150519130030/https://gist.github.com/cypres/1368631
The same procedure seems to work for InDesign CS5 (although I only tested a few things), but Illustrator CS5 gives me trouble, it complains about localized files after the linked libs are corrected.
1
Can't believe that worked but it did. I'm on CS 5.1. It's en vogue to jump on Adobe so I won't, .... nevermind, I will -- When we pay +$500 for software, I would expect that some of that money could be used abate the laziness that roughly ~8 lines of code solved.
– jnunn
Aug 2 '12 at 17:04
the link is dead
– HMagdy
Sep 19 '18 at 10:07
add a comment |
For Photoshop CS5 you can copy over an existing install on a case-sensitive filesystem and rename all the folders so they match. This method has been used with CS3 and CS4. I wrote a script for CS5 as well:
https://web.archive.org/web/20150519130030/https://gist.github.com/cypres/1368631
The same procedure seems to work for InDesign CS5 (although I only tested a few things), but Illustrator CS5 gives me trouble, it complains about localized files after the linked libs are corrected.
1
Can't believe that worked but it did. I'm on CS 5.1. It's en vogue to jump on Adobe so I won't, .... nevermind, I will -- When we pay +$500 for software, I would expect that some of that money could be used abate the laziness that roughly ~8 lines of code solved.
– jnunn
Aug 2 '12 at 17:04
the link is dead
– HMagdy
Sep 19 '18 at 10:07
add a comment |
For Photoshop CS5 you can copy over an existing install on a case-sensitive filesystem and rename all the folders so they match. This method has been used with CS3 and CS4. I wrote a script for CS5 as well:
https://web.archive.org/web/20150519130030/https://gist.github.com/cypres/1368631
The same procedure seems to work for InDesign CS5 (although I only tested a few things), but Illustrator CS5 gives me trouble, it complains about localized files after the linked libs are corrected.
For Photoshop CS5 you can copy over an existing install on a case-sensitive filesystem and rename all the folders so they match. This method has been used with CS3 and CS4. I wrote a script for CS5 as well:
https://web.archive.org/web/20150519130030/https://gist.github.com/cypres/1368631
The same procedure seems to work for InDesign CS5 (although I only tested a few things), but Illustrator CS5 gives me trouble, it complains about localized files after the linked libs are corrected.
edited Dec 13 '18 at 11:55
bertieb
5,547112342
5,547112342
answered Nov 16 '11 at 2:18
cypres
16612
16612
1
Can't believe that worked but it did. I'm on CS 5.1. It's en vogue to jump on Adobe so I won't, .... nevermind, I will -- When we pay +$500 for software, I would expect that some of that money could be used abate the laziness that roughly ~8 lines of code solved.
– jnunn
Aug 2 '12 at 17:04
the link is dead
– HMagdy
Sep 19 '18 at 10:07
add a comment |
1
Can't believe that worked but it did. I'm on CS 5.1. It's en vogue to jump on Adobe so I won't, .... nevermind, I will -- When we pay +$500 for software, I would expect that some of that money could be used abate the laziness that roughly ~8 lines of code solved.
– jnunn
Aug 2 '12 at 17:04
the link is dead
– HMagdy
Sep 19 '18 at 10:07
1
1
Can't believe that worked but it did. I'm on CS 5.1. It's en vogue to jump on Adobe so I won't, .... nevermind, I will -- When we pay +$500 for software, I would expect that some of that money could be used abate the laziness that roughly ~8 lines of code solved.
– jnunn
Aug 2 '12 at 17:04
Can't believe that worked but it did. I'm on CS 5.1. It's en vogue to jump on Adobe so I won't, .... nevermind, I will -- When we pay +$500 for software, I would expect that some of that money could be used abate the laziness that roughly ~8 lines of code solved.
– jnunn
Aug 2 '12 at 17:04
the link is dead
– HMagdy
Sep 19 '18 at 10:07
the link is dead
– HMagdy
Sep 19 '18 at 10:07
add a comment |
You can try this, it works for me with photoshop CS6
https://bitbucket.org/lokkju/adobe_case_sensitive_volumes
- Make sure you have Xcode 4 installed
get the code:
hg clone ssh://hg@bitbucket.org/lokkju/adobe_case_sensitive_volumes
- go into the directory:
cd adobe_case_sensitive_volumes
- make the library:
make
- create a 20GB sparsebundle using Disk Utility, making sure it has a case-insensitive file system, and mount it.
- create a folder called "
Adobe" in your mounted sparsebundle
- create a folder called "
/Applications/Adobe"
- run the hack (you may have to modify the Makefile to point to the right installer path):
sudo make run
- When you get to the point it asks you to choose an installation directory, choose "
/Applications/Adobe"
Delete "
/Applications/Adobe", and a create a symlink from
"
<your sparsebundle>/Adobe" to "/Applications/Adobe"
- Now continue your installation as normal
- Make sure that your sparsebundle is mounted when you want to use Adobe, and just go into
/Application/Adobe, and choose what to run.
The only (insignificant) downside is that you have to mount the disk image prior to execute photoshop.
add a comment |
You can try this, it works for me with photoshop CS6
https://bitbucket.org/lokkju/adobe_case_sensitive_volumes
- Make sure you have Xcode 4 installed
get the code:
hg clone ssh://hg@bitbucket.org/lokkju/adobe_case_sensitive_volumes
- go into the directory:
cd adobe_case_sensitive_volumes
- make the library:
make
- create a 20GB sparsebundle using Disk Utility, making sure it has a case-insensitive file system, and mount it.
- create a folder called "
Adobe" in your mounted sparsebundle
- create a folder called "
/Applications/Adobe"
- run the hack (you may have to modify the Makefile to point to the right installer path):
sudo make run
- When you get to the point it asks you to choose an installation directory, choose "
/Applications/Adobe"
Delete "
/Applications/Adobe", and a create a symlink from
"
<your sparsebundle>/Adobe" to "/Applications/Adobe"
- Now continue your installation as normal
- Make sure that your sparsebundle is mounted when you want to use Adobe, and just go into
/Application/Adobe, and choose what to run.
The only (insignificant) downside is that you have to mount the disk image prior to execute photoshop.
add a comment |
You can try this, it works for me with photoshop CS6
https://bitbucket.org/lokkju/adobe_case_sensitive_volumes
- Make sure you have Xcode 4 installed
get the code:
hg clone ssh://hg@bitbucket.org/lokkju/adobe_case_sensitive_volumes
- go into the directory:
cd adobe_case_sensitive_volumes
- make the library:
make
- create a 20GB sparsebundle using Disk Utility, making sure it has a case-insensitive file system, and mount it.
- create a folder called "
Adobe" in your mounted sparsebundle
- create a folder called "
/Applications/Adobe"
- run the hack (you may have to modify the Makefile to point to the right installer path):
sudo make run
- When you get to the point it asks you to choose an installation directory, choose "
/Applications/Adobe"
Delete "
/Applications/Adobe", and a create a symlink from
"
<your sparsebundle>/Adobe" to "/Applications/Adobe"
- Now continue your installation as normal
- Make sure that your sparsebundle is mounted when you want to use Adobe, and just go into
/Application/Adobe, and choose what to run.
The only (insignificant) downside is that you have to mount the disk image prior to execute photoshop.
You can try this, it works for me with photoshop CS6
https://bitbucket.org/lokkju/adobe_case_sensitive_volumes
- Make sure you have Xcode 4 installed
get the code:
hg clone ssh://hg@bitbucket.org/lokkju/adobe_case_sensitive_volumes
- go into the directory:
cd adobe_case_sensitive_volumes
- make the library:
make
- create a 20GB sparsebundle using Disk Utility, making sure it has a case-insensitive file system, and mount it.
- create a folder called "
Adobe" in your mounted sparsebundle
- create a folder called "
/Applications/Adobe"
- run the hack (you may have to modify the Makefile to point to the right installer path):
sudo make run
- When you get to the point it asks you to choose an installation directory, choose "
/Applications/Adobe"
Delete "
/Applications/Adobe", and a create a symlink from
"
<your sparsebundle>/Adobe" to "/Applications/Adobe"
- Now continue your installation as normal
- Make sure that your sparsebundle is mounted when you want to use Adobe, and just go into
/Application/Adobe, and choose what to run.
The only (insignificant) downside is that you have to mount the disk image prior to execute photoshop.
edited Nov 11 '18 at 20:57
meegle84
1035
1035
answered Oct 2 '12 at 22:41
Carles Bruguera
6111
6111
add a comment |
add a comment |
if you're willing to go through a bit of work, here is a project that will let you install from a case sensitive system to a non-case-sensitive sparsebundle. Essentially, it bypasses the installer checks, and then it installs into the disk image, and you run the apps from the disk image. It is written for Lion and CS5.5 - YMMV.
add a comment |
if you're willing to go through a bit of work, here is a project that will let you install from a case sensitive system to a non-case-sensitive sparsebundle. Essentially, it bypasses the installer checks, and then it installs into the disk image, and you run the apps from the disk image. It is written for Lion and CS5.5 - YMMV.
add a comment |
if you're willing to go through a bit of work, here is a project that will let you install from a case sensitive system to a non-case-sensitive sparsebundle. Essentially, it bypasses the installer checks, and then it installs into the disk image, and you run the apps from the disk image. It is written for Lion and CS5.5 - YMMV.
if you're willing to go through a bit of work, here is a project that will let you install from a case sensitive system to a non-case-sensitive sparsebundle. Essentially, it bypasses the installer checks, and then it installs into the disk image, and you run the apps from the disk image. It is written for Lion and CS5.5 - YMMV.
edited Dec 23 '13 at 2:31
Andrew Marshall
3571215
3571215
answered Dec 7 '11 at 17:40
Loki
1112
1112
add a comment |
add a comment |
- Purchase and install iPartition ($70, but worth it if it's your only solution)
- In iPartition, do a Create Boot Disk
- Insert your installer disk to make a boot disk from it
- Insert blank DVD-R to create boot disk through iPartition
- Restart computer, with boot disk inserted and holding "C" key on keyboard until progress spinner thing shows at start-up
- iPartition should automatically load. Choose "Make Case Insensitive" from one of the drop-down menus
- Let it complete this process...
- Quit iPartition and allow computer to restart, now from your "Case Insensitive" hard drive
- Install Photoshop as normal
- Drink beer. Celebrate.
1
(PS: "Just format your partition to be case insensitive" Answers are a NO NO)
– Mauricio
Feb 10 '13 at 17:21
add a comment |
- Purchase and install iPartition ($70, but worth it if it's your only solution)
- In iPartition, do a Create Boot Disk
- Insert your installer disk to make a boot disk from it
- Insert blank DVD-R to create boot disk through iPartition
- Restart computer, with boot disk inserted and holding "C" key on keyboard until progress spinner thing shows at start-up
- iPartition should automatically load. Choose "Make Case Insensitive" from one of the drop-down menus
- Let it complete this process...
- Quit iPartition and allow computer to restart, now from your "Case Insensitive" hard drive
- Install Photoshop as normal
- Drink beer. Celebrate.
1
(PS: "Just format your partition to be case insensitive" Answers are a NO NO)
– Mauricio
Feb 10 '13 at 17:21
add a comment |
- Purchase and install iPartition ($70, but worth it if it's your only solution)
- In iPartition, do a Create Boot Disk
- Insert your installer disk to make a boot disk from it
- Insert blank DVD-R to create boot disk through iPartition
- Restart computer, with boot disk inserted and holding "C" key on keyboard until progress spinner thing shows at start-up
- iPartition should automatically load. Choose "Make Case Insensitive" from one of the drop-down menus
- Let it complete this process...
- Quit iPartition and allow computer to restart, now from your "Case Insensitive" hard drive
- Install Photoshop as normal
- Drink beer. Celebrate.
- Purchase and install iPartition ($70, but worth it if it's your only solution)
- In iPartition, do a Create Boot Disk
- Insert your installer disk to make a boot disk from it
- Insert blank DVD-R to create boot disk through iPartition
- Restart computer, with boot disk inserted and holding "C" key on keyboard until progress spinner thing shows at start-up
- iPartition should automatically load. Choose "Make Case Insensitive" from one of the drop-down menus
- Let it complete this process...
- Quit iPartition and allow computer to restart, now from your "Case Insensitive" hard drive
- Install Photoshop as normal
- Drink beer. Celebrate.
answered Jan 18 '13 at 2:41
Colin Robinson
1
1
1
(PS: "Just format your partition to be case insensitive" Answers are a NO NO)
– Mauricio
Feb 10 '13 at 17:21
add a comment |
1
(PS: "Just format your partition to be case insensitive" Answers are a NO NO)
– Mauricio
Feb 10 '13 at 17:21
1
1
(PS: "Just format your partition to be case insensitive" Answers are a NO NO)
– Mauricio
Feb 10 '13 at 17:21
(PS: "Just format your partition to be case insensitive" Answers are a NO NO)
– Mauricio
Feb 10 '13 at 17:21
add a comment |
Another option is to get Carbon Copy Cloner. It's cheaper than iPartition.
- Backup everything with Carbon Copy Cloner (to another harddrive)
- Format the harddrive. Format it so that it is case insensitive
- Restore the data to the Formatted volume.
- Install Photoshop now
1
(PS: "Just format your partition to be case insensitive" Answers are a NO NO) being a unix developer a case insensitive is non sense for me.
– Mauricio
Feb 10 '13 at 17:21
It will fail, if you have existing case sensitive files on your machine, wich can't be written twice on case insensitive volumes. Only the other way will work.
– jokumer
May 1 '18 at 8:02
add a comment |
Another option is to get Carbon Copy Cloner. It's cheaper than iPartition.
- Backup everything with Carbon Copy Cloner (to another harddrive)
- Format the harddrive. Format it so that it is case insensitive
- Restore the data to the Formatted volume.
- Install Photoshop now
1
(PS: "Just format your partition to be case insensitive" Answers are a NO NO) being a unix developer a case insensitive is non sense for me.
– Mauricio
Feb 10 '13 at 17:21
It will fail, if you have existing case sensitive files on your machine, wich can't be written twice on case insensitive volumes. Only the other way will work.
– jokumer
May 1 '18 at 8:02
add a comment |
Another option is to get Carbon Copy Cloner. It's cheaper than iPartition.
- Backup everything with Carbon Copy Cloner (to another harddrive)
- Format the harddrive. Format it so that it is case insensitive
- Restore the data to the Formatted volume.
- Install Photoshop now
Another option is to get Carbon Copy Cloner. It's cheaper than iPartition.
- Backup everything with Carbon Copy Cloner (to another harddrive)
- Format the harddrive. Format it so that it is case insensitive
- Restore the data to the Formatted volume.
- Install Photoshop now
edited Feb 9 '13 at 22:03
slhck
159k47442465
159k47442465
answered Feb 9 '13 at 21:58
Shaw
1
1
1
(PS: "Just format your partition to be case insensitive" Answers are a NO NO) being a unix developer a case insensitive is non sense for me.
– Mauricio
Feb 10 '13 at 17:21
It will fail, if you have existing case sensitive files on your machine, wich can't be written twice on case insensitive volumes. Only the other way will work.
– jokumer
May 1 '18 at 8:02
add a comment |
1
(PS: "Just format your partition to be case insensitive" Answers are a NO NO) being a unix developer a case insensitive is non sense for me.
– Mauricio
Feb 10 '13 at 17:21
It will fail, if you have existing case sensitive files on your machine, wich can't be written twice on case insensitive volumes. Only the other way will work.
– jokumer
May 1 '18 at 8:02
1
1
(PS: "Just format your partition to be case insensitive" Answers are a NO NO) being a unix developer a case insensitive is non sense for me.
– Mauricio
Feb 10 '13 at 17:21
(PS: "Just format your partition to be case insensitive" Answers are a NO NO) being a unix developer a case insensitive is non sense for me.
– Mauricio
Feb 10 '13 at 17:21
It will fail, if you have existing case sensitive files on your machine, wich can't be written twice on case insensitive volumes. Only the other way will work.
– jokumer
May 1 '18 at 8:02
It will fail, if you have existing case sensitive files on your machine, wich can't be written twice on case insensitive volumes. Only the other way will work.
– jokumer
May 1 '18 at 8:02
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f247920%2finstall-adobe-cs5-on-mac-with-case-sensitive-filesystem%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
3
You just can't. Adobe software is, in my opinion, one of the primary reasons to not go case-sensitive. It has been like this for years, starting out as an unofficial requirement you had to know about. That they document it is a big step forward, actually.
– Daniel Beck♦
Feb 19 '11 at 20:47
hey! this came from CS3?? OMG....
– Mauricio
Feb 19 '11 at 21:04
Might a virtual machine be an option, either for your development, or Photoshop? Of course it's probably a Windows or Linux VM.
– Daniel Beck♦
Feb 20 '11 at 7:42