0

I have to check when was the last time my red-hat based linux server kernel was updated can anyone please help me with this.

pkm
  • 2,683
  • 2
  • 29
  • 44

1 Answers1

1

uname prints system information.

uname -v: print the kernel version

uname -r: print the kernel release

uname -s: print the kernel name

Arman
  • 437
  • 3
  • 19