How do I get a timestamped list of kernel updates? I am using Ubuntu 18.04.
Asked
Active
Viewed 183 times
0
How do I get a timestamped list of kernel updates? I am using Ubuntu 18.04.
zgrep 'install linux-headers' /var/log/dpkg.log* | sort | cut -f1,2,4 -d' '
help? – Kulfy May 21 '20 at 21:09zgrep
to achieve that. The answers in the above question are more general. – Kulfy May 22 '20 at 21:21