Je viens d'installer archlinux après un certain temps d'absence. Je ne connaissais pas Syslinux comme bootloader (j'utilisais grub avant).
J'observe un comportement assez étrange: lors du premier démarage après l'installation, je boot correctement, tout se passe bien.
Il me semble avoir pu rebooter ma machine une ou deux fois (quand j'ai installé openbox je pense avoir fais un reboot).
Mais ce soir des que je fais un reboot (shutdown -r now), impossible de booter correctement. J'arrive sur un ecran noir avec le nom du programme Syslinux (et le nom des auteurs je crois), mais pas de menu, pas de chargement de vmlinuz, pas de prompt...rien. Je suis obligé de faire un chroot depuis un live CD et executer un /usr/sbin/syslinux-install_update -u et rebooter pour pourvoir démarrer.
Par contre, avec un shutdown -h, et un rallumage de la machine je n'ai pas de problème.
Je sais pas trop quoi donner comme infos, hesitez pas pour les suggestions:
Linux main 3.4.8-1-ARCH #1 SMP PREEMPT Thu Aug 9 21:21:22 CEST 2012 x86_64 GNU/Linux
Code : Tout sélectionner
22 DEFAULT arch
23 PROMPT 1 # Set to 1 if you always want to display the boot: prompt
24 TIMEOUT 30
25 # You can create syslinux keymaps with the keytab-lilo tool
26 #KBDMAP de.ktl
27
28 # Menu Configuration
29 # Either menu.c32 or vesamenu32.c32 must be copied to /boot/syslinux
30 #UI menu.c32
31 UI vesamenu.c32
32
33 # Refer to http://syslinux.zytor.com/wiki/index.php/Doc/menu
34 MENU TITLE Arch Linux
35 #MENU BACKGROUND splash.png
36 MENU COLOR border 30;44 #40ffffff #a0000000 std
37 MENU COLOR title 1;36;44 #9033ccff #a0000000 std
38 MENU COLOR sel 7;37;40 #e0ffffff #20ffffff all
39 MENU COLOR unsel 37;44 #50ffffff #a0000000 std
40 MENU COLOR help 37;40 #c0ffffff #a0000000 std
41 MENU COLOR timeout_msg 37;40 #80ffffff #00000000 std
42 MENU COLOR timeout 1;37;40 #c0ffffff #00000000 std
43 MENU COLOR msg07 37;40 #90ffffff #a0000000 std
44 MENU COLOR tabmsg 31;40 #30ffffff #00000000 std
45
46 # boot sections follow
47 #
48 # TIP: If you want a 1024x768 framebuffer, add "vga=773" to your kernel line.
49 #
50 #-*
51
52 LABEL arch
53 MENU LABEL Arch Linux
54 LINUX ../vmlinuz-linux
55 APPEND root=/dev/sdb1 ro
56 INITRD ../initramfs-linux.img
57
58 LABEL archfallback
59 MENU LABEL Arch Linux Fallback
60 LINUX ../vmlinuz-linux
61 APPEND root=/dev/sdb1 ro
62 INITRD ../initramfs-linux-fallback.img
63
Kozmic.