Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Lotus Domino for Linux - case insensitive problem

Status
Not open for further replies.

grar

Technical User
Aug 12, 2004
19
0
0
PL
Hi all,
I hope that anybody could help. I am planning migration of my Lotus Domino server from MS Windows to Linux. I am using ext3 filesystems on my Linux server
The server is used as an intranet server. The problem is that the filenames of databases, links etc. are both in capital and lower cases and sometimes links have different letters than filenames.
The question is:
- is it possible to configure HTTP service of Lotus Domino server to become case insensitive?
- is it possible to reconfigure ext3 filesystem to become case insensitive?
If both are true, which is better?

many thanks
 
I had a similar issue:

I renamed all the files from Uppercase to lowercase:

in a console:

for n in *; do mv $n `echo $n | tr '[:upper:]' '[:lower:]'`; done
 
Hi ssk1279,
thanks for your answer, but what have you done with the links in the Notes databases?

I found solution for the problem. IBM has developed filesystem called jfs. During formating the device there is an option for providing case insensitive

regards,

Chris
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top