Je viens juste d'installer Arch sur mon PC pour virer mon Ubuntu. Avant j'utilisais GRUB mais comme il me semblais que syslinux étais le choix le plus courant avec Arch j'ai installe ça. Le problème c'est que quand je démarre l'ordi, l'écran s'allume normalement puis s'éteind aussitôt et se rallume encore et ainsi de suite. Apparemment l'ordi redémarre systématiquement sans pouvoir charger grand chose. Par contre si le CD d'installation de arch est dans le lecteur je peut lancer syslinux normalement avec "boot existing OS".
Je ne sais pas pourquoi j'ai ce problème et je ne connais pas grand chose à ce niveaux de l'ordi. Quelqu'un à t-il une idée de la source du problème ?
Quelques infos qui pourrait vous permettre de comprendre mon problème :
Code : Tout sélectionner
~# fdisk -l
Disk /dev/sda: 698,7 GiB, 750156374016 bytes, 1465149168 sectors
Unités : secteur de 1 × 512 = 512 octets
Taille de secteur (logique / physique)Â : 512Â octets / 4096Â octets
taille d'E/S (minimale / optimale)Â : 4096Â octets / 4096Â octets
Type d'étiquette de disque : dos
Identifiant de disque : 0x00078a37
La partition 3 ne commence pas sur une frontière de cylindre physique.
La partition 5 ne commence pas sur une frontière de cylindre physique.
La partition 6 ne commence pas sur une frontière de cylindre physique.
La partition 8 ne commence pas sur une frontière de cylindre physique.
Périphérique Amorçage Début Fin Blocs Id Système
/dev/sda1 2048 206847 102400 7 HPFS/NTFS/exFAT
/dev/sda2 207648 234899279 117345816 7 HPFS/NTFS/exFAT
/dev/sda3 1308900978 1465149167 78124095 5 Extended
/dev/sda4 234899280 1308900977 537000849 7 HPFS/NTFS/exFAT
/dev/sda5 * 1308901041 1309093757 96358+ 83 Linux
/dev/sda6 1309093821 1312997552 1951866 82 Linux swap / Solaris
/dev/sda7 1312997616 1371586607 29294496 83 Linux
/dev/sda8 1371586671 1465149167 46781248+ 83 Linux
Les entrées de la table de partitions ne sont pas dans l'ordre du disque.
Pour les partitions :
- sda1 : boot de windows
- sda2 : windows
- sda3 : partition étendu qui contient toute les partition linux
- sda4 : partition de partage de fichier entre les deux OS
- sda5 : /boot arch
- sda7 : / arch
- sda8 : /home arch
Code : Tout sélectionner
# Config file for Syslinux -
# /boot/syslinux/syslinux.cfg
#
# Comboot modules:
# * menu.c32 - provides a text menu
# * vesamenu.c32 - provides a graphical menu
# * chain.c32 - chainload MBRs, partition boot sectors, Windows bootloaders
# * hdt.c32 - hardware detection tool
# * reboot.c32 - reboots the system
#
# To Use: Copy the respective files from /usr/lib/syslinux to /boot/syslinux.
# If /usr and /boot are on the same file system, symlink the files instead
# of copying them.
#
# If you do not use a menu, a 'boot:' prompt will be shown and the system
# will boot automatically after 5 seconds.
#
# Please review the wiki: https://wiki.archlinux.org/index.php/Syslinux
# The wiki provides further configuration examples
DEFAULT arch
PROMPT 0 # Set to 1 if you always want to display the boot: prompt
TIMEOUT 50
# You can create syslinux keymaps with the keytab-lilo tool
#KBDMAP de.ktl
# Menu Configuration
# Either menu.c32 or vesamenu32.c32 must be copied to /boot/syslinux
UI menu.c32
#UI vesamenu.c32
# Refer to http://syslinux.zytor.com/wiki/index.php/Doc/menu
MENU TITLE Arch Linux
#MENU BACKGROUND splash.png
MENU COLOR border 30;44 #40ffffff #a0000000 std
MENU COLOR title 1;36;44 #9033ccff #a0000000 std
MENU COLOR sel 7;37;40 #e0ffffff #20ffffff all
MENU COLOR unsel 37;44 #50ffffff #a0000000 std
MENU COLOR help 37;40 #c0ffffff #a0000000 std
MENU COLOR timeout_msg 37;40 #80ffffff #00000000 std
MENU COLOR timeout 1;37;40 #c0ffffff #00000000 std
MENU COLOR msg07 37;40 #90ffffff #a0000000 std
MENU COLOR tabmsg 31;40 #30ffffff #00000000 std
# boot sections follow
#
# TIP: If you want a 1024x768 framebuffer, add "vga=773" to your kernel line.
#
#-*
LABEL arch
MENU LABEL Arch Linux
LINUX ../vmlinuz-linux
APPEND root=/dev/sda7 rw
INITRD ../initramfs-linux.img
LABEL archfallback
MENU LABEL Arch Linux Fallback
LINUX ../vmlinuz-linux
APPEND root=/dev/sda7 rw
INITRD ../initramfs-linux-fallback.img
LABEL windows
MENU LABEL Windows
COM32 chain.c32
APPEND sda1
LABEL hdt
MENU LABEL HDT (Hardware Detection Tool)
COM32 hdt.c32
LABEL reboot
MENU LABEL Reboot
COM32 reboot.c32
LABEL poweroff
MENU LABEL Poweroff
COM32 poweroff.c32