How to check the running kernel version

kernelsystem-informationversion

While troubleshooting a problem with my ethernet card, I've found that the driver I'm currently using may have some issues with old kernel versions. What command can I use to check the kernel version I am currently running ?

Best Answer

You can execute:

uname -r

It will display something like

3.13.0-62-generic

Found on https://askubuntu.com/questions/359574/how-do-i-find-out-the-kernel-version-i-am-running (view that QA to learn other commands you could use)

Related Question