Contenu | Rechercher | Menus

Annonce

Si vous avez des soucis pour rester connecté, déconnectez-vous puis reconnectez-vous depuis ce lien en cochant la case
Me connecter automatiquement lors de mes prochaines visites.

À propos de l'équipe du forum.

#1 Le 13/01/2010, à 12:13

tyrano

[Résolu]Erreur pendant update-grub et mises a jour (9.10)

Bonjour à tous,
J'ai récemment installé Karmic Koala et tout s'est bien passé, mais depuis la mise a jour du noyau vers la version 2.6.31-17-generic grub-pc entraine plusieurs erreurs telles que :

Pendant une installation quelle qu'elle soit

Paramétrage de grub-pc (1.97~beta4-1ubuntu4.1) ...
Installation finished. No error reported.
This is the contents of the device map /boot/grub/device.map.
Check if this is correct or not. If any of the lines is incorrect,
fix it and re-run the script `grub-install'.

(hd0)    /dev/sda
Generating grub.cfg ...
Found linux image: /boot/vmlinuz-2.6.31-17-generic
Found initrd image: /boot/initrd.img-2.6.31-17-generic
Found linux image: /boot/vmlinuz-2.6.31-16-generic
Found initrd image: /boot/initrd.img-2.6.31-16-generic
Found linux image: /boot/vmlinuz-2.6.31-14-generic
Found initrd image: /boot/initrd.img-2.6.31-14-generic
Found memtest86+ image: /boot/memtest86+.bin
Found Microsoft Windows XP Professionnel on /dev/sda1
/etc/grub.d/40_custom: 1: menuentry: not found
insmod: can't read 'ntfs': No such file or directory
/etc/grub.d/40_custom: 3: Syntax error: "(" unexpected
dpkg : erreur de traitement de grub-pc (--configure) :
le sous-processus script post-installation installé a retourné une erreur de sortie d'état 2

Ou alors j'ai pu avoir egalement des erreurs de sortie d'état 2 mais je n'ai pas fait de log

Aprés avoir pas mal cherché sur internet et sur la doc je ne trouve toujours pas comment arreter ce problème, est-ce quelqu'un a une idée?

Merci d'avance

Dernière modification par tyrano (Le 13/01/2010, à 12:52)

Hors ligne

#2 Le 13/01/2010, à 12:33

peterp@n

Re : [Résolu]Erreur pendant update-grub et mises a jour (9.10)

Salut,
Peux tu posté le fichier /etc/grub.d/40_custom. Il semble que ce script pose un problème.
Le fichier /boot/grub/grub.cgf peut être utile aussi.


Ubuntu 14.04 64bits, Raspbian “wheezy”, Tango Studio sauce debian
Assistance - Développement - Formations FreeCAD (logiciel 3d)

Hors ligne

#3 Le 13/01/2010, à 12:40

tyrano

Re : [Résolu]Erreur pendant update-grub et mises a jour (9.10)

Merci d'avoir répondu si vite, voila les deux fichiers que tu m'as demandé:

40_custom

menuentry "Windows XP Professionnel" {
    insmod ntfs
    set root=(hd0,1)
    search --no-floppy --fs-uuid --set 22dc6699dc66674f
    drivemap -s (hd0) ${root}
    chainloader +1
}#!/bin/sh
exec tail -n +3 $0
# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.

et grub.cfg

#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by /usr/sbin/grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
if [ -s /boot/grub/grubenv ]; then
  have_grubenv=true
  load_env
fi
set default="0"
if [ ${prev_saved_entry} ]; then
  saved_entry=${prev_saved_entry}
  save_env saved_entry
  prev_saved_entry=
  save_env prev_saved_entry
fi
insmod ext2
set root=(hd0,5)
search --no-floppy --fs-uuid --set 2ad672b9-5593-4ce6-b25f-1fb4d8662003
if loadfont /usr/share/grub/unicode.pf2 ; then
  set gfxmode=640x480
  insmod gfxterm
  insmod vbe
  if terminal_output gfxterm ; then true ; else
    # For backward compatibility with versions of terminal.mod that don't
    # understand terminal_output
    terminal gfxterm
  fi
fi
if [ ${recordfail} = 1 ]; then
  set timeout=-1
else
  set timeout=10
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=white/black
set menu_color_highlight=black/white
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
menuentry "Ubuntu, Linux 2.6.31-16-generic" {
        recordfail=1
        if [ -n ${have_grubenv} ]; then save_env recordfail; fi
    set quiet=1
    insmod ext2
    set root=(hd0,5)
    search --no-floppy --fs-uuid --set 2ad672b9-5593-4ce6-b25f-1fb4d8662003
    linux    /boot/vmlinuz-2.6.31-16-generic root=UUID=2ad672b9-5593-4ce6-b25f-1fb4d8662003 ro   quiet splash
    initrd    /boot/initrd.img-2.6.31-16-generic
}
menuentry "Ubuntu, Linux 2.6.31-16-generic (recovery mode)" {
        recordfail=1
        if [ -n ${have_grubenv} ]; then save_env recordfail; fi
    insmod ext2
    set root=(hd0,5)
    search --no-floppy --fs-uuid --set 2ad672b9-5593-4ce6-b25f-1fb4d8662003
    linux    /boot/vmlinuz-2.6.31-16-generic root=UUID=2ad672b9-5593-4ce6-b25f-1fb4d8662003 ro single
    initrd    /boot/initrd.img-2.6.31-16-generic
}
menuentry "Ubuntu, Linux 2.6.31-14-generic" {
        recordfail=1
        if [ -n ${have_grubenv} ]; then save_env recordfail; fi
    set quiet=1
    insmod ext2
    set root=(hd0,5)
    search --no-floppy --fs-uuid --set 2ad672b9-5593-4ce6-b25f-1fb4d8662003
    linux    /boot/vmlinuz-2.6.31-14-generic root=UUID=2ad672b9-5593-4ce6-b25f-1fb4d8662003 ro   quiet splash
    initrd    /boot/initrd.img-2.6.31-14-generic
}
menuentry "Ubuntu, Linux 2.6.31-14-generic (recovery mode)" {
        recordfail=1
        if [ -n ${have_grubenv} ]; then save_env recordfail; fi
    insmod ext2
    set root=(hd0,5)
    search --no-floppy --fs-uuid --set 2ad672b9-5593-4ce6-b25f-1fb4d8662003
    linux    /boot/vmlinuz-2.6.31-14-generic root=UUID=2ad672b9-5593-4ce6-b25f-1fb4d8662003 ro single
    initrd    /boot/initrd.img-2.6.31-14-generic
}
### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_memtest86+ ###
menuentry "Memory test (memtest86+)" {
    linux16    /boot/memtest86+.bin
}
menuentry "Memory test (memtest86+, serial console 115200)" {
    linux16    /boot/memtest86+.bin console=ttyS0,115200n8
}
### END /etc/grub.d/20_memtest86+ ###

### BEGIN /etc/grub.d/30_os-prober ###
menuentry "Microsoft Windows XP Professionnel (on /dev/sda1)" {
    insmod ntfs
    set root=(hd0,1)
    search --no-floppy --fs-uuid --set 22dc6699dc66674f
    drivemap -s (hd0) ${root}
    chainloader +1
}
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###

J'ai deja cherché mais je ne connais vraiment rien a grub 2, merci de m'aider.

Hors ligne

#4 Le 13/01/2010, à 12:43

peterp@n

Re : [Résolu]Erreur pendant update-grub et mises a jour (9.10)

Ok c'est bon.
Ton fichier 40_custom est incorect il faut mettre les entrées après les lignes existantes.
Voilà ce que ça doit être :
40_custom

#!/bin/sh
exec tail -n +3 $0
# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.
menuentry "Windows XP Professionnel" {
    insmod ntfs
    set root=(hd0,1)
    search --no-floppy --fs-uuid --set 22dc6699dc66674f
    drivemap -s (hd0) ${root}
    chainloader +1
}

Ubuntu 14.04 64bits, Raspbian “wheezy”, Tango Studio sauce debian
Assistance - Développement - Formations FreeCAD (logiciel 3d)

Hors ligne

#5 Le 13/01/2010, à 12:51

tyrano

Re : [Résolu]Erreur pendant update-grub et mises a jour (9.10)

Nickel ça a réglé mon problème, je n'y avais meme pas pensé.

Merci Peterpan12. je le passe en résolu

Dernière modification par tyrano (Le 13/01/2010, à 14:28)

Hors ligne

#6 Le 13/01/2010, à 13:00

peterp@n

Re : [Résolu]Erreur pendant update-grub et mises a jour (9.10)

De rien ! big_smile


Ubuntu 14.04 64bits, Raspbian “wheezy”, Tango Studio sauce debian
Assistance - Développement - Formations FreeCAD (logiciel 3d)

Hors ligne