How can I see what version of Linux I'm running?

0

What's the Linux command that outputs the OS version? Like Winver.exe on Windows.

Luke Puplett

Posted 2013-11-27T19:15:50.693

Reputation: 981

Question was closed 2013-11-27T19:18:54.933

What do you mean by "Linux version"? The kernel version? Your distribution name? (Also, did you notice the duplicate question? Should have been shown to you right after entering your question title…) – slhck – 2013-11-27T19:18:47.137

I googled, I googled the superuser.com domain, I searched on superuser.com, I asked the question and reviewed the suggested questions. I just tried again and it suggests this question (obviously) but not that one. I tried!! :) – Luke Puplett – 2013-11-27T19:24:32.763

Interesting :) Well I hope you did find your answer there. – slhck – 2013-11-27T19:27:12.037

To get the Red Hat version type: cat /etc/redhat-release

To get the SuSE version: cat /etc/SuSE-release

To get the Kernel version (and sometimes the distributer) type: cat /proc/version

The boot loader sometimes has what you're looking for: cat /etc/grub.conf – pcunite – 2013-11-28T14:46:13.167

No answers