Linux – Case-Insensitive Filesystem Options

case-insensitivefilesystemslinuxmono

What methods are there to make the Linux filesystem case-INSENSITIVE ?

I have asp.net applications developed on Windows, but there are always issues with capitalization/spelling on mono when putting it on Linux.

One way is to mount a localhost SMB share to /var/www.
Are there any others ?

Best Answer

If you're talking about case insensitivity ONLY within apps running under Mono, you can use the IOMAP environment variable to tell mono to ignore case just like Windows does.

See the details on its use here: http://www.mono-project.com/IOMap

Related Topic