내인생PLUS 2023. 7. 13. 20:57
728x90

https://askubuntu.com/questions/418666/update-grub-command-not-found

 

update-grub command not found

I'm trying to update my grub config on ubuntu server 12.04.3 to include the GRUB_RECORDFAIL_TIMEOUT variable as described here: https://help.ubuntu.com/community/Grub2. The procedure says run update-

askubuntu.com

 

 

he update-grub command was created to make things easier - it is simply a shell script in /usr/sbin/:



#!/bin/sh
set -e
exec grub-mkconfig -o /boot/grub/grub.cfg "$@"

 

 

If it is not there, you can make your own. To do that, run this, and paste in the above script:

sudo nano /usr/sbin/update-grub
Save with Ctrl+O, and exit with Ctrl+X.

Then run these:

sudo chown root:root /usr/sbin/update-grub
sudo chmod 755 /usr/sbin/update-grub
And you should now be able to run update-grub. :-)

 

 

 

 


 

 

 

 

 

 

 

 


 

반응형