Okay, but AIX quite notably deviates from that, in that it stores a lot of its system configuration in binary format, in a database, the Object Data Manager (ODM). In some ways, AIX's philosophy about storing system configuration is closer to the Windows Registry than to traditional Unix systems. Does that therefore mean that AIX deviates from "Unix design and architecture", and hence isn't a "real Unix"?
> Then look at the things that are only pretending to be a Unix, from NT to OpenVMS to z/OS, and there's a totally different shell or set of shells, there are drive indentifiers and maybe directories, maybe not, with who-knows-what as the delimiter.
So one of your arguments here seems to be, that if a system supports a non-POSIX path name syntax, it cannot be a "real Unix"? Or if its native path name syntax isn't POSIX path name syntax, it can't be a "real Unix"?
But, isn't it true that z/OS natively supports POSIX path name syntax? I mean, when you give z/OS a Unix path, if it is a path to a Unix file it never translates it to an MVS dataset name, because Unix files aren't datasets and don't directly belong to the MVS VTOC filesystem. Now, it is true that the Unix file is contained in a Unix filesystem (HFS or zFS), and that Unix filesystem is contained in a VSAM LDS dataset in the VTOC filesystem. But, if you compare that to z/Linux – a file is contained in a Unix filesystem (ext4 or whatever), and the Linux kernel supports storing that filesystem as a non-VSAM dataset in the VTOC filesystem – so z/OS and z/Linux actually behave pretty similarly here, at least when you use the Linux kernel's IBM VTOC support, the only actual difference is whether the filesystem dataset is VSAM LDS (DSORG=VS) or non-VSAM (DSORG=DA). Also, z/Linux can actually read (non-VSAM/PDSE) datasets in VTOC filesystems (using zdsfs from s390-tools), and for both z/OS and z/Linux, access to MVS datasets in VTOC filesystems is done using a hybrid between Unix and MVS naming syntax (although the details are somewhat different in each case). z/OS supports write too, but I don't see why that's a fundamental issue, given that other components of s390-tools (such as fdasd) have some degree of write support. z/OS and z/Linux are more alike than you seem to think.