case sensitivity in linux

Booting, installing, newbie
Post Reply
Message
Author
mistfire
Posts: 1411
Joined: Wed 05 Nov 2008, 00:35
Location: PH

case sensitivity in linux

#1 Post by mistfire »

Does the Linux kernel is case sensitive in nature? If yes, is it possible to disable the case sensitivity?

User avatar
puppyluvr
Posts: 3470
Joined: Sun 06 Jan 2008, 23:14
Location: Chickasha Oklahoma
Contact:

#2 Post by puppyluvr »

:D Hello,
Yes, Linux is case sensitive in nature..
No, I dont believe you can alter that behavior...

Why is this an issue for you??
Close the Windows, and open your eyes, to a whole new world
I am Lead Dog of the
Puppy Linux Users Group on Facebook
Join us!

Puppy since 2.15CE...

User avatar
Karl Godt
Posts: 4199
Joined: Sun 20 Jun 2010, 13:52
Location: Kiel,Germany

#3 Post by Karl Godt »

for /bin/bash you could have an internet lookup for " man bash "

the file /etc/inputrc i have altered much for testing purposes and on one installation

set match-hidden-files on
set show-all-if-ambiguous on
set completion-ignore-case on

seems not only to work for the rxvt-terminal bash but also for ash and||or bash at bootup .
ie i made a directory /etc/init.d/ALSA and chmod -x it but at boot not only /etc/init.d/alsa gets a run now but also this /etc/init.d/ALSA , where several backups of the alsafiles reside(all not executable either) .

I have made so many adjustments to /etc/inputrc , that it is slightly messed up , so i don't exactly know , which one of the three mentioned " set " would have done it alone or if it would need some more " set " .

it might also be due to the installation of some other libs long time ago .

[ edit ] i have also installed a self compiled bash-3.2 on this full installation also long time ago [/ edit ]
[ edit 2 ] altered the bang from #!/bin/sh to #!/bin/ash in /etc/rc.d/services and /etc/init.d/ALSA does not get run anymore ; so it has something to do with bash [/ edit 2 ]

User avatar
L18L
Posts: 3479
Joined: Sat 19 Jun 2010, 18:56
Location: www.eussenheim.de/

case sensitivity in linux

#4 Post by L18L »

Karl Godt wrote:...the file /etc/inputrc i have altered much for testing purposes and on one installation

set match-hidden-files on
set show-all-if-ambiguous on
set completion-ignore-case on
...
I have appended these 3 lines to /etc/inputrc and now my apps starter is a little bit more perfect.

Example: which tools are there for file?

Code: Select all

# Fil
file        filefrag    filemnt     filterdiff  
- Case insensivity is very useful for this.
- Pressed TAB key once only instead of twice before without those lines.

Thanks for sharing this, Karl.


edit

my app starter:

Code: Select all

rxvt -title "Type in initial letters of your app and the press TAB key"  -e ash
:wink:

Post Reply