What is the difference x / x Hurd and Minix?

Knowing that both are micronuclei, what is the difference between b / w Mach (which Hurd is based on) and Minix. Are there any architectural differences? A little light above β€œthan L4” will be very helpful. I can not find any documents covering this.

+6
source share
1 answer

GNU Mach is an implementation of Mach microkernel. This is the default microkernel in the GNU Hurd operating system.

MINIX is a Unix-like computer operating system based on the microkernel architecture created by Andrew S. Tanenbaum for educational purposes.

I think your question is incorrect. What is the difference between Linux and FreeBSD? Each of these operating systems implemented its own system calls, application interfaces, etc.

L4 is a second-generation microkernel family commonly used to implement Unix-like operating systems, but also used in many other systems. L4, like its predecessor L3, was created by German computer scientist Jochen Lidtke in response to the poor performance of early microkernel-based operating systems.

Read some links below:

0
source

All Articles