What is the difference/relation between kernel name and OS name? Are they always the same thing?
For example, I am puzzled at the outputs:
-bash-4.1$ uname -s Linux -bash-4.1$ uname -o GNU/Linux What is difference between "GNU/Linux" and "Linux"?
If you take a look at the uname Wikipedia page titled: Uname there's a very nice table that shows the output of uname with all of its switches for just about every Unix I've ever heard of.
excerpt of table
If you look at the output it would imply that -s shows the name of the kernel, while -o shows the name of the operating system.
unamequestions? 8-)