0
votes
What’s the deal with all the different UIDs a process can have?
In addition to the real, effective, and saved UIDs, Unix systems with auditing enabled also have the audit UID. A process's AUID identifies the user who started the process; it is not changed by s …
1
vote
How does the ‘ls’ command work in Linux/Unix?
If you really want to understand the detailed innards of ls, look at the source code. You can follow tpgould's link to the Solaris source, or it's easy to find the source online from any Linux or …
0
votes
How to overcome an incompatibility between the ksh on Linux vs. that installed on AIX/Solaris/HPUX?
The reason for the differences is whether the inside block is executed in the original shell context or in a subshell. You may be able to control this with the () and {} grouping commands. Using …
0
votes
Maximum number of inodes in a directory?
As noted by Rob Adams, ls is sorting the files before displaying them. Note that if you are using NFS, the NFS server will be sorting the directory before sending it, and 2 million entries may wel …
0
votes
Most performant *nix system
I'd say UNICOS, but it's not so hot for network performance.
Seriously, how much of a performance difference do you think you'll see between different *nix versions on the same hardware? L …
