What's the Linux command that outputs the OS version? Like Winver.exe on Windows.
Asked
Active
Viewed 45 times
What's the Linux command that outputs the OS version? Like Winver.exe on Windows.
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 Nov 28 '13 at 14:46