Mac - Convert from Case-Sensitive to Case-Insensitive File System
Rise to the top 3% as a developer or hire one of them at Toptal: https://topt.al/25cXVn
--------------------------------------------------
Music by Eric Matyas
https://www.soundimage.org
Track title: Secret Catacombs
--
Chapters
00:00 Mac - Convert From Case-Sensitive To Case-Insensitive File System
01:10 Accepted Answer Score 13
01:54 Answer 2 Score 10
02:11 Answer 3 Score 4
03:05 Answer 4 Score 3
03:33 Answer 5 Score 0
04:23 Thank you
--
Full question
https://superuser.com/questions/380330/m...
--
Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...
--
Tags
#macos #filesystems #osxlion #timemachine #casesensitivity
#avk47
ACCEPTED ANSWER
Score 13
It looks like you can restore from time machine to a case-insensitive file system from a case-sensitive one. See Apple Forums here.
I would highly recommend that you perform a total system backup using Carbon Copy Cloner.
Carbon Copy Cloner does support restoring to a case-insensitive system from a case-sensitive one - see this.
In fact, I would recommend CCC over TM, but you should use what you feel comfortable with. I would also boot to the CCC image and make sure all my stuff was there before I wiped my internal drive and did the restore. CCC makes a bootable back up (which is another reason it's awesome).
ANSWER 2
Score 10
I haven't used it, but iPartition claims to be able to do nondestructive conversion between case-sensitive and case-insensitive HFS+.
ANSWER 3
Score 4
Supposing the program you're using is just insisting on having a case-insensitive FS while your data is on a case-sensitive FS, you can sometimes get away with just mirroring the directory structure over to the case-insensitive FS, and use symbolic links for the files. This way you avoid duplicating potentially large or numerous files.
The "lndir" command from the X11 distribution for OSX does just that (in Mountain Lion this is in Xquartz, which you can get from http://xquartz.macosforge.org/landing/).
For instance, consider you want to clone Foo.app (which resides in a case-sensitive FS) to a case-insensitive FS, which we assume here to be the root filesystem, you might do something like:
$ cd $FOO_APP_BASE_DIR # Foo.app's parent directory
$ lndir $PWD/Foo.app /Applications/Foo.app # clone it into /Applications
You may now open /Applications/Foo.app and it won't complain about case-sensitivity.
ANSWER 4
Score 3
Maybe there's no need to reformat your case sensitive fs to run apps that require a case sensitive fs;
You can create a case insensitive disk image in the disk utility (i use a sparse bundle), then drag the application in that disk image and run it.
That allowed me to run Photoshop. I usually use a sparse bundle; There was a reason I wanted a case sensitive host fs.
ANSWER 5
Score 0
Solution Can't install Photoshop on case-sensitive hard drive?
- 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.