We have an application that was build on a windows platform that expects
a case insensitive file system.
Is there a way to set one up in CentOS?
NTFS should work, I think, but I feel uneasy using that under Linux.
Russ
_______________________________________________
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos
04-30-2008, 12:08 AM
Kevin Krieser
case insensitive file system
FAT32 may work too if you don't need large files.
I just tried NTFS-3G on a thumbdrive, and I was able to create a file
that differed only by case from another. Then something got corrupted.
On Apr 29, 2008, at 6:50 PM, Ruslan Sivak wrote:
We have an application that was build on a windows platform that
expects a case insensitive file system. Is there a way to set one up
in CentOS? NTFS should work, I think, but I feel uneasy using that
under Linux.
Russ
_______________________________________________
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos
_______________________________________________
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos
04-30-2008, 12:38 AM
John R Pierce
case insensitive file system
Ruslan Sivak wrote:
We have an application that was build on a windows platform that
expects a case insensitive file system. Is there a way to set one up
in CentOS? NTFS should work, I think, but I feel uneasy using that
under Linux.
NTFS is not whats case insensitive, its WINDOWS thats case insensitive.
you'll need to fix that application to either use all monocase names or
to be self-consistent enough to run properly on a case sensitive system.
_______________________________________________
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos
04-30-2008, 02:07 PM
Ruslan Sivak
case insensitive file system
John R Pierce wrote:
Ruslan Sivak wrote:
We have an application that was build on a windows platform that
expects a case insensitive file system. Is there a way to set one up
in CentOS? NTFS should work, I think, but I feel uneasy using that
under Linux.
NTFS is not whats case insensitive, its WINDOWS thats case insensitive.
you'll need to fix that application to either use all monocase names
or to be self-consistent enough to run properly on a case sensitive
system.
I will look into fixing the application, but it may not be possible.
There must be a filesystem that I can use. Mac's have HFS+ which can be
case insensitive. Aren't Macs pretty much Linux? Isn't there a similar
filesystem availalbe for linux? I wouldn't run the whole system on it,
just the portion that hosts the app.
Russ
_______________________________________________
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos
04-30-2008, 02:10 PM
"Jim Perrin"
case insensitive file system
On Wed, Apr 30, 2008 at 10:07 AM, Ruslan Sivak <russ@vshift.com> wrote:
Does the entire filesystem need to be case insensitive, or is this a
web based product, where you can do some apache rewrite-fu to make
this work instead?
--
During times of universal deceit, telling the truth becomes a revolutionary act.
George Orwell
_______________________________________________
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos
04-30-2008, 02:29 PM
Ruslan Sivak
case insensitive file system
Jim Perrin wrote:
On Wed, Apr 30, 2008 at 10:07 AM, Ruslan Sivak <russ@vshift.com> wrote:
Does the entire filesystem need to be case insensitive, or is this a
web based product, where you can do some apache rewrite-fu to make
this work instead?
It is a web based product, but I'm not sure rewriterules would help.
Lets say it's something like this
http://www.domain.com/index.php?action=foo
And inside index.php it does something like
<? include($_GET['page'].".php") ?>
This is a gross simplification, but it's my understanding that if the
file was named 'foo.php' and someone typed in
http://www.domain.com/index.php?action=Foo
It would still work on windows, but not on linux because of case
sensitivity.
Russ
_______________________________________________
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos
04-30-2008, 02:37 PM
"Ross S. W. Walker"
case insensitive file system
Ruslan Sivak wrote:
> Jim Perrin wrote:
> > On Wed, Apr 30, 2008 at 10:07 AM, Ruslan Sivak <russ@vshift.com> wrote:
> > Does the entire filesystem need to be case insensitive, or is this a
> > web based product, where you can do some apache rewrite-fu to make
> > this work instead?
>
> It is a web based product, but I'm not sure rewriterules would help.
> Lets say it's something like this
>
> http://www.domain.com/index.php?action=foo
>
> And inside index.php it does something like
>
> <? include($_GET['page'].".php") ?>
>
> This is a gross simplification, but it's my understanding that if the
> file was named 'foo.php' and someone typed in
>
> http://www.domain.com/index.php?action=Foo
>
> It would still work on windows, but not on linux because of case
> sensitivity.
Is this a php based app then?
You could look at storing your files in mysql which could be made
to be case insensitive and then you could full text index them
quicker and easier as well as preserve this functionality across
platforms.
-Ross
__________________________________________________ ____________________
This e-mail, and any attachments thereto, is intended only for use by
the addressee(s) named herein and may contain legally privileged
and/or confidential information. If you are not the intended recipient
of this e-mail, you are hereby notified that any dissemination,
distribution or copying of this e-mail, and any attachments thereto,
is strictly prohibited. If you have received this e-mail in error,
please immediately notify the sender and permanently delete the
original and any copy or printout thereof.
_______________________________________________
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos
04-30-2008, 02:37 PM
Toby Bluhm
case insensitive file system
Ruslan Sivak wrote:
John R Pierce wrote:
Ruslan Sivak wrote:
We have an application that was build on a windows platform that
expects a case insensitive file system. Is there a way to set one up
in CentOS? NTFS should work, I think, but I feel uneasy using that
under Linux.
NTFS is not whats case insensitive, its WINDOWS thats case insensitive.
you'll need to fix that application to either use all monocase names
or to be self-consistent enough to run properly on a case sensitive
system.
I will look into fixing the application, but it may not be possible.
There must be a filesystem that I can use. Mac's have HFS+ which can
be case insensitive. Aren't Macs pretty much Linux? Isn't there a
similar filesystem availalbe for linux? I wouldn't run the whole
system on it, just the portion that hosts the app.
http://www.brain-dump.org/projects/ciopfs/
--
Toby Bluhm
Alltech Medical Systems America, Inc.
30825 Aurora Road Suite 100
Solon Ohio 44139
440-424-2240
_______________________________________________
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos
04-30-2008, 02:41 PM
"Steven R. Ringwald"
case insensitive file system
On Wednesday 30 April 2008 07:29:25 am Ruslan Sivak wrote:
> Jim Perrin wrote:
> > On Wed, Apr 30, 2008 at 10:07 AM, Ruslan Sivak <russ@vshift.com> wrote:
> > Does the entire filesystem need to be case insensitive, or is this a
> > web based product, where you can do some apache rewrite-fu to make
> > this work instead?
>
> It is a web based product, but I'm not sure rewriterules would help.
> Lets say it's something like this
>
> http://www.domain.com/index.php?action=foo
>
> And inside index.php it does something like
>
> <? include($_GET['page'].".php") ?>
>
> This is a gross simplification, but it's my understanding that if the
> file was named 'foo.php' and someone typed in
>
> http://www.domain.com/index.php?action=Foo
>
> It would still work on windows, but not on linux because of case
> sensitivity.
there is always strtolower and strtoupper, since you are using PHP.
Steve
_______________________________________________
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos
04-30-2008, 02:49 PM
Ruslan Sivak
case insensitive file system
Steven R. Ringwald wrote:
On Wednesday 30 April 2008 07:29:25 am Ruslan Sivak wrote:
Jim Perrin wrote:
On Wed, Apr 30, 2008 at 10:07 AM, Ruslan Sivak <russ@vshift.com> wrote:
Does the entire filesystem need to be case insensitive, or is this a
web based product, where you can do some apache rewrite-fu to make
this work instead?
It is a web based product, but I'm not sure rewriterules would help.
Lets say it's something like this
http://www.domain.com/index.php?action=foo
And inside index.php it does something like
<? include($_GET['page'].".php") ?>
This is a gross simplification, but it's my understanding that if the
file was named 'foo.php' and someone typed in
http://www.domain.com/index.php?action=Foo
It would still work on windows, but not on linux because of case
sensitivity.
there is always strtolower and strtoupper, since you are using PHP.
Steve
I'm not using PHP, this was just an example. I am considering using
something like strtolower, but then I would have to have all the
included files in lowercase, and I believe they are in camelcase now.
Russ
_______________________________________________
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos