#!/bin/bashyum -y groupinstall "development tools"yum -y install ncurses-devel openssl-devel elfutils-libelf-devel bcwget https://mirrors.edge.kernel.org/pub/linux/kernel/v4.x/linux-4.19.91.tar.gztar xf linux-4.19.91.tar.gzcd linux-4.19.91cp /boot/config-3.10.0-11* .configmake defconfigmake -j 4make modules_installmake installgrub2-set-default 0echo 'Update Success'#reboot
