Balancing RAM when using multiple CPUs

The HP ProLiant DL360 G7 server (and other Nehalem-and-newer CPU systems) have a set of memory DIMM population guidelines. Can you share what’s currently populated and what your final RAM amount/goal is? This is documented primarily in the Quickspecs for the system, but I’ll try to give some specific guidelines. HP also has an interactive … Read more

Getting CPU information from command line in Mac OS X [server]

Lots of people have already mentioned system_profiler, so I’ll just list some other commands I’d recommend for “looking around” a Mac OS X system: top -u -s5 My favorite command for seeing what’s going on. Shows processes sorted by CPU usage, updated every 5 seconds (I find the default of 1 second to be too … Read more

x86, i386, i686, amd64, i5, i7, archtecture, processor confusion [closed]

The term architecture covers a lot more than just the processor. There is a lot of other hardware components that are crucial to an OS kernel. The first example that comes to my mind is the interrupt controller, which is separate from the processor, but depending on actual model may be put inside the same … Read more

Proper way of interpreting system load on a 4 core 8 thread processor

Not surely, but mostly on 1.00*n_cpu. The load means the following: if there are multiple processes on a single-cpu system, they are running seemingly parallel. But it is not true. What practically happens: the kernel gives 1/100th second to a process, and then breaks its running with an interrupt. And gives the next 1/100th second … Read more