On Tue, Jan 22, 2008 at 08:33:25PM -0500, Theodore Tso wrote: > On Tue, Jan 22, 2008 at 04:38:37PM -0800, Linus Torvalds wrote: > > One thing I'd like somebody to check: what _does_ happen with OS X and NFS > > (OS X as a client, not server)? In particular: > > > > - Is it suddenly sane and case-sensitive? > > Using a Linux server, and a OS X client, over NFS, it is in > case-sensitive. This is not unexpected, since you can mount UFS > partitions on Mac OS X, or reformat HFS+ filesystems and make them be > case-sensitive. > > > - Does the NFS client do any unicode conversion? > > Nope: > > # perl -CO -e 'print pack("U",0x00C4)."\n"' | xargs touch > # ls -l | cat -v > total 0 > 0 -rw-r--r-- 1 nobody nobody 0 Jan 22 20:30 M-CM-^D > > It's pretty clear the Unicode conversion is being done in HFS+, not in > the VFS layer of Mac OS X. There must be something at the VFS layer, or some other layer: - IIRC, Joliet iso9660 volumes end up being mounted with files names in NFS when the real file names are NFC on the disk. - Likewise for Samba shares. - When I had my problems with iso9660 rockridge volumes using NFC (you can create that just fine with mkisofs), the volume is mounted without normalisation, i.e. if you get to a shell and want to access files, you must use NFC, but at least the Finder does transliteration at some stage, because going into the mount point and opening some files fail because it's trying to open the file with the name transliterated to NFD. I just hope the same doesn't happen with other filesystems. Also, OSX using NFD widely, a file created from non Unix applications may end up being named in NFD on any file system. File contents, too, may end up being transliterated whenever a file is modified with non Unix applications, introducing unwanted changes. Typing file names in the Terminal might also make them encoded in NFD, too. Mike - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html