Dir cleanup.

This commit is contained in:
Andrew Schott 2024-07-02 04:10:31 -05:00
parent 82390cfb5d
commit 281503ff2e
4 changed files with 0 additions and 0 deletions

16
kexec_related/kexec.sh Executable file
View file

@ -0,0 +1,16 @@
#!/bin/bash
# Force root
[ `whoami` = root ] || { sudo "$0" "$@"; exit $?; }
latestkernel=`ls -t /boot/vmlinuz-* | sed "s/\/boot\/vmlinuz-//g" | head -n1`
echo "kernel current: $(uname -r)"
echo "kernel target: ${latestkernel}"
echo ""
echo "Arming kexec..."
#kexec -l /boot/vmlinuz-${latestkernel} --initrd=/boot/initramfs-${latestkernel}.img --append="`cat /proc/cmdline`"
kexec -l /boot/vmlinuz-${latestkernel} --initrd=/boot/initramfs-${latestkernel}.img --reuse-cmdline
echo ""
read -p "Press [Enter] key to start new kernel..."
#systemctl start kexec.target
kexec -e