-
Notifications
You must be signed in to change notification settings - Fork 0
Using ROCKNIX Guide
mercurious edited this page Jun 19, 2026
·
5 revisions
You can disable the GRUB device select screen that appears at boot. This will shave seconds off your boot-time. The recovery option listed has been tested and it doesn't appear to do anything useful when you actually need a recovery.
- Connect to the rig:
ssh root@SM8250.local - Remount the boot partition read-write:
mount -o remount,rw /flash - Back it up first so it's reversible:
cp /flash/EFI/BOOT/grub.cfg /flash/EFI/BOOT/grub.cfg.bak - Set the menu timeout to 0 — skips the GRUB device-picker wait (edit the EFI config, not /flash/boot):
sed -i 's/set timeout=2/set timeout=0/' /flash/EFI/BOOT/grub.cfg && sed -i 's/set timeout=-1/set timeout=0/' /flash/EFI/BOOT/grub.cfg - Verify both timeouts now read 0 (if either still shows 2 or -1, the remount in step 2 didn't take — redo from step 2):
grep timeout= /flash/EFI/BOOT/grub.cfg - Flush and put it back read-only:
sync && mount -o remount,ro /flash