Pour info

bonjour,
su un autre linux avev VB j’ai ce message:

crash: /boot/vmlinuz-3.7.10-1.16-default: not a supported file format

avez-vous une idéé?
pour info ce linux est de type ID 83 et utilise le btrfs
A vous lire
A+
JB1

Clair et net comme à l’accoutumée…
Tentons de démêler [strike]les cheveux les chevaux[/strike] l’écheveau.
Qu’est-ce que /boot/vmlinuz-3.7.10-1.16-default ?

$ ls -l /boot/

$ file /boot/vmlinuz-3.7.10-1.16-default

Regarde l’entrée en /boot/grub/grub.cfg.
Où se trouve vmlinuz-3.7.10-1.16-default ?
Face à linux /boot/???
ou
root=???

bonsoir,
pour vmlinux j’en ai utilisé 3,
par conséquent sur tes indications de /boot/grub2/cfg:

 echo    'Loading Linux 3.7.10-1.16-desktop ...'
        linux   /boot/vmlinuz-3.7.10-1.16-desktop root=UUID=4eb1f577-2e03-4dc3-9449-6d0622971295   resume=/dev/
disk/by-id/ata-VBOX_HARDDISK_VBd0751999-319eac7c-part1 splash=silent quiet showopts crashkernel=512M-:256M
        echo    'Loading initial ramdisk ...'
        initrd  /boot/initrd-3.7.10-1.16-desktop
}


c'est sous virtualbox opensuse 12.3 pour utiliser crash
je fais cela avec plusieurs Linux sous Debian 3.2

A+
JB1

linux /boot/vmlinuz-3.7.10-1.16-desktop root=UUID=4eb1f577-2e03-4dc3-9449-6d0622971295 resume=/dev/ disk/by-id/ata-VBOX_HARDDISK_VBd0751999-319eac7c-part1 splash=silent quiet showopts crashkernel=512M-:256M echo 'Loading initial ramdisk ...' initrd /boot/initrd-3.7.10-1.16-desktop

On commence par un noyau «*default», puis survient un noyau «*desktop» parmi trois autres … Palpitant, quel suspense. Il ne faut pas louper d’épisodes.
Voyons donc.
resume, sortie d’hibernation. Pour quoi faire ? Quel interêt ? Tu testes le comportement de virtualbox en hibernation ?
crashkernel ( crashkernel=512M-:256M).
kernel-parameters

crashkernel=size[KMG][@offset[KMG]] [KNL] Using kexec, Linux can switch to a 'crash kernel' upon panic. This parameter reserves the physical memory region [offset, offset + size] for that kernel image. If '@offset' is omitted, then a suitable offset is selected automatically. Check Documentation/kdump/kdump.txt for further details.

Crashkernel est utilisé avec kexec pour capturer les détails de plantages du noyau. Kexec recharge le même noyau, un dump est conservé pour analyse ultérieure.
On t’invite à lire la doc de kdump où figurent les options de compilation du noyau indispensables à la capture de ces images de plantage.
À propos de l’argument au démarrage :

The syntax is:

    crashkernel=<range1>:<size1>[,<range2>:<size2>,...][@offset]
    range=start-[end]

    'start' is inclusive and 'end' is exclusive.

For example:

    crashkernel=512M-2G:64M,2G-:128M

This would mean:

    1) if the RAM is smaller than 512M, then don't reserve anything
       (this is the "rescue" case)
    2) if the RAM size is between 512M and 2G (exclusive), then reserve 64M
    3) if the RAM size is larger than 2G, then reserve 128M


Boot into System Kernel
=======================

1) Update the boot loader (such as grub, yaboot, or lilo) configuration
   files as necessary.

2) Boot the system kernel with the boot parameter "crashkernel=Y@X",
   where Y specifies how much memory to reserve for the dump-capture kernel
   and X specifies the beginning of this reserved memory. For example,
   "crashkernel=64M@16M" tells the system kernel to reserve 64 MB of memory
   starting at physical address 0x01000000 (16MB) for the dump-capture kernel.

   On x86 and x86_64, use "crashkernel=64M@16M".

Pourquoi utiliser crashkernel ? Tu provoques les plantages du noyau et les débuggues ? Si tu n’as aucune raison d’utiliser crashkernel, enlève-le et remet t’en à une entrée grub classique sans crashkernel.

bonjour,
tu as fait nocturne pendant que je regardais Magellan puis un peu plus tard Ruquier
bref,

la prise de dump se passe bien, on voit le disque travailler,
tu as deviné le Linux: OPenS… mise oeuvre en mode graphique (forcer la taille à 256 au lieu de 64 par défault
donc au lancement de l’analyse:

Mot de passe : 
linux-tngw:~ # cd /var/crash/2013*;ls
vmcore
linux-tngw:/var/crash/2013-10-18-11:17 # ls -l
total 506956
-rw------- 1 root root 520660568 Oct 18 11:19 vmcore
linux-tngw:/var/crash/2013-10-18-11:17 # crash  /boot/System.map-3.7.10-1.16-desktop /boot/vmlinuz-3.7.10-1.16-desktop vmcore

crash 6.0.7
Copyright (C) 2002-2012  Red Hat, Inc.
Copyright (C) 2004, 2005, 2006, 2010  IBM Corporation
Copyright (C) 1999-2006  Hewlett-Packard Co
Copyright (C) 2005, 2006, 2011, 2012  Fujitsu Limited
Copyright (C) 2006, 2007  VA Linux Systems Japan K.K.
Copyright (C) 2005, 2011  NEC Corporation
Copyright (C) 1999, 2002, 2007  Silicon Graphics, Inc.
Copyright (C) 1999, 2000, 2001, 2002  Mission Critical Linux, Inc.
This program is free software, covered by the GNU General Public License,
and you are welcome to change it and/or distribute copies of it under
certain conditions.  Enter "help copying" to see the conditions.
This program has absolutely no warranty.  Enter "help warranty" for details.
 
crash: /boot/vmlinuz-3.7.10-1.16-desktop: not a supported file format

Usage:

  crash [OPTION]... NAMELIST MEMORY-IMAGE  (dumpfile form)
  crash [OPTION]... [NAMELIST]             (live system form)

Enter "crash -h" for details.
linux-tngw:/var/crash/2013-10-18-11:17 # 

éclairez ma lanterne,
A+
JB1

bonsoir extberri…,
avec Debian 7.2 géré par VB,
cela fonctionne:

jb1@debian:~$ su -
Mot de passe : 
root@debian:~# cd /var/crash
root@debian:/var/crash# ls
201310201839  kernel_link  kexec_cmd
root@debian:/var/crash# cd 2013*
root@debian:/var/crash/201310201839# ls
dump.201310201839  kernel_link
root@debian:/var/crash/201310201839# crash /usr/lib/debug/boot/vmlinux-3.2.0-4-amd64 /var/crash/2013*/dump.2013*

crash 6.0.6
Copyright (C) 2002-2012  Red Hat, Inc.
Copyright (C) 2004, 2005, 2006  IBM Corporation
Copyright (C) 1999-2006  Hewlett-Packard Co
Copyright (C) 2005, 2006  Fujitsu Limited
Copyright (C) 2006, 2007  VA Linux Systems Japan K.K.
Copyright (C) 2005  NEC Corporation
Copyright (C) 1999, 2002, 2007  Silicon Graphics, Inc.
Copyright (C) 1999, 2000, 2001, 2002  Mission Critical Linux, Inc.
This program is free software, covered by the GNU General Public License,
and you are welcome to change it and/or distribute copies of it under
certain conditions.  Enter "help copying" to see the conditions.
This program has absolutely no warranty.  Enter "help warranty" for details.
 
GNU gdb (GDB) 7.3.1
Copyright (C) 2011 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
and "show warranty" for details.
This GDB was configured as "x86_64-unknown-linux-gnu"...

      KERNEL: /usr/lib/debug/boot/vmlinux-3.2.0-4-amd64
    DUMPFILE: /var/crash/201310201839/dump.201310201839  [PARTIAL DUMP]
        CPUS: 4
        DATE: Sun Oct 20 18:39:14 2013
      UPTIME: 00:06:13
LOAD AVERAGE: 0.00, 0.04, 0.04
       TASKS: 344
    NODENAME: debian
     RELEASE: 3.2.0-4-amd64
     VERSION: #1 SMP Debian 3.2.51-1
     MACHINE: x86_64  (1993 Mhz)
      MEMORY: 2 GB
       PANIC: "[  373.283051] Oops: 0002 [#1] SMP " (check log for details)
         PID: 3582
     COMMAND: "bash"
        TASK: ffff88007a6476d0  [THREAD_INFO: ffff88006a6be000]
         CPU: 0
       STATE: TASK_RUNNING (PANIC)

crash> 

je vais réinstaller l’autre Linux
bonne soirée si tu passes par là
A+
JB1
:033 :033

bonjour,
pas mal ce netinstall débarassé de la capture initial
aprés choix du pays 13 (cela m’a rappelé des souvenirs)

il m’a offert plusieurs choix d’installation sur mon disque ssd
au diable mes varices j’ai pris sid
comme netinstall télèchargement des paquets,
j’ai même vu la 3.11 pour le noyau, moi qui est en 3.10

des remarques sur smxi:
-au début une erreur non bloquante:
awk:line 71 ou 74 fonction gensub never defined

puis:
[KMS] drm report no testing is n’t supported
unload "radeon"
no screen found (EE)

dans le temps on avait “vesa” pour le passe partout!

donc je reviens en mode texte, ifconfig OK
bonne lecture
A+
JB1
:030

probléme contourné,
par :
aptitude intall kde-full
puis rename du fichier /etc/X11/xorg.conf
je referais une tentative avec gnome
A+
JB1
:033 :030

bonjour,
je veux faire évoluer ma 7.10,
je fais référence au wiki:

jb1@alpha30:~$ aptitude search linux-source
i   linux-source                                                       - Linux kernel source (meta-package)                                          
v   linux-source:i386                                                  -                                                                             
p   linux-source-2.6                                                   - Linux kernel source (dummy package)                                         
i   linux-source-3.10                                                  - Linux kernel source for version 3.10 with Debian patches                    
v   linux-source-3.10:i386                                             -                                                                             
p   linux-source-3.11                                                  - Linux kernel source for version 3.11 with Debian patches                    
v   linux-source-3.11:i386                                             -                                                                             
i   linux-source-3.12                                                  - Linux kernel source for version 3.12 with Debian patches                    
v   linux-source-3.12:i386                                             -                                                                             
p   linux-source-3.2                                                   - Linux kernel source for version 3.2 with Debian patches                     
v   linux-source-3.2:i386                                              -                                                                             
i   linux-source-3.5                                                   - Linux kernel source for version 3.5 with Debian patches                     
v   linux-source-3.5:i386                                              -                                                                             
i   linux-source-3.8                                                   - Linux kernel source for version 3.8 with Debian patches                     
v   linux-source-3.8:i386                                              -                                                                             
pi  linux-source-3.9                                                   - Linux kernel source for version 3.9 with Debian patches                     
v   linux-source-3.9:i386                                              -                                                                             
jb1@alpha30:~$ 

je trouve une 7.12 tout court, je télécharge, le produit est mis dans /usr/src

une grande surprise:

jb1@alpha30:/usr/src$ cd lin*12-rc7
jb1@alpha30:/usr/src/linux-config-3.12-rc7$ ls
config.alpha_none_alpha-generic.xz  config.hppa_none_parisc64-smp.xz  config.mipsel_none_loongson-2f.xz     config.powerpc_none_powerpc-smp.xz
config.alpha_none_alpha-legacy.xz   config.hppa_none_parisc64.xz      config.mipsel_none_r5k-cobalt.xz      config.powerpc_none_powerpc.xz
config.alpha_none_alpha-smp.xz      config.hppa_none_parisc-smp.xz    config.mipsel_none_sb1a-bcm91480b.xz  config.powerpcspe_none_powerpcspe.xz
config.amd64_none_amd64.xz          config.hppa_none_parisc.xz        config.mipsel_none_sb1-bcm91250a.xz   config.ppc64_none_powerpc64.xz
config.armel_none_iop32x.xz         config.i386_none_486.xz           config.mips_none_4kc-malta.xz         config.s390_none_s390x.xz
config.armel_none_ixp4xx.xz         config.i386_none_686-pae.xz       config.mips_none_5kc-malta.xz         config.s390x_none_s390x.xz
config.armel_none_kirkwood.xz       config.i386_none_amd64.xz         config.mips_none_octeon.xz            config.sh4_none_sh7751r.xz
config.armel_none_mv78xx0.xz        config.ia64_none_itanium.xz       config.mips_none_r4k-ip22.xz          config.sh4_none_sh7785lcr.xz
config.armel_none_orion5x.xz        config.ia64_none_mckinley.xz      config.mips_none_r5k-ip32.xz          config.sparc64_none_sparc64-smp.xz
config.armel_none_versatile.xz      config.m68k_none_m68k.xz          config.mips_none_sb1a-bcm91480b.xz    config.sparc64_none_sparc64.xz
config.armhf_none_armmp-lpae.xz     config.mipsel_none_4kc-malta.xz   config.mips_none_sb1-bcm91250a.xz     config.sparc_none_sparc64-smp.xz
config.armhf_none_armmp.xz          config.mipsel_none_5kc-malta.xz   config.powerpc_none_powerpc64.xz      config.sparc_none_sparc64.xz
jb1@alpha30:/usr/src/linux-config-3.12-rc7$ 
jb1@

que fais-je docteur je n’ai jamais manipuler un .xz
A+
JB1
:030

Mais c’est pas possible, relis toi par pitié.

Ce ne sont ques des archives compressées à extraire comme tu le ferais avec des fichiers gzip, bzip, rar …
Plus d’une solution.
Tu pourrais en sonder le contenu et l’extraire au moyen de

  • gestionnaire d’archives ark, file-roller …
  • midnight commander, mc.

$ mc
naviguer, sélectionner archive.xz, touche entrée, F5 pour copier.

  • la ligne de commande
    À la façon de un$COMPRESSION (unzip,unrar… ): unxz.

$ apropos xz

lzcat (1) - Compress or decompress .xz and .lzma files lzless (1) - view xz or lzma compressed (text) files lzma (1) - Compress or decompress .xz and .lzma files lzmore (1) - view xz or lzma compressed (text) files unlzma (1) - Compress or decompress .xz and .lzma files unxz (1) - Compress or decompress .xz and .lzma files xz (1) - Compress or decompress .xz and .lzma files xzcat (1) - Compress or decompress .xz and .lzma files xzcmp (1) - compare compressed files xzdiff (1) - compare compressed files xzegrep (1) - search compressed files for a regular expression xzfgrep (1) - search compressed files for a regular expression xzgrep (1) - search compressed files for a regular expression xzless (1) - view xz or lzma compressed (text) files xzmore (1) - view xz or lzma compressed (text) files

packages.debian.org/experimental … 2/filelist /usr/share/doc/linux-source-3.12/README.Debian /usr/share/doc/linux-source-3.12/changelog.Debian.gz /usr/share/doc/linux-source-3.12/copyright /usr/src/linux-config-3.12-rc7/config.alpha_none_alpha-generic.xz /usr/src/linux-config-3.12-rc7/config.alpha_none_alpha-legacy.xz /usr/src/linux-config-3.12-rc7/config.alpha_none_alpha-smp.xz /usr/src/linux-config-3.12-rc7/config.amd64_none_amd64.xz /usr/src/linux-config-3.12-rc7/config.armel_none_iop32x.xz /usr/src/linux-config-3.12-rc7/config.armel_none_ixp4xx.xz /usr/src/linux-config-3.12-rc7/config.armel_none_kirkwood.xz /usr/src/linux-config-3.12-rc7/config.armel_none_mv78xx0.xz /usr/src/linux-config-3.12-rc7/config.armel_none_orion5x.xz /usr/src/linux-config-3.12-rc7/config.armel_none_versatile.xz /usr/src/linux-config-3.12-rc7/config.armhf_none_armmp-lpae.xz /usr/src/linux-config-3.12-rc7/config.armhf_none_armmp.xz /usr/src/linux-config-3.12-rc7/config.hppa_none_parisc-smp.xz /usr/src/linux-config-3.12-rc7/config.hppa_none_parisc.xz /usr/src/linux-config-3.12-rc7/config.hppa_none_parisc64-smp.xz /usr/src/linux-config-3.12-rc7/config.hppa_none_parisc64.xz /usr/src/linux-config-3.12-rc7/config.i386_none_486.xz /usr/src/linux-config-3.12-rc7/config.i386_none_686-pae.xz /usr/src/linux-config-3.12-rc7/config.i386_none_amd64.xz /usr/src/linux-config-3.12-rc7/config.ia64_none_itanium.xz /usr/src/linux-config-3.12-rc7/config.ia64_none_mckinley.xz /usr/src/linux-config-3.12-rc7/config.m68k_none_m68k.xz /usr/src/linux-config-3.12-rc7/config.mips_none_4kc-malta.xz /usr/src/linux-config-3.12-rc7/config.mips_none_5kc-malta.xz /usr/src/linux-config-3.12-rc7/config.mips_none_octeon.xz /usr/src/linux-config-3.12-rc7/config.mips_none_r4k-ip22.xz /usr/src/linux-config-3.12-rc7/config.mips_none_r5k-ip32.xz /usr/src/linux-config-3.12-rc7/config.mips_none_sb1-bcm91250a.xz /usr/src/linux-config-3.12-rc7/config.mips_none_sb1a-bcm91480b.xz /usr/src/linux-config-3.12-rc7/config.mipsel_none_4kc-malta.xz /usr/src/linux-config-3.12-rc7/config.mipsel_none_5kc-malta.xz /usr/src/linux-config-3.12-rc7/config.mipsel_none_loongson-2f.xz /usr/src/linux-config-3.12-rc7/config.mipsel_none_r5k-cobalt.xz /usr/src/linux-config-3.12-rc7/config.mipsel_none_sb1-bcm91250a.xz /usr/src/linux-config-3.12-rc7/config.mipsel_none_sb1a-bcm91480b.xz /usr/src/linux-config-3.12-rc7/config.powerpc_none_powerpc-smp.xz /usr/src/linux-config-3.12-rc7/config.powerpc_none_powerpc.xz /usr/src/linux-config-3.12-rc7/config.powerpc_none_powerpc64.xz /usr/src/linux-config-3.12-rc7/config.powerpcspe_none_powerpcspe.xz /usr/src/linux-config-3.12-rc7/config.ppc64_none_powerpc64.xz /usr/src/linux-config-3.12-rc7/config.s390_none_s390x.xz /usr/src/linux-config-3.12-rc7/config.s390x_none_s390x.xz /usr/src/linux-config-3.12-rc7/config.sh4_none_sh7751r.xz /usr/src/linux-config-3.12-rc7/config.sh4_none_sh7785lcr.xz /usr/src/linux-config-3.12-rc7/config.sparc64_none_sparc64-smp.xz /usr/src/linux-config-3.12-rc7/config.sparc64_none_sparc64.xz /usr/src/linux-config-3.12-rc7/config.sparc_none_sparc64-smp.xz /usr/src/linux-config-3.12-rc7/config.sparc_none_sparc64.xz /usr/src/linux-source-3.12-rc7.tar.xz
Le dossier config contient, qui l’eût cru, des … config.

La source du paquet :
/usr/src/linux-source-3.12-rc7.tar.xz
Voilà le fichier qui t’intéresse. C’est un fichier .xz enchassé en un tar . Pour l’extraire, commande tar avec l’option -J, j majuscule.

$ tar xvJf /usr/src/linux-source-3.12-rc7.tar.xz

Clochette, ne te fache pas, tu stresses (avec 4 s)!

avec google, je cherche .xz
on me parle de M$ pas de Linux,

le wiki Debian ne fait pas référence à la manière d’utiliser un fichier .xz
même son petit cousin Ubuntu fait l’impasse!
bon appétit
A+
JB1
:030

je viens d’essayer la manip de etxbeerr* cela marche
donc sous root faire:

tar xvJf /usr/src/linux-source-3.12-rc7.tar.xz

on va se battre avec le lien /usr/src/linux
re bon appétit
:033 :030 :030
re A+
JB1

Le noyau 3.12-rc7 est présent dans les dépôts experimental, pourquoi s’embêter à aller le chercher ailleurs ?

La simplicité, ce n’est pas vraiment ce qui le caractérise le mieux en même temps ^^

D’un autre côté, pour un aperçu du noyau 7.12 en 2013 je serais moi aussi prêt à passer à travers une méthode de quinze pages :wink:

bon j’ai appliqué vos précaunisations,
avec synaptic et le mot clé kernel,
linux-image-3.12… se trouve loin dans le menu déroulent,
j’avais l’habitude du wiki

un petit moins, dans le temps je voyais un curseur bleu pour un téléchargement,
il en faisait plusieurs en //

bon je reboote et croise les doigts
A+
JB1
:030 :030 :030 :030 :030

dans /boot, je vois l’environnement 3.12,
grub.cfg contient bien le point d’entrée 3.12
ce n’est pas trés parlant:

### BEGIN /etc/grub.d/10_linux ###
menuentry 'Debian GNU/Linux' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-56a19ca5-5635-40d4-953e-99023ec97583' {

menuentry commence en colonne 1 au lieu de tabulation je pense que cela n’est pas grave,

le problème dans le menu graphique de grub je ne vois pas de 3.12

je rereboote
A+
JB1

la 3.12 est bien vu mais ne veut pas présenter le choix au grub

root@alpha30:~# uname -a
Linux alpha30.bohain.org 3.10.0-rc7-20130702 #1 SMP Tue Jul 2 11:30:45 CEST 2013 x86_64 GNU/Linux
root@alpha30:~# update-grub2
Création de grub.cfg...
Found background image: /usr/share/images/desktop-base/desktop-grub.png
Image Linux trouvée : /boot/vmlinuz-3.12-rc7-amd64
Image mémoire initiale trouvée : /boot/initrd.img-3.12-rc7-amd64
Image Linux trouvée : /boot/vmlinuz-3.10.0-rc7-20130702
Image mémoire initiale trouvée : /boot/initrd.img-3.10.0-rc7-20130702
Image Linux trouvée : /boot/vmlinuz-3.9-1-amd64
Image mémoire initiale trouvée : /boot/initrd.img-3.9-1-amd64
Image Linux trouvée : /boot/vmlinuz-3.8.13-20130522
Image mémoire initiale trouvée : /boot/initrd.img-3.8.13-20130522
Image Linux trouvée : /boot/vmlinuz-3.8.5-20130514
Image mémoire initiale trouvée : /boot/initrd.img-3.8.5-20130514
Image Linux trouvée : /boot/vmlinuz-3.8.5-20130513
Image mémoire initiale trouvée : /boot/initrd.img-3.8.5-20130513
Image Linux trouvée : /boot/vmlinuz-3.8.5-20130426
Image mémoire initiale trouvée : /boot/initrd.img-3.8.5-20130426
Image Linux trouvée : /boot/vmlinuz-3.8.5
Image mémoire initiale trouvée : /boot/initrd.img-3.8.5
Image Linux trouvée : /boot/vmlinuz-3.5.0-20120813
Image mémoire initiale trouvée : /boot/initrd.img-3.5.0-20120813
Image Linux trouvée : /boot/vmlinuz-3.4.0-rc3
Image mémoire initiale trouvée : /boot/initrd.img-3.4.0-rc3
Image Linux trouvée : /boot/vmlinuz-3.2.0-rc1
Image mémoire initiale trouvée : /boot/initrd.img-3.2.0-rc1
Image Linux trouvée : /boot/vmlinuz-3.0.0-1-amd64
Image mémoire initiale trouvée : /boot/initrd.img-3.0.0-1-amd64
Found memtest86+ image: /boot/memtest86+.bin
Found memtest86+ multiboot image: /boot/memtest86+_multiboot.bin
  No volume groups found
Debian GNU/Linux (jessie/sid) trouvé sur /dev/sdb1
fait
root@alpha30:~# 

A+
JB1

je n’ai pas essayé avec ma clé usb ==> rescue

Ta demande est du support (apparemment) rien à faire ici.
Ta question initiale n’a aucun sens. (La version de Debian et la version du noyau sont des choses complètement différente, pour la énième fois)
On ne sait pas vraiment ce que tu n’arrives pas à faire.
A chaque fil tu reformule une nouvelle question.
En fait tu ne sais même pas ce qu’est ta demande.
Ta syntaxe est incompréhensible.

Dois-je laisser polluer ce salon avec ce genre d’élucubrations ?

Je propose : "j’aimerai faire évoluer ma Debian (même si j’ai une notion bien vague de ce que veut dire évoluer)"
Avec ce titre, tu nous donnes ton sources.list et tu expliques en français ce que tu veux faire.

Je rappelle à toutes fins utiles, que si tu désires garder à jour ta distribution :

$ su
# apt-get update
# apt-get upgrade
# apt-get dist-upgrade

C’est le strict minimum quand on veut utiliser Debian. Maintenant il serait peut-être préférable que tu essayes une distribution plus en accord avec tes connaissances, il y a un fork de BSD nommé MacOS qui devrait te convenir.

bonjour debianhadic et les autres,
mon problème:
je voudrais que Debian 7.12 prenne en compte le fichier /boot/grub/cfg,
la 7.12 y est référencé mais pas proposé au démarrage
A+
JB1