You are not logged in.
I have standard syslinux entries:
LABEL arch
MENU LABEL Arch Linux
LINUX ../vmlinuz-linux
APPEND root=/dev/sda2 rw vga=864
INITRD ../initramfs-linux.img
LABEL windows
MENU LABEL Windows
COM32 chain.c32
APPEND hd0 3
And set default to:
DEFAULT arch
Is it possible from Linux to reboot into windows just one time without select menu ? For example, something like:
reboot --label=windows
Last edited by hsz (2014-01-19 19:52:27)
Offline
You can only do something similar, and that too with grub2 only AFAIK.
Last edited by x33a (2014-01-19 14:52:43)
Offline
Use --once= option of syslinux/extlinux
Offline
@djgera Thanks !
Solution:
sudo extlinux -o windows /boot/syslinux/ && sudo reboot
Offline
@ djgera
Nice, I didn't know this feature existed in syslinux.
Offline