Creating a filesystem on a file in linux for software development purposes
Posted
by David
on Server Fault
See other posts from Server Fault
or by David
Published on 2010-04-12T21:14:13Z
Indexed on
2010/04/12
21:23 UTC
Read the original article
Hit count: 373
linux
|filesystems
This question originally start at Superuser.com
http://superuser.com/questions/130032/available-filesystems-for-linux-that-are-case-insensitive
Summary: My client has a PHP web application that was written and is served from a Windows environments. Unfortunately the past developer didn't obey naming conventions so file includes are of the form "/file/At/SomethingHere.php" when on disk the path is actually "/File/at/Somethinghere.php". I do not want to use Windows for development but the filesystems I use (ext2, ext3 ) are case sensitive.
I think the solution will be to create a filesystem like FAT 32 or similar, but I am somewhat clueless how to accomplish that. Starting to read up on DD and fdisk to figure out if those are the correct tools I will need.
© Server Fault or respective owner