mirror of
https://gitea.blesmrt.net/mikaela/scripts.git
synced 2025-08-19 12:57:21 +02:00
Compare commits
6 Commits
a68d08c515
...
75ce46e896
Author | SHA1 | Date | |
---|---|---|---|
75ce46e896 | |||
782a641459 | |||
198643b487 | |||
b48f55e835 | |||
41c37b0c9b | |||
1057879d5e |
@ -118,5 +118,11 @@ if [ -f /root/fixgrub.bash ]; then
|
||||
/root/fixgrub.bash
|
||||
fi
|
||||
|
||||
# Lumina & Sedric have been having kernel update issues, let's see if this
|
||||
# script could detect and suggest action for that.
|
||||
if [ -f /root/fix-kernel-install.bash ]; then
|
||||
/root/fix-kernel-install.bash
|
||||
fi
|
||||
|
||||
# Hide commands being executed again
|
||||
set +x
|
||||
|
38
bash/fix-kernel-install.bash
Executable file
38
bash/fix-kernel-install.bash
Executable file
@ -0,0 +1,38 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
#set -x
|
||||
|
||||
export LC_ALL=C.utf8
|
||||
|
||||
# Check for existence of /etc/machine-id/
|
||||
if [ -f /etc/machine-id ]; then
|
||||
|
||||
# How about we just store the machine-id instead of fetching it
|
||||
# constantly?
|
||||
MACHINEID="$(cat /etc/machine-id)"
|
||||
#echo "Our machine-id is $MACHINEID"
|
||||
|
||||
# Check for existence of the /boot/<machine-id> directory
|
||||
if [ -d /boot/efi/"$MACHINEID" ]; then
|
||||
|
||||
# Store the latest installed kernel to $EXPECTEDKERNEL
|
||||
EXPECTEDKERNEL="$(find /lib/modules -maxdepth 1 -printf '%P\n' | sort | tail -n -1)"
|
||||
|
||||
# And actual kernel in the boot/efi directory
|
||||
ACTUALKERNEL="$(find /boot/efi/"$MACHINEID"/ -maxdepth 1 -printf '%P\n' | sort | tail -n -1)"
|
||||
|
||||
# Are they the same? Everything OK!
|
||||
if [ "$EXPECTEDKERNEL" == "$ACTUALKERNEL" ]; then
|
||||
echo "The kernel situation seems OK."
|
||||
|
||||
else
|
||||
printf "\nWARNING! Kernels mismatch! Suggested actions:\n"
|
||||
printf "\tsudo mkdir /boot/%b/%b\n" "$MACHINEID" "$EXPECTEDKERNEL"
|
||||
printf "\tsudo kernel-install add %b /lib/modules/%b/vmlinuz\n" "$EXPECTEDKERNEL" "$EXPECTEDKERNEL"
|
||||
#printf "\tsudo dnf reinstall kernel-core-%b -y\n" "$EXPECTEDKERNEL"
|
||||
printf "Please note that Lumina and Sedric have moved to UKI."
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
||||
#set +x
|
Loading…
x
Reference in New Issue
Block a user