#1 Le 15/12/2014, à 19:25
- Compte supprimé
[Résolu] Partition bios-grub non vue et démarrage impossible.
Bonjour,
Ce sujet est la suite de celui-ci.
Une installation de Xubuntu en mode legacy sur un disque GPT ne démarre pas. Après l'installation, je constate que GRUB n'est pas installé et je ne peux démarrer que sur mon premier disque qui contient l'OS Antergos, basé sur Archlinux.
A partir de mon premier disque je tente d'installer GRUB sur le second et voilà le résultat :
sudo grub-install /dev/sdb
[sudo] password for clapas:
Installation pour la plate-forme i386-pc.
grub-install : attention : cette étiquette de partition GPT ne contient pas de partition d'amorçage BIOS ; l'embarquage ne sera pas possible.
grub-install : erreur : l'embarquage est impossible, il est pourtant nécessaire pour les installations interdisques.
Pourtant j'ai bien crée la partition d'amorçage BIOS selon les informations contenues dans la documentation, et en utilisant le partitionnement de l'installateur.
Edit : Gparted permet de vérifier que la partition existe bien mais elle n'a pas le drapeau "bios-boot". Je l'ai donc ajouté puis, à partir du disque Antergos, j'ai installé GRUB sur le disque XUbuntu. C'est OK.
J'actualise le GRUB d'Antergos et il trouve bien Xubuntu.
Par contre le démarrage sur Xubuntu est impossible :
d'une part le bios ne voit pas le disque Xubuntu, et d'autre part un lancement à partir du GRUB d'Antergos échoue car il faut charger le kernel avant.
Je fais un rapport boot-info ... il est là
EDIT : et ici le boot-info après action de boot-repair pour installer GRUB dans sdb.
Le résultat est le même, pas de démarrage car GRUB ne trouve pas la partition /
Ce disque a peut-être du plomb dans l'aile.
Dernière modification par Compte supprimé (Le 17/12/2014, à 17:06)
#2 Le 15/12/2014, à 20:33
- Compte supprimé
Re : [Résolu] Partition bios-grub non vue et démarrage impossible.
sudo grub-install --force /dev/sdb se passe bien sans message d'erreur, mais le BIOS ne voit toujours pas ce sdb avec Xubuntu.
Si je choisi de lancer sdb dans le menu de GRUB, il affiche :
erreur : no such device ... l'uuid de sb2
erreur : hd1 cannot get C∕H∕S values
erreur : le noyau doit d'abord être chargé.
Par contre quand je démarre sur Antergos, Thunar monte tout de suite sdb2 et je peux consulter son contenu.
sudo parted -l
[sudo] password for clapas:
Modèle: ATA Crucial_CT240M50 (scsi)
Disque /dev/sda : 240GB
Taille des secteurs (logiques/physiques): 512B/4096B
Table de partitions : msdos
Disk Flags:
Numéro Début Fin Taille Type Système de fichiers Fanions
3 256MB 218GB 218GB primary ext4
2 218GB 240GB 21,6GB primary ext4 démarrage
Modèle: Crucial_ CT120M500SSD1 (scsi)
Disque /dev/sdb : 120GB
Taille des secteurs (logiques/physiques): 4096B/4096B
Table de partitions : gpt
Disk Flags:
Numéro Début Fin Taille Système de fichiers Nom Fanions
1 1049kB 2097kB 1049kB bios_grub
2 2097kB 120GB 120GB ext4
Dernière modification par Compte supprimé (Le 15/12/2014, à 20:39)
#3 Le 15/12/2014, à 20:36
- Compte supprimé
Re : [Résolu] Partition bios-grub non vue et démarrage impossible.
Ah ! si je veux monter sdb1
sudo mount /dev/sdb1 /mnt
mount: mauvais type de système de fichiers, option erronée, superbloc erroné
sur /dev/sdb1, page de code ou programme auxiliaire manquant, ou autre erreur
Dans certains cas des renseignements utiles sont dans le journal
système — essayez « dmesg | tail » ou quelque chose du genre.
dmesg | tail
[ 4.216901] sd 4:0:0:0: [sdb] 29305206 4096-byte logical blocks: (120 GB/111 GiB)
[ 4.217142] sd 4:0:0:0: [sdb] Write Protect is off
[ 4.217144] sd 4:0:0:0: [sdb] Mode Sense: 28 00 00 00
[ 4.217392] sd 4:0:0:0: [sdb] No Caching mode page found
[ 4.217394] sd 4:0:0:0: [sdb] Assuming drive cache: write through
[ 4.217635] sd 4:0:0:0: [sdb] 29305206 4096-byte logical blocks: (120 GB/111 GiB)
[ 4.221481] sdb: sdb1 sdb2
[ 4.221875] sd 4:0:0:0: [sdb] 29305206 4096-byte logical blocks: (120 GB/111 GiB)
[ 4.222862] sd 4:0:0:0: [sdb] Attached SCSI disk
[ 4.946282] EXT4-fs (sdb2): mounted filesystem with ordered data mode. Opts: (null)
Dernière modification par Compte supprimé (Le 15/12/2014, à 20:37)
#4 Le 15/12/2014, à 21:05
- moko138
Re : [Résolu] Partition bios-grub non vue et démarrage impossible.
Numéro Début Fin Taille Système de fichiers Nom Fanions
1 1049kB 2097kB 1049kB bios_grub
(...)
[ 4.221481] sdb: sdb1 sdb2
[ 4.221875] sd 4:0:0:0: [sdb] 29305206 4096-byte logical blocks: (120 GB/111 GiB)
[ 4.222862] sd 4:0:0:0: [sdb] Attached SCSI disk
[ 4.946282] EXT4-fs (sdb2):
J'ai l'impression, Tamarou, qu'on est dans le cas, en train de devenir classique, où les premiers secteurs gardent les infos d'un partitionnement antérieur.
Je te propose :
0 Sauvegarde des données (dans ton cas, je crois qu'il n'y en a pas).
1 Un coup de dd if=/dev/zero of=/dev/sdX bs=512 count=4096
2 gparted pour création d'une nouvelle table (gpt ou msdos : à toi de voir)
3 Suite classique : partitionnement puis installation.
%NOINDEX%
Un utilitaire précieux : ncdu
Photo, mini-tutoriel : À la découverte de dcraw
Hors ligne
#5 Le 15/12/2014, à 21:11
- Compte supprimé
Re : [Résolu] Partition bios-grub non vue et démarrage impossible.
on est dans le cas, en train de devenir classique, où les premiers secteurs gardent les infos d'un partitionnement antérieur.
Merci pour cet avis, mais que veux-tu dire ?
Il y a d'autres cas connus de ce genre ?
EDIT : voilà la capture Gparted.
Et un coup de gdisk :
gdisk /dev/sdb
GPT fdisk (gdisk) version 0.8.10
Partition table scan:
MBR: protective
BSD: not present
APM: not present
GPT: present
Found valid GPT with protective MBR; using GPT.
le détail de la partition 1 :
Command (? for help): i
Partition number (1-2): 1
Partition GUID code: 21686148-6449-6E6F-744E-656564454649 (BIOS boot partition)
Partition unique GUID: BDA74971-4D01-4E7B-8F71-461F799617BB
First sector: 256 (at 1024.0 KiB)
Last sector: 511 (at 2.0 MiB)
Partition size: 256 sectors (1024.0 KiB)
Attribute flags: 0000000000000000
Partition name: ''
Dernière modification par Compte supprimé (Le 15/12/2014, à 21:18)
#6 Le 15/12/2014, à 22:07
- Compte supprimé
Re : [Résolu] Partition bios-grub non vue et démarrage impossible.
♪♫♪♫ C'est la même chanson ♪♫♪♫
C'est fait mais cela ne débloque pas la situation.
Demain je passe à la lessive façon moko. A suivre ...
Dernière modification par Compte supprimé (Le 15/12/2014, à 22:07)
#7 Le 16/12/2014, à 06:55
- ikewdu
Re : [Résolu] Partition bios-grub non vue et démarrage impossible.
Salut
Une installation de Xubuntu en mode legacy sur un disque GPT ne démarre pas
Tout est dit ici, en fait. Je ne vois pas comment ça pourrait fonctionner. Vois ces indications :
ERROR: unsupported sector size 4096 on /dev/sdb.
=================== parted -l:
Disk /dev/sda: 240GB
Partition Table: msdos
Disk /dev/sdb: 120GB
Partition Table: gpt
Par exemple, on voit aussi ceci, qui indique que ce Xubuntu ne pourra jamais se lancer :
sdb : GPT, BIOS_boot, has-no-EFIpart, usb-disk, has-os, 2048 sectors * 512 bytes
Même boot-repair se perd dans ta config (il installe grub dans le mbr alors que le disque est gpt) :
The settings chosen by the user will reinstall the grub2 of sdb2 into the MBR of sdb.
Reinstall the GRUB of sdb2 into the MBR of sdb
Enfin, je ne suis pas sûr que deux Linux différents (32 et 64 bits) puissent bien cohabiter :
Installation pour la plate-forme i386-pc // /boot/syslinux/syslinux.cfg /boot/grub/i386-pc/core.img
boot-repair is executed in live-session (Ubuntu 14.04.1 LTS, trusty, Ubuntu, x86_64)
Bref, si tu veux, sur sdb, un xubuntu en gpt, il faut l'installer en mode uefi. La partition efi en fat32 sera créée sur ce disque, et tu auras 2 Linux complètement indépendants. L'un, sur sda, fonctionnera seul en 32 bits et legacy, l'autre sur sdb, fonctionnera seul en 64 bits et uefi.
Mais si tu veux un dual-boot, tu vas devoir convertir l'un des deux disques dans le format de l'autre, il il faudra installer selon le même "protocole".
Dernière modification par ikewdu (Le 16/12/2014, à 07:13)
Hors ligne
#8 Le 16/12/2014, à 10:50
- Compte supprimé
Re : [Résolu] Partition bios-grub non vue et démarrage impossible.
Une installation en automatique "effacer le disque et remplacer" sur un PC qui n'avait que ce disque n'a rien arrangé.
C'est toujours pareil, l'installation se passe bien et le disque ne peut pas booter.
#9 Le 16/12/2014, à 11:43
- Compte supprimé
Re : [Résolu] Partition bios-grub non vue et démarrage impossible.
Oui pas de menu grub.
Je me demande si le fait que les secteurs soient de 4096 a un impact.
Dernière modification par Compte supprimé (Le 17/12/2014, à 18:58)
#10 Le 16/12/2014, à 12:29
- moko138
Re : [Résolu] Partition bios-grub non vue et démarrage impossible.
Une installation en automatique "effacer le disque et remplacer" sur un PC qui n'avait que ce disque n'a rien arrangé.
C'est toujours pareil, l'installation se passe bien et le disque ne peut pas booter.
J'entends d'ici malbo (s'il n'était pas sorti) te demander :
- quel pc (nom complet),
- quel bios et quelles options de bios,
- un boot-info réalisé en live UEFI et avec un seul disque.
Et moi je te demande si avant cette nouvelle tentative tu avais remis les premiers secteurs à zéro, comme proposé hier soir.
%NOINDEX%
Un utilitaire précieux : ncdu
Photo, mini-tutoriel : À la découverte de dcraw
Hors ligne
#11 Le 16/12/2014, à 13:15
- Compte supprimé
Re : [Résolu] Partition bios-grub non vue et démarrage impossible.
je te demande si avant cette nouvelle tentative tu avais remis les premiers secteurs à zéro
A ce propos, il y a une chose que je ne comprends pas et qui est en rapport avec la taille des secteurs.
Tu proposes :
dd if=/dev/zero of=/dev/sdX bs=512 count=4096
Les secteurs physiques et logiques de ce disque sont de 4096, pourquoi écris-tu "bs=512" ?
La taile des blocs dans la commande dd peut-elle être différente de la taille des blocs du disque ?
Dernière modification par Compte supprimé (Le 16/12/2014, à 13:18)
#12 Le 16/12/2014, à 15:38
- moko138
Re : [Résolu] Partition bios-grub non vue et démarrage impossible.
La taille des blocs dans la commande dd peut-elle être différente de la taille des blocs du disque ?
Oui.
Cf. la Doc. bs=1 ou 511 ou 513 ou 1991 ou 3 sont possibles puisque, sauf option bs contraire, dd écrit bit à bit.
Les secteurs physiques et logiques de ce disque sont de 4096, pourquoi écris-tu "bs=512" ?
bs=2097152 count=1 ou bs=1 count=2097152 produiraient le même résultat mais en plus lent, cf. la Doc.
D'ailleurs, puisque tu n'as rien à récupérer, c'est le moment idéal de faire tes expériences !
2097152 octets suffit en général à nettoyer si on ne garde pas les mêmes frontières de partitions.
%NOINDEX%
Un utilitaire précieux : ncdu
Photo, mini-tutoriel : À la découverte de dcraw
Hors ligne
#13 Le 16/12/2014, à 17:55
- ikewdu
Re : [Résolu] Partition bios-grub non vue et démarrage impossible.
Re,
Une installation en automatique "effacer le disque et remplacer" sur un PC qui n'avait que ce disque n'a rien arrangé.
C'est toujours pareil, l'installation se passe bien et le disque ne peut pas booter.
Je t'ai donné mon opinion... fais-en ce que tu veux. Si ton pc boote en legacy (ce que j'ai la faiblesse de croire au vu du boot-info), ton installation ne fonctionnera pas tant que ton disque ne sera pas converti en ms-dos.
=================== UEFI/Legacy mode:
This live-session is not in EFI-mode.
Dernière modification par ikewdu (Le 16/12/2014, à 17:56)
Hors ligne
#14 Le 16/12/2014, à 19:08
- Compte supprimé
Re : [Résolu] Partition bios-grub non vue et démarrage impossible.
Je t'ai donné mon opinion ......
Ah mais j'avais reformaté en msdos avant l'installation pour suivre cet avis
J'ai aussi rempli le disque de vide selon les autres suggestions, l'installation suivante donne le même résultat.
Peut-être que je loupe quelque chose d'évident, ou alors le début du disque qui doit contenir le mbr n'est pas lisible.
Dernière modification par Compte supprimé (Le 16/12/2014, à 19:12)
#15 Le 16/12/2014, à 19:28
- Bougron
Re : [Résolu] Partition bios-grub non vue et démarrage impossible.
Bonjour,
Une installation de Xubuntu en mode legacy sur un disque GPT ne démarre pas.
.
Bonsoir
Inutile de chercher midi à quatorze heures
Tu veux certainement installer ubuntu 14.04 et l'installateur a de la chevrotine dans l'aile.
Ton disque est GPT donc l'installeur commence une installation EFI mais comme ton bios est legacy, C'est quasi impossible.
sdb1: __________________________________________________________________________
File system: vfat
Boot sector type: FAT32
Boot sector info: According to the info in the boot sector, sdb1 starts
at sector 2048. But according to the info from fdisk,
sdb1 starts at sector 1. According to the info in the
boot sector, sdb1 has 0 sectors.
Operating System:
Boot files:
Transformes donc ce disque en structure MSDOS avec gparted et recommences l'installation comme a dit ikewdu.
Tu devras d'abord éliminer toutes les partitions du disque
Dernière modification par Bougron (Le 16/12/2014, à 19:35)
Hors ligne
#16 Le 16/12/2014, à 20:09
- ikewdu
Re : [Résolu] Partition bios-grub non vue et démarrage impossible.
ikwendu a écrit :Je t'ai donné mon opinion ......
Ah mais j'avais reformaté en msdos avant l'installation pour suivre cet avis
J'ai aussi rempli le disque de vide selon les autres suggestions, l'installation suivante donne le même résultat.
Peut-être que je loupe quelque chose d'évident, ou alors le début du disque qui doit contenir le mbr n'est pas lisible.
Si tu veux qu'on suive, à chaque formatage, il faut refaire un boot-info. Sinon, les interventions n'ont plus aucun sens.
Hors ligne
#17 Le 16/12/2014, à 20:49
- Compte supprimé
Re : [Résolu] Partition bios-grub non vue et démarrage impossible.
Voilà le boot-info de ma dernière installation qui ne démarre pas. Merci de votre aide.
http://paste.ubuntu.com/9543417/
sda est le disque sur lequel j'ai Archlinux et mes données.
sdb est la clé usb live de Xubuntu
sdc est le disque sur lequel je voudrais installer Xubuntu (c'est fait) et le faire démarrer (il ne veut pas)
Dernière modification par Compte supprimé (Le 16/12/2014, à 20:53)
#18 Le 16/12/2014, à 20:52
- ikewdu
Re : [Résolu] Partition bios-grub non vue et démarrage impossible.
Je suis au regret de te le dire, mais ton disque sdb est au format gpt (moi, je ne comprends pas pourquoi):
WARNING: GPT (GUID Partition Table) detected on '/dev/sdb'! The util fdisk doesn't support GPT. Use GNU Parted.
Ceci est aussi très étrange :
/dev/sdb1 iso9660 Xubuntu 14.04.1 LTS amd64
Et pour sdc, on lit ceci :
ERROR: unsupported sector size 4096 on /dev/sdc.
ERROR: unsupported sector size 4096 on /dev/sdc.
cat: write error: Broken pipe
cat: write error: Broken pipe
File descriptor 9 (/proc/7035/mounts) leaked on lvs invocation. Parent PID 16637: bash
File descriptor 63 (pipe:[50586]) leaked on lvs invocation. Parent PID 16637: bash
Le passage en ms-dos n'a pas corrigé l'erreur précédente.
Dernière modification par ikewdu (Le 16/12/2014, à 21:00)
Hors ligne
#19 Le 16/12/2014, à 20:58
- Compte supprimé
Re : [Résolu] Partition bios-grub non vue et démarrage impossible.
Oui, mais il me semble que sdb est la clé live qui me sert au boot-info.
Quand aux secteurs de sdc, je me doute depuis un moment que cela contribue au problème. Mais je ne sais pas l'expliquer.
Dernière modification par Compte supprimé (Le 16/12/2014, à 21:01)
#20 Le 16/12/2014, à 21:01
- ikewdu
Re : [Résolu] Partition bios-grub non vue et démarrage impossible.
Ok, mais pourquoi cette clé est-elle en gpt ? Ca n'a pas de sens. En outre, tu continues à vouloir faire cohabiter un Linux 32 bits avec un Linux 64 bits.
sda2: __________________________________________________________________________
/boot/syslinux/syslinux.cfg /boot/grub/i386-pc/core.img
et
/dev/sdb1 iso9660 Xubuntu 14.04.1 LTS amd64
Dernière modification par ikewdu (Le 16/12/2014, à 21:05)
Hors ligne
#21 Le 16/12/2014, à 21:21
- Compte supprimé
Re : [Résolu] Partition bios-grub non vue et démarrage impossible.
Pour moi sda est en 64 bits.
uname -a
Linux ds81 3.17.6-1-ARCH #1 SMP PREEMPT Sun Dec 7 23:43:32 UTC 2014 x86_64 GNU/Linux
Ok, mais pourquoi cette clé est-elle en gpt ? Ca n'a pas de sens.
N'est-ce pas indispensable sur une live usb pour qu'elle puisse aussi démarrer en UEFI ?
Dernière modification par Compte supprimé (Le 16/12/2014, à 21:23)
#22 Le 16/12/2014, à 21:31
- Compte supprimé
Re : [Résolu] Partition bios-grub non vue et démarrage impossible.
C'est comme les fois précédentes :
GRUB s'installe bien
je réactualise le GRUB de l'OS actif et je redémarre en choisissant le ligne du second disque.
Les messages d'erreur sont les mêmes.
erreur : no such device ...
erreur : hd1 cannot get C∕H∕S values
erreur : le noyau doit d'abord être chargé.
Dernière modification par Compte supprimé (Le 16/12/2014, à 21:34)
#23 Le 16/12/2014, à 22:11
- moko138
Re : [Résolu] Partition bios-grub non vue et démarrage impossible.
sda est le disque sur lequel j'ai Archlinux et mes données.
sdb est la clé usb live de Xubuntu
sdc est le disque sur lequel je voudrais installer Xubuntu (c'est fait) et le faire démarrer (il ne veut pas)
Voici le dernier boot-info (20h49) dans son intégralité :
Boot Info Script e7fc706 + Boot-Repair extra info [Boot-Info 23Nov2014]
============================= Boot Info Summary: ===============================
=> Grub2 (v2.00) is installed in the MBR of /dev/sda and looks at sector 1 of
the same hard drive for core.img. core.img is at this location and looks
for (,msdos2)/boot/grub.
=> No known boot loader is installed in the MBR of /dev/sdb.
=> Grub2 (v2.00) is installed in the MBR of /dev/sdc and looks at sector 1 of
the same hard drive for core.img. core.img is at this location and looks
for /boot/grub and uses an embedded config file:
---------------------------------------------------------------------------
search.fs_uuid fbbef372-a470-4451-8867-1ea103220d41 root hd1,msdos2
set prefix=($root)'/boot/grub'
---------------------------------------------------------------------------
sda2: __________________________________________________________________________
File system: ext4
Boot sector type: -
Boot sector info:
Operating System: Arch Linux ()
Boot files: /boot/grub/grub.cfg /etc/fstab
/boot/syslinux/syslinux.cfg /boot/grub/i386-pc/core.img
sda3: __________________________________________________________________________
File system: ext4
Boot sector type: -
Boot sector info:
Operating System:
Boot files:
sdb1: __________________________________________________________________________
File system: iso9660
Boot sector type: Unknown
Boot sector info:
Mounting failed: mount: /dev/sdb1 already mounted or /mnt/BootInfo/sdb1 busy
sdb2: __________________________________________________________________________
File system: vfat
Boot sector type: FAT16
Boot sector info: According to the info in the boot sector, sdb2 starts
at sector 0. But according to the info from fdisk,
sdb2 starts at sector 14296. According to the info in
the boot sector, sdb2 has 0 sectors.
Mounting failed: mount: /dev/sdb1 already mounted or /mnt/BootInfo/sdb1 busy
mount: /dev/sdb2 already mounted or /mnt/BootInfo/sdb2 busy
sdc1: __________________________________________________________________________
File system: ext4
Boot sector type: -
Boot sector info:
Operating System: Ubuntu 14.04.1 LTS
Boot files: /boot/grub/grub.cfg /etc/fstab
/boot/grub/i386-pc/core.img
============================ Drive/Partition Info: =============================
Drive: sda _____________________________________________________________________
Disk /dev/sda: 240.1 GB, 240057409536 bytes
255 heads, 63 sectors/track, 29185 cylinders, total 468862128 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
Partition Boot Start Sector End Sector # of Sectors Id System
/dev/sda2 * 426,708,992 468,860,927 42,151,936 83 Linux
/dev/sda3 499,712 426,708,991 426,209,280 83 Linux
Drive: sdb _____________________________________________________________________
Disk /dev/sdb: 4009 MB, 4009754624 bytes
255 heads, 63 sectors/track, 487 cylinders, total 7831552 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
Partition Boot Start Sector End Sector # of Sectors Id System
/dev/sdb1 * 0 1,904,639 1,904,640 0 Empty
/dev/sdb2 14,296 18,967 4,672 ef EFI (FAT-12/16/32)
/dev/sdb1 overlaps with /dev/sdb2
GUID Partition Table detected, but does not seem to be used.
Partition Start Sector End Sector # of Sectors System
/dev/sdb1 0 1,904,583 1,904,584 Data partition (Windows/Linux)
/dev/sdb2 14,296 18,967 4,672 Data partition (Windows/Linux)
Drive: sdc _____________________________________________________________________
Note: sector size is 4096 (not 512)
Disk /dev/sdc: 120.0 GB, 120034123776 bytes
255 heads, 63 sectors/track, 1824 cylinders, total 29305206 sectors
Units = sectors of 1 * 4096 = 4096 bytes
Partition Boot Start Sector End Sector # of Sectors Id System
/dev/sdc1 * 256 29,305,087 29,304,832 83 Linux
"blkid" output: ________________________________________________________________
Device UUID TYPE LABEL
/dev/loop0 squashfs
/dev/sda2 c57721b9-d7e2-4717-84d5-6ffbdf3580f4 ext4
/dev/sda3 402ffb84-4bc0-455b-b5b5-06001a3a1a8c ext4 donnees
/dev/sdb1 iso9660 Xubuntu 14.04.1 LTS amd64
/dev/sdb2 E63C-163E vfat
/dev/sdc1 cc626a35-0082-4fa7-80bd-894a9b3b6a74 ext4
========================= "ls -l /dev/disk/by-id" output: ======================
total 0
lrwxrwxrwx 1 root root 9 Dec 16 19:48 ata-Crucial_CT240M500SSD3_14270C8DF513 -> ../../sda
lrwxrwxrwx 1 root root 10 Dec 16 19:44 ata-Crucial_CT240M500SSD3_14270C8DF513-part2 -> ../../sda2
lrwxrwxrwx 1 root root 10 Dec 16 19:44 ata-Crucial_CT240M500SSD3_14270C8DF513-part3 -> ../../sda3
lrwxrwxrwx 1 root root 9 Dec 16 19:48 ata-_M005S0DS_1 -> ../../sdc
lrwxrwxrwx 1 root root 10 Dec 16 19:44 usb-Crucial__CT120M500SSD1_000000001322-0:0-part1 -> ../../sdc1
lrwxrwxrwx 1 root root 9 Dec 16 19:44 usb-Generic_STORAGE_DEVICE-0:0 -> ../../sdd
lrwxrwxrwx 1 root root 9 Dec 16 19:48 usb-_Patriot_Memory_078816A13FA2-0:0 -> ../../sdb
lrwxrwxrwx 1 root root 10 Dec 16 19:44 usb-_Patriot_Memory_078816A13FA2-0:0-part1 -> ../../sdb1
lrwxrwxrwx 1 root root 10 Dec 16 19:44 usb-_Patriot_Memory_078816A13FA2-0:0-part2 -> ../../sdb2
lrwxrwxrwx 1 root root 9 Dec 16 19:48 wwn-0x500a07510c8df513 -> ../../sda
lrwxrwxrwx 1 root root 10 Dec 16 19:44 wwn-0x500a07510c8df513-part2 -> ../../sda2
lrwxrwxrwx 1 root root 10 Dec 16 19:44 wwn-0x500a07510c8df513-part3 -> ../../sda3
================================ Mount points: =================================
Device Mount_Point Type Options
/dev/loop0 /rofs squashfs (ro,noatime)
/dev/sdb /cdrom iso9660 (ro,noatime)
=========================== sda2/boot/grub/grub.cfg: ===========================
--------------------------------------------------------------------------------
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#
### BEGIN /etc/grub.d/00_header ###
insmod part_gpt
insmod part_msdos
if [ -s $prefix/grubenv ]; then
load_env
fi
if [ "${next_entry}" ] ; then
set default="${next_entry}"
set next_entry=
save_env next_entry
set boot_once=true
else
set default="0"
fi
if [ x"${feature_menuentry_id}" = xy ]; then
menuentry_id_option="--id"
else
menuentry_id_option=""
fi
export menuentry_id_option
if [ "${prev_saved_entry}" ]; then
set saved_entry="${prev_saved_entry}"
save_env saved_entry
set prev_saved_entry=
save_env prev_saved_entry
set boot_once=true
fi
function savedefault {
if [ -z "${boot_once}" ]; then
saved_entry="${chosen}"
save_env saved_entry
fi
}
function load_video {
if [ x$feature_all_video_module = xy ]; then
insmod all_video
else
insmod efi_gop
insmod efi_uga
insmod ieee1275_fb
insmod vbe
insmod vga
insmod video_bochs
insmod video_cirrus
fi
}
if [ x$feature_default_font_path = xy ] ; then
font=unicode
else
insmod part_msdos
insmod ext2
set root='hd0,msdos2'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2 c57721b9-d7e2-4717-84d5-6ffbdf3580f4
else
search --no-floppy --fs-uuid --set=root c57721b9-d7e2-4717-84d5-6ffbdf3580f4
fi
font="/usr/share/grub/unicode.pf2"
fi
if loadfont $font ; then
set gfxmode=auto
load_video
insmod gfxterm
set locale_dir=$prefix/locale
set lang=fr_FR
insmod gettext
fi
terminal_input console
terminal_output gfxterm
insmod part_msdos
insmod ext2
set root='hd0,msdos2'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2 c57721b9-d7e2-4717-84d5-6ffbdf3580f4
else
search --no-floppy --fs-uuid --set=root c57721b9-d7e2-4717-84d5-6ffbdf3580f4
fi
insmod gfxmenu
loadfont ($root)/boot/grub/themes/Antergos-Default/ascii.pf2
loadfont ($root)/boot/grub/themes/Antergos-Default/rlwy14.pf2
loadfont ($root)/boot/grub/themes/Antergos-Default/rlwy16.pf2
insmod png
set theme=($root)/boot/grub/themes/Antergos-Default/theme.txt
export theme
if [ x$feature_timeout_style = xy ] ; then
set timeout_style=menu
set timeout=3
# Fallback normal timeout code in case the timeout_style feature is
# unavailable.
else
set timeout=3
fi
### END /etc/grub.d/00_header ###
### BEGIN /etc/grub.d/10_antergos ###
menuentry 'Antergos Linux' --class antergos --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-c57721b9-d7e2-4717-84d5-6ffbdf3580f4' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_msdos
insmod ext2
set root='hd0,msdos2'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2 c57721b9-d7e2-4717-84d5-6ffbdf3580f4
else
search --no-floppy --fs-uuid --set=root c57721b9-d7e2-4717-84d5-6ffbdf3580f4
fi
echo 'Loading linux kernel ...'
linux /boot/vmlinuz-linux root=UUID=c57721b9-d7e2-4717-84d5-6ffbdf3580f4 rw quiet
echo 'Chargement du disque mémoire initial…'
initrd /boot/initramfs-linux.img
}
submenu 'Options avancées pour Antergos Linux' $menuentry_id_option 'gnulinux-advanced-c57721b9-d7e2-4717-84d5-6ffbdf3580f4' {
menuentry 'Antergos Linux - Fallback' --class antergos --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-c57721b9-d7e2-4717-84d5-6ffbdf3580f4' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_msdos
insmod ext2
set root='hd0,msdos2'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2 c57721b9-d7e2-4717-84d5-6ffbdf3580f4
else
search --no-floppy --fs-uuid --set=root c57721b9-d7e2-4717-84d5-6ffbdf3580f4
fi
echo 'Loading linux kernel ...'
linux /boot/vmlinuz-linux root=UUID=c57721b9-d7e2-4717-84d5-6ffbdf3580f4 rw quiet
echo 'Chargement du disque mémoire initial…'
initrd /boot/initramfs-linux-fallback.img
}
}
### END /etc/grub.d/10_antergos ###
### BEGIN /etc/grub.d/20_linux_xen ###
### END /etc/grub.d/20_linux_xen ###
### BEGIN /etc/grub.d/30_os-prober ###
menuentry 'Ubuntu 14.04.1 LTS (14.04) (sur /dev/sdb1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-08dc97ec-9c12-4d53-806e-8e4f25b97229' {
insmod part_msdos
insmod ext2
set root='hd1,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 08dc97ec-9c12-4d53-806e-8e4f25b97229
else
search --no-floppy --fs-uuid --set=root 08dc97ec-9c12-4d53-806e-8e4f25b97229
fi
linux /boot/vmlinuz-3.13.0-32-generic root=UUID=08dc97ec-9c12-4d53-806e-8e4f25b97229 ro quiet splash $vt_handoff
initrd /boot/initrd.img-3.13.0-32-generic
}
submenu 'Options avancées pour Ubuntu 14.04.1 LTS (14.04) (sur /dev/sdb1)' $menuentry_id_option 'osprober-gnulinux-advanced-08dc97ec-9c12-4d53-806e-8e4f25b97229' {
menuentry 'Ubuntu (sur /dev/sdb1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.13.0-32-generic--08dc97ec-9c12-4d53-806e-8e4f25b97229' {
insmod part_msdos
insmod ext2
set root='hd1,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 08dc97ec-9c12-4d53-806e-8e4f25b97229
else
search --no-floppy --fs-uuid --set=root 08dc97ec-9c12-4d53-806e-8e4f25b97229
fi
linux /boot/vmlinuz-3.13.0-32-generic root=UUID=08dc97ec-9c12-4d53-806e-8e4f25b97229 ro quiet splash $vt_handoff
initrd /boot/initrd.img-3.13.0-32-generic
}
menuentry 'Ubuntu, avec Linux 3.13.0-32-generic (sur /dev/sdb1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.13.0-32-generic--08dc97ec-9c12-4d53-806e-8e4f25b97229' {
insmod part_msdos
insmod ext2
set root='hd1,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 08dc97ec-9c12-4d53-806e-8e4f25b97229
else
search --no-floppy --fs-uuid --set=root 08dc97ec-9c12-4d53-806e-8e4f25b97229
fi
linux /boot/vmlinuz-3.13.0-32-generic root=UUID=08dc97ec-9c12-4d53-806e-8e4f25b97229 ro quiet splash $vt_handoff
initrd /boot/initrd.img-3.13.0-32-generic
}
menuentry 'Ubuntu, with Linux 3.13.0-32-generic (recovery mode) (sur /dev/sdb1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.13.0-32-generic--08dc97ec-9c12-4d53-806e-8e4f25b97229' {
insmod part_msdos
insmod ext2
set root='hd1,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 08dc97ec-9c12-4d53-806e-8e4f25b97229
else
search --no-floppy --fs-uuid --set=root 08dc97ec-9c12-4d53-806e-8e4f25b97229
fi
linux /boot/vmlinuz-3.13.0-32-generic root=UUID=08dc97ec-9c12-4d53-806e-8e4f25b97229 ro recovery nomodeset
initrd /boot/initrd.img-3.13.0-32-generic
}
}
### 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 ###
### BEGIN /etc/grub.d/41_custom ###
if [ -f ${config_directory}/custom.cfg ]; then
source ${config_directory}/custom.cfg
elif [ -z "${config_directory}" -a -f $prefix/custom.cfg ]; then
source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###
### BEGIN /etc/grub.d/60_memtest86+ ###
### END /etc/grub.d/60_memtest86+ ###
--------------------------------------------------------------------------------
=============================== sda2/etc/fstab: ================================
--------------------------------------------------------------------------------
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point> <type> <options> <dump> <pass>
#
UUID=c57721b9-d7e2-4717-84d5-6ffbdf3580f4 / ext4 rw,defaults,noatime,discard 0 1
UUID=402ffb84-4bc0-455b-b5b5-06001a3a1a8c /home/clapas/donnees ext4 rw,defaults,noatime,discard 0 0
tmpfs /tmp tmpfs defaults,noatime,mode=1777 0 0
--------------------------------------------------------------------------------
======================= sda2/boot/syslinux/syslinux.cfg: =======================
--------------------------------------------------------------------------------
# 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/sda3 rw
INITRD ../initramfs-linux.img
LABEL archfallback
MENU LABEL Arch Linux Fallback
LINUX ../vmlinuz-linux
APPEND root=/dev/sda3 rw
INITRD ../initramfs-linux-fallback.img
#LABEL windows
# MENU LABEL Windows
# COM32 chain.c32
# APPEND hd0 1
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
--------------------------------------------------------------------------------
=========================== sdc1/boot/grub/grub.cfg: ===========================
--------------------------------------------------------------------------------
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#
### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
set have_grubenv=true
load_env
fi
if [ "${next_entry}" ] ; then
set default="${next_entry}"
set next_entry=
save_env next_entry
set boot_once=true
else
set default="0"
fi
if [ x"${feature_menuentry_id}" = xy ]; then
menuentry_id_option="--id"
else
menuentry_id_option=""
fi
export menuentry_id_option
if [ "${prev_saved_entry}" ]; then
set saved_entry="${prev_saved_entry}"
save_env saved_entry
set prev_saved_entry=
save_env prev_saved_entry
set boot_once=true
fi
function savedefault {
if [ -z "${boot_once}" ]; then
saved_entry="${chosen}"
save_env saved_entry
fi
}
function recordfail {
set recordfail=1
if [ -n "${have_grubenv}" ]; then if [ -z "${boot_once}" ]; then save_env recordfail; fi; fi
}
function load_video {
if [ x$feature_all_video_module = xy ]; then
insmod all_video
else
insmod efi_gop
insmod efi_uga
insmod ieee1275_fb
insmod vbe
insmod vga
insmod video_bochs
insmod video_cirrus
fi
}
if [ x$feature_default_font_path = xy ] ; then
font=unicode
else
insmod part_msdos
insmod ext2
set root='hd2,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd2,msdos1 --hint-efi=hd2,msdos1 --hint-baremetal=ahci2,msdos1 cc626a35-0082-4fa7-80bd-894a9b3b6a74
else
search --no-floppy --fs-uuid --set=root cc626a35-0082-4fa7-80bd-894a9b3b6a74
fi
font="/usr/share/grub/unicode.pf2"
fi
if loadfont $font ; then
set gfxmode=auto
load_video
insmod gfxterm
set locale_dir=$prefix/locale
set lang=fr_FR
insmod gettext
fi
terminal_output gfxterm
if [ "${recordfail}" = 1 ] ; then
set timeout=-1
else
if [ x$feature_timeout_style = xy ] ; then
set timeout_style=menu
set timeout=10
# Fallback normal timeout code in case the timeout_style feature is
# unavailable.
else
set timeout=10
fi
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/light-gray
### END /etc/grub.d/05_debian_theme ###
### BEGIN /etc/grub.d/10_linux ###
function gfxmode {
set gfxpayload="${1}"
if [ "${1}" = "keep" ]; then
set vt_handoff=vt.handoff=7
else
set vt_handoff=
fi
}
if [ "${recordfail}" != 1 ]; then
if [ -e ${prefix}/gfxblacklist.txt ]; then
if hwmatch ${prefix}/gfxblacklist.txt 3; then
if [ ${match} = 0 ]; then
set linux_gfx_mode=keep
else
set linux_gfx_mode=text
fi
else
set linux_gfx_mode=text
fi
else
set linux_gfx_mode=keep
fi
else
set linux_gfx_mode=text
fi
export linux_gfx_mode
menuentry 'Ubuntu' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-cc626a35-0082-4fa7-80bd-894a9b3b6a74' {
recordfail
load_video
gfxmode $linux_gfx_mode
insmod gzio
insmod part_msdos
insmod ext2
set root='hd2,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd2,msdos1 --hint-efi=hd2,msdos1 --hint-baremetal=ahci2,msdos1 cc626a35-0082-4fa7-80bd-894a9b3b6a74
else
search --no-floppy --fs-uuid --set=root cc626a35-0082-4fa7-80bd-894a9b3b6a74
fi
linux /boot/vmlinuz-3.13.0-32-generic root=UUID=cc626a35-0082-4fa7-80bd-894a9b3b6a74 ro quiet splash $vt_handoff
initrd /boot/initrd.img-3.13.0-32-generic
}
submenu 'Options avancées pour Ubuntu' $menuentry_id_option 'gnulinux-advanced-cc626a35-0082-4fa7-80bd-894a9b3b6a74' {
menuentry 'Ubuntu, avec Linux 3.13.0-32-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-32-generic-advanced-cc626a35-0082-4fa7-80bd-894a9b3b6a74' {
recordfail
load_video
gfxmode $linux_gfx_mode
insmod gzio
insmod part_msdos
insmod ext2
set root='hd2,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd2,msdos1 --hint-efi=hd2,msdos1 --hint-baremetal=ahci2,msdos1 cc626a35-0082-4fa7-80bd-894a9b3b6a74
else
search --no-floppy --fs-uuid --set=root cc626a35-0082-4fa7-80bd-894a9b3b6a74
fi
echo 'Chargement de Linux 3.13.0-32-generic…'
linux /boot/vmlinuz-3.13.0-32-generic root=UUID=cc626a35-0082-4fa7-80bd-894a9b3b6a74 ro quiet splash $vt_handoff
echo 'Chargement du disque mémoire initial…'
initrd /boot/initrd.img-3.13.0-32-generic
}
menuentry 'Ubuntu, with Linux 3.13.0-32-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-32-generic-recovery-cc626a35-0082-4fa7-80bd-894a9b3b6a74' {
recordfail
load_video
insmod gzio
insmod part_msdos
insmod ext2
set root='hd2,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd2,msdos1 --hint-efi=hd2,msdos1 --hint-baremetal=ahci2,msdos1 cc626a35-0082-4fa7-80bd-894a9b3b6a74
else
search --no-floppy --fs-uuid --set=root cc626a35-0082-4fa7-80bd-894a9b3b6a74
fi
echo 'Chargement de Linux 3.13.0-32-generic…'
linux /boot/vmlinuz-3.13.0-32-generic root=UUID=cc626a35-0082-4fa7-80bd-894a9b3b6a74 ro recovery nomodeset
echo 'Chargement du disque mémoire initial…'
initrd /boot/initrd.img-3.13.0-32-generic
}
}
### END /etc/grub.d/10_linux ###
### BEGIN /etc/grub.d/20_linux_xen ###
### END /etc/grub.d/20_linux_xen ###
### BEGIN /etc/grub.d/20_memtest86+ ###
menuentry 'Memory test (memtest86+)' {
insmod part_msdos
insmod ext2
set root='hd2,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd2,msdos1 --hint-efi=hd2,msdos1 --hint-baremetal=ahci2,msdos1 cc626a35-0082-4fa7-80bd-894a9b3b6a74
else
search --no-floppy --fs-uuid --set=root cc626a35-0082-4fa7-80bd-894a9b3b6a74
fi
knetbsd /boot/memtest86+.elf
}
menuentry 'Memory test (memtest86+, serial console 115200)' {
insmod part_msdos
insmod ext2
set root='hd2,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd2,msdos1 --hint-efi=hd2,msdos1 --hint-baremetal=ahci2,msdos1 cc626a35-0082-4fa7-80bd-894a9b3b6a74
else
search --no-floppy --fs-uuid --set=root cc626a35-0082-4fa7-80bd-894a9b3b6a74
fi
linux16 /boot/memtest86+.bin console=ttyS0,115200n8
}
### END /etc/grub.d/20_memtest86+ ###
### BEGIN /etc/grub.d/30_os-prober ###
menuentry 'Antergos Linux rolling 2014.07-ISO (sur /dev/sda2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-c57721b9-d7e2-4717-84d5-6ffbdf3580f4' {
insmod part_msdos
insmod ext2
set root='hd0,msdos2'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2 c57721b9-d7e2-4717-84d5-6ffbdf3580f4
else
search --no-floppy --fs-uuid --set=root c57721b9-d7e2-4717-84d5-6ffbdf3580f4
fi
linux /boot/vmlinuz-linux root=UUID=c57721b9-d7e2-4717-84d5-6ffbdf3580f4 rw quiet
initrd /boot/initramfs-linux.img
}
submenu 'Options avancées pour Antergos Linux rolling 2014.07-ISO (sur /dev/sda2)' $menuentry_id_option 'osprober-gnulinux-advanced-c57721b9-d7e2-4717-84d5-6ffbdf3580f4' {
menuentry 'Antergos Linux (sur /dev/sda2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-linux--c57721b9-d7e2-4717-84d5-6ffbdf3580f4' {
insmod part_msdos
insmod ext2
set root='hd0,msdos2'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2 c57721b9-d7e2-4717-84d5-6ffbdf3580f4
else
search --no-floppy --fs-uuid --set=root c57721b9-d7e2-4717-84d5-6ffbdf3580f4
fi
linux /boot/vmlinuz-linux root=UUID=c57721b9-d7e2-4717-84d5-6ffbdf3580f4 rw quiet
initrd /boot/initramfs-linux.img
}
menuentry 'Antergos Linux - Fallback (sur /dev/sda2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-linux--c57721b9-d7e2-4717-84d5-6ffbdf3580f4' {
insmod part_msdos
insmod ext2
set root='hd0,msdos2'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2 c57721b9-d7e2-4717-84d5-6ffbdf3580f4
else
search --no-floppy --fs-uuid --set=root c57721b9-d7e2-4717-84d5-6ffbdf3580f4
fi
linux /boot/vmlinuz-linux root=UUID=c57721b9-d7e2-4717-84d5-6ffbdf3580f4 rw quiet
initrd /boot/initramfs-linux-fallback.img
}
}
set timeout_style=menu
if [ "${timeout}" = 0 ]; then
set timeout=10
fi
### END /etc/grub.d/30_os-prober ###
### BEGIN /etc/grub.d/30_uefi-firmware ###
### END /etc/grub.d/30_uefi-firmware ###
### 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 ###
### BEGIN /etc/grub.d/41_custom ###
if [ -f ${config_directory}/custom.cfg ]; then
source ${config_directory}/custom.cfg
elif [ -z "${config_directory}" -a -f $prefix/custom.cfg ]; then
source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###
--------------------------------------------------------------------------------
=============================== sdc1/etc/fstab: ================================
--------------------------------------------------------------------------------
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point> <type> <options> <dump> <pass>
# / was on /dev/sdc1 during installation
UUID=cc626a35-0082-4fa7-80bd-894a9b3b6a74 / ext4 errors=remount-ro 0 1
--------------------------------------------------------------------------------
======================== Unknown MBRs/Boot Sectors/etc: ========================
Unknown MBR on /dev/sdb
00000000 45 52 08 00 00 00 90 90 00 00 00 00 00 00 00 00 |ER..............|
00000010 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
00000020 33 ed fa 8e d5 bc 00 7c fb fc 66 31 db 66 31 c9 |3......|..f1.f1.|
00000030 66 53 66 51 06 57 8e dd 8e c5 52 be 00 7c bf 00 |fSfQ.W....R..|..|
00000040 06 b9 00 01 f3 a5 ea 4b 06 00 00 52 b4 41 bb aa |.......K...R.A..|
00000050 55 31 c9 30 f6 f9 cd 13 72 16 81 fb 55 aa 75 10 |U1.0....r...U.u.|
00000060 83 e1 01 74 0b 66 c7 06 f1 06 b4 42 eb 15 eb 00 |...t.f.....B....|
00000070 5a 51 b4 08 cd 13 83 e1 3f 5b 51 0f b6 c6 40 50 |ZQ......?[Q...@P|
00000080 f7 e1 53 52 50 bb 00 7c b9 04 00 66 a1 b0 07 e8 |..SRP..|...f....|
00000090 44 00 0f 82 80 00 66 40 80 c7 02 e2 f2 66 81 3e |D.....f@.....f.>|
000000a0 40 7c fb c0 78 70 75 09 fa bc ec 7b ea 44 7c 00 |@|..xpu....{.D|.|
000000b0 00 e8 83 00 69 73 6f 6c 69 6e 75 78 2e 62 69 6e |....isolinux.bin|
000000c0 20 6d 69 73 73 69 6e 67 20 6f 72 20 63 6f 72 72 | missing or corr|
000000d0 75 70 74 2e 0d 0a 66 60 66 31 d2 66 03 06 f8 7b |upt...f`f1.f...{|
000000e0 66 13 16 fc 7b 66 52 66 50 06 53 6a 01 6a 10 89 |f...{fRfP.Sj.j..|
000000f0 e6 66 f7 36 e8 7b c0 e4 06 88 e1 88 c5 92 f6 36 |.f.6.{.........6|
00000100 ee 7b 88 c6 08 e1 41 b8 01 02 8a 16 f2 7b cd 13 |.{....A......{..|
00000110 8d 64 10 66 61 c3 e8 1e 00 4f 70 65 72 61 74 69 |.d.fa....Operati|
00000120 6e 67 20 73 79 73 74 65 6d 20 6c 6f 61 64 20 65 |ng system load e|
00000130 72 72 6f 72 2e 0d 0a 5e ac b4 0e 8a 3e 62 04 b3 |rror...^....>b..|
00000140 07 cd 10 3c 0a 75 f1 cd 18 f4 eb fd 00 00 00 00 |...<.u..........|
00000150 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
00000160 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
00000170 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
00000180 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
00000190 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
000001a0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
000001b0 e4 1c 00 00 00 00 00 00 e1 bb fa 19 00 00 80 00 |................|
000001c0 01 00 00 3f e0 a1 00 00 00 00 00 10 1d 00 00 fe |...?............|
000001d0 ff ff ef fe ff ff d8 37 00 00 40 12 00 00 00 00 |.......7..@.....|
000001e0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
000001f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 55 aa |..............U.|
00000200
Unknown BootLoader on sdb1
00000000 45 52 08 00 00 00 90 90 00 00 00 00 00 00 00 00 |ER..............|
00000010 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
00000020 33 ed fa 8e d5 bc 00 7c fb fc 66 31 db 66 31 c9 |3......|..f1.f1.|
00000030 66 53 66 51 06 57 8e dd 8e c5 52 be 00 7c bf 00 |fSfQ.W....R..|..|
00000040 06 b9 00 01 f3 a5 ea 4b 06 00 00 52 b4 41 bb aa |.......K...R.A..|
00000050 55 31 c9 30 f6 f9 cd 13 72 16 81 fb 55 aa 75 10 |U1.0....r...U.u.|
00000060 83 e1 01 74 0b 66 c7 06 f1 06 b4 42 eb 15 eb 00 |...t.f.....B....|
00000070 5a 51 b4 08 cd 13 83 e1 3f 5b 51 0f b6 c6 40 50 |ZQ......?[Q...@P|
00000080 f7 e1 53 52 50 bb 00 7c b9 04 00 66 a1 b0 07 e8 |..SRP..|...f....|
00000090 44 00 0f 82 80 00 66 40 80 c7 02 e2 f2 66 81 3e |D.....f@.....f.>|
000000a0 40 7c fb c0 78 70 75 09 fa bc ec 7b ea 44 7c 00 |@|..xpu....{.D|.|
000000b0 00 e8 83 00 69 73 6f 6c 69 6e 75 78 2e 62 69 6e |....isolinux.bin|
000000c0 20 6d 69 73 73 69 6e 67 20 6f 72 20 63 6f 72 72 | missing or corr|
000000d0 75 70 74 2e 0d 0a 66 60 66 31 d2 66 03 06 f8 7b |upt...f`f1.f...{|
000000e0 66 13 16 fc 7b 66 52 66 50 06 53 6a 01 6a 10 89 |f...{fRfP.Sj.j..|
000000f0 e6 66 f7 36 e8 7b c0 e4 06 88 e1 88 c5 92 f6 36 |.f.6.{.........6|
00000100 ee 7b 88 c6 08 e1 41 b8 01 02 8a 16 f2 7b cd 13 |.{....A......{..|
00000110 8d 64 10 66 61 c3 e8 1e 00 4f 70 65 72 61 74 69 |.d.fa....Operati|
00000120 6e 67 20 73 79 73 74 65 6d 20 6c 6f 61 64 20 65 |ng system load e|
00000130 72 72 6f 72 2e 0d 0a 5e ac b4 0e 8a 3e 62 04 b3 |rror...^....>b..|
00000140 07 cd 10 3c 0a 75 f1 cd 18 f4 eb fd 00 00 00 00 |...<.u..........|
00000150 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
*
000001b0 e4 1c 00 00 00 00 00 00 e1 bb fa 19 00 00 80 00 |................|
000001c0 01 00 00 3f e0 a1 00 00 00 00 00 10 1d 00 00 fe |...?............|
000001d0 ff ff ef fe ff ff d8 37 00 00 40 12 00 00 00 00 |.......7..@.....|
000001e0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
000001f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 55 aa |..............U.|
00000200
========= Devices which don't seem to have a corresponding hard drive: =========
sdd
=============================== StdErr Messages: ===============================
ERROR: unsupported sector size 4096 on /dev/sdc.
ERROR: unsupported sector size 4096 on /dev/sdc.
cat: write error: Broken pipe
cat: write error: Broken pipe
File descriptor 9 (/proc/7035/mounts) leaked on lvs invocation. Parent PID 16637: bash
File descriptor 63 (pipe:[50586]) leaked on lvs invocation. Parent PID 16637: bash
No volume groups found
ADDITIONAL INFORMATION :
=================== log of boot-repair 2014-12-16__19h46 ===================
boot-repair version : 4ppa23
boot-sav version : 4ppa23
glade2script version : 3.2.2~ppa47~saucy
boot-sav-extra version : 4ppa23
ERROR: unsupported sector size 4096 on /dev/sdc.
ERROR: unsupported sector size 4096 on /dev/sdc.
ERROR: unsupported sector size 4096 on /dev/sdc.
ERROR: unsupported sector size 4096 on /dev/sdc.
ERROR: unsupported sector size 4096 on /dev/sdc.
grub-probe : erreur : impossible de trouver un périphérique GRUB pour /dev/sdb1. Vérifiez device.map..
boot-repair is executed in live-session (Ubuntu 14.04.1 LTS, trusty, Ubuntu, x86_64)
CPU op-mode(s): 32-bit, 64-bit
file=/cdrom/preseed/xubuntu.seed boot=casper initrd=/casper/initrd.lz quiet splash -- maybe-ubiquity
ls: impossible d'accéder à /home/usr/.config: Aucun fichier ou dossier de ce type
mount : /dev/sdb2 est déjà monté ou /mnt/boot-sav/sdb2 est occupé
mount /dev/sdb2 : Error code 32
mount -r /dev/sdb2 /mnt/boot-sav/sdb2
mount : /dev/sdb2 est déjà monté ou /mnt/boot-sav/sdb2 est occupé
mount -r /dev/sdb2 : Error code 32
WARNING: GPT (GUID Partition Table) detected on '/dev/sdb'! The util fdisk doesn't support GPT. Use GNU Parted.
WARNING: GPT (GUID Partition Table) detected on '/dev/sdb1'! The util fdisk doesn't support GPT. Use GNU Parted.
=================== os-prober:
/dev/sda2:Antergos Linux rolling 2014.07-ISO:Arch:linux
/dev/sdc1:Ubuntu 14.04.1 LTS (14.04):Ubuntu:linux
=================== blkid:
/dev/loop0: TYPE="squashfs"
/dev/sda2: UUID="c57721b9-d7e2-4717-84d5-6ffbdf3580f4" TYPE="ext4"
/dev/sda3: LABEL="donnees" UUID="402ffb84-4bc0-455b-b5b5-06001a3a1a8c" TYPE="ext4"
/dev/sdb1: LABEL="Xubuntu 14.04.1 LTS amd64" TYPE="iso9660"
/dev/sdb2: SEC_TYPE="msdos" UUID="E63C-163E" TYPE="vfat"
/dev/sdc1: UUID="cc626a35-0082-4fa7-80bd-894a9b3b6a74" TYPE="ext4"
2 disks with OS, 2 OS : 2 Linux, 0 MacOS, 0 Windows, 0 unknown type OS.
mount : /dev/sdb2 est déjà monté ou /mnt/boot-sav/sdb2 est occupé
mount /dev/sdb2 : Error code 32
mount -r /dev/sdb2 /mnt/boot-sav/sdb2
mount : /dev/sdb2 est déjà monté ou /mnt/boot-sav/sdb2 est occupé
mount -r /dev/sdb2 : Error code 32
dd: nombre «0» incorrect
Warning: /var/log/boot-sav/log/2014-12-16__19h46boot-repair40/sdb/current_mbr.img could not be created. Veuillez indiquer ce message à boot.repair@gmail.com
Attention : identifiant de table de partitions GPT (GUID) détecté sur « /dev/sdb ». L'utilitaire sfdisk ne prend pas GPT en charge. Utilisez GNU Parted.
WARNING: GPT (GUID Partition Table) detected on '/dev/sdb'! The util fdisk doesn't support GPT. Use GNU Parted.
WARNING: GPT (GUID Partition Table) detected on '/dev/sdb'! The util fdisk doesn't support GPT. Use GNU Parted.
=================== sda2/etc/grub.d/ :
drwxr-xr-x 2 root root 4096 nov. 11 06:56 grub.d
total 76
-rwxr-xr-x 1 root root 8875 oct. 27 20:07 00_header
--wxrw--wt 1 root root 11070 août 7 01:43 10_antergos
-rw-r--r-- 1 root root 9867 oct. 27 20:07 10_linux
-rwxr-xr-x 1 root root 10250 oct. 27 20:07 20_linux_xen
-rwxr-xr-x 1 root root 10883 oct. 27 20:07 30_os-prober
-rwxr-xr-x 1 root root 214 mai 14 2014 40_custom
-rwxr-xr-x 1 root root 216 oct. 27 20:07 41_custom
-rwxr-xr-x 1 root root 1219 oct. 27 20:07 60_memtest86+
-rw-r--r-- 1 root root 483 oct. 27 20:07 README
=================== sda2/etc/default/grub :
GRUB_DEFAULT=0
GRUB_TIMEOUT=5
GRUB_DISTRIBUTOR=Antergos
GRUB_CMDLINE_LINUX_DEFAULT="quiet"
GRUB_CMDLINE_LINUX=""
# Preload both GPT and MBR modules so that they are not missed
GRUB_PRELOAD_MODULES="part_gpt part_msdos"
# Uncomment to enable Hidden Menu, and optionally hide the timeout count
#GRUB_HIDDEN_TIMEOUT=5
#GRUB_HIDDEN_TIMEOUT_QUIET=true
# Uncomment to use basic console
GRUB_TERMINAL_INPUT=console
# Uncomment to disable graphical terminal
#GRUB_TERMINAL_OUTPUT=console
# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
GRUB_GFXMODE=auto
# Uncomment to allow the kernel use the same resolution used by grub
GRUB_GFXPAYLOAD_LINUX=keep
# Uncomment if you want GRUB to pass to the Linux kernel the old parameter
# format "root=/dev/xxx" instead of "root=/dev/disk/by-uuid/xxx"
#GRUB_DISABLE_LINUX_UUID=true
# Uncomment to disable generation of recovery mode menu entries
GRUB_DISABLE_RECOVERY=true
# Uncomment and set to the desired menu colors. Used by normal and wallpaper
# modes only. Entries specified as foreground/background.
#GRUB_COLOR_NORMAL="light-blue/black"
#GRUB_COLOR_HIGHLIGHT="light-cyan/blue"
# Uncomment one of them for the gfx desired, a image background or a gfxtheme
#GRUB_BACKGROUND="/path/to/wallpaper"
GRUB_THEME="/boot/grub/themes/Antergos-Default/theme.txt"
# Uncomment to get a beep at GRUB start
#GRUB_INIT_TUNE="480 440 1"
#GRUB_SAVEDEFAULT="true"
=================== sdc1/etc/grub.d/ :
drwxr-xr-x 2 root root 4096 juil. 23 18:26 grub.d
total 76
-rwxr-xr-x 1 root root 9424 mai 15 2014 00_header
-rwxr-xr-x 1 root root 6058 mai 8 2014 05_debian_theme
-rwxr-xr-x 1 root root 11608 mai 15 2014 10_linux
-rwxr-xr-x 1 root root 10412 mai 15 2014 20_linux_xen
-rwxr-xr-x 1 root root 1992 mars 12 2014 20_memtest86+
-rwxr-xr-x 1 root root 11692 mai 15 2014 30_os-prober
-rwxr-xr-x 1 root root 1416 mai 15 2014 30_uefi-firmware
-rwxr-xr-x 1 root root 214 mai 15 2014 40_custom
-rwxr-xr-x 1 root root 216 mai 15 2014 41_custom
-rw-r--r-- 1 root root 483 mai 15 2014 README
=================== sdc1/etc/default/grub :
# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
# For full documentation of the options in this file, see:
# info -f grub -n 'Simple configuration'
GRUB_DEFAULT=0
#GRUB_HIDDEN_TIMEOUT=0
GRUB_HIDDEN_TIMEOUT_QUIET=true
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""
# Uncomment to enable BadRAM filtering, modify to suit your needs
# This works with Linux (no patch required) and with any kernel that obtains
# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"
# Uncomment to disable graphical terminal (grub-pc only)
#GRUB_TERMINAL=console
# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
#GRUB_GFXMODE=640x480
# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
#GRUB_DISABLE_LINUX_UUID=true
# Uncomment to disable generation of recovery mode menu entries
#GRUB_DISABLE_RECOVERY="true"
# Uncomment to get a beep at grub start
#GRUB_INIT_TUNE="480 440 1"
=================== UEFI/Legacy mode:
This live-session is not in EFI-mode.
SecureBoot maybe enabled.
=================== PARTITIONS & DISKS:
sda2 : sda, not-sepboot, grubenv-ok grub2, no-docgrub, grub-mkconfig -o /boot/grub, 64, with-boot, is-os, not--efi--part, fstab-without-boot, fstab-without-efi, no-nt, no-winload, no-recov-nor-hid, no-bmgr, notwinboot, pacman, grub-install, with--usr, fstab-without-usr, not-sep-usr, standard, farbios, /mnt/boot-sav/sda2.
sda3 : sda, maybesepboot, no-grubenv nogrub, no-docgrub, no-update-grub, 32, no-boot, no-os, not--efi--part, part-has-no-fstab, part-has-no-fstab, no-nt, no-winload, no-recov-nor-hid, no-bmgr, notwinboot, nopakmgr, nogrubinstall, no---usr, part-has-no-fstab, not-sep-usr, standard, farbios, /mnt/boot-sav/sda3.
sdb2 : sdb, not-sepboot, no-grubenv nogrub, no-docgrub, no-update-grub, 32, no-boot, no-os, not--efi--part, part-has-no-fstab, part-has-no-fstab, no-nt, no-winload, no-recov-nor-hid, no-bmgr, notwinboot, nopakmgr, nogrubinstall, no---usr, part-has-no-fstab, not-sep-usr, standard, not-far, /mnt/boot-sav/sdb2.
sdc1 : sdc, not-sepboot, grubenv-ok grub2, grub-pc , update-grub, 64, with-boot, is-os, not--efi--part, fstab-without-boot, fstab-without-efi, no-nt, no-winload, no-recov-nor-hid, no-bmgr, notwinboot, apt-get, grub-install, with--usr, fstab-without-usr, not-sep-usr, standard, farbios, /mnt/boot-sav/sdc1.
sda : not-GPT, BIOSboot-not-needed, has-no-EFIpart, not-usb, has-os, 2048 sectors * 512 bytes
sdb : not-GPT, BIOSboot-not-needed, has-no-EFIpart, usb-disk, no-os, 0 sectors * 512 bytes
sdc : not-GPT, BIOSboot-not-needed, has-no-EFIpart, usb-disk, has-os, 2048 sectors * 512 bytes
=================== parted -l:
Model: ATA Crucial_CT240M50 (scsi)
Disk /dev/sda: 240GB
Sector size (logical/physical): 512B/4096B
Partition Table: msdos
Number Start End Size Type File system Flags
3 256MB 218GB 218GB primary ext4
2 218GB 240GB 21.6GB primary ext4 boot
Warning: /dev/sdb contains GPT signatures, indicating that it has a GPT table. However, it does not have a valid fake msdos partition table, as it should. Perhaps it was corrupted -- possibly by a program that doesn't understand GPT partition tables. Or perhaps you deleted the GPT table, and are now using an msdos partition table. Is this a GPT partition table?
Error: Both the primary and backup GPT tables are corrupt. Try making a fresh table, and using Parted's rescue feature to recover partitions.
Model: Crucial_ CT120M500SSD1 (scsi)
Disk /dev/sdc: 120GB
Sector size (logical/physical): 4096B/4096B
Partition Table: msdos
Number Start End Size Type File system Flags
1 1049kB 120GB 120GB primary boot
=================== parted -lm:
BYT;
/dev/sda:240GB:scsi:512:4096:msdos:ATA Crucial_CT240M50;
3:256MB:218GB:218GB:ext4::;
2:218GB:240GB:21.6GB:ext4::boot;
Warning: /dev/sdb contains GPT signatures, indicating that it has a GPT table. However, it does not have a valid fake msdos partition table, as it should. Perhaps it was corrupted -- possibly by a program that doesn't understand GPT partition tables. Or perhaps you deleted the GPT table, and are now using an msdos partition table. Is this a GPT partition table?
Error: Both the primary and backup GPT tables are corrupt. Try making a fresh table, and using Parted's rescue feature to recover partitions.
BYT;
/dev/sdc:120GB:scsi:4096:4096:msdos:Crucial_ CT120M500SSD1;
1:1049kB:120GB:120GB:::boot;
=================== mount:
/cow on / type overlayfs (rw)
proc on /proc type proc (rw,noexec,nosuid,nodev)
sysfs on /sys type sysfs (rw,noexec,nosuid,nodev)
udev on /dev type devtmpfs (rw,mode=0755)
devpts on /dev/pts type devpts (rw,noexec,nosuid,gid=5,mode=0620)
tmpfs on /run type tmpfs (rw,noexec,nosuid,size=10%,mode=0755)
/dev/sdb on /cdrom type iso9660 (ro,noatime)
/dev/loop0 on /rofs type squashfs (ro,noatime)
none on /sys/fs/cgroup type tmpfs (rw)
none on /sys/fs/fuse/connections type fusectl (rw)
none on /sys/kernel/debug type debugfs (rw)
none on /sys/kernel/security type securityfs (rw)
tmpfs on /tmp type tmpfs (rw,nosuid,nodev)
none on /run/lock type tmpfs (rw,noexec,nosuid,nodev,size=5242880)
none on /run/shm type tmpfs (rw,nosuid,nodev)
none on /run/user type tmpfs (rw,noexec,nosuid,nodev,size=104857600,mode=0755)
none on /sys/fs/pstore type pstore (rw)
systemd on /sys/fs/cgroup/systemd type cgroup (rw,noexec,nosuid,nodev,none,name=systemd)
gvfsd-fuse on /run/user/999/gvfs type fuse.gvfsd-fuse (rw,nosuid,nodev,user=xubuntu)
/dev/sda2 on /mnt/boot-sav/sda2 type ext4 (rw)
/dev/sda3 on /mnt/boot-sav/sda3 type ext4 (rw)
/dev/sdc1 on /mnt/boot-sav/sdc1 type ext4 (rw)
=================== ls:
/sys/block/sda (filtered): alignment_offset bdi capability dev device discard_alignment events events_async events_poll_msecs ext_range holders inflight power queue range removable ro sda2 sda3 size slaves stat subsystem trace uevent
/sys/block/sdb (filtered): alignment_offset bdi capability dev device discard_alignment events events_async events_poll_msecs ext_range holders inflight power queue range removable ro sdb1 sdb2 size slaves stat subsystem trace uevent
/sys/block/sdc (filtered): alignment_offset bdi capability dev device discard_alignment events events_async events_poll_msecs ext_range holders inflight power queue range removable ro sdc1 size slaves stat subsystem trace uevent
/sys/block/sdd (filtered): alignment_offset bdi capability dev device discard_alignment events events_async events_poll_msecs ext_range holders inflight power queue range removable ro size slaves stat subsystem trace uevent
/dev (filtered): autofs block bsg btrfs-control bus char console core cpu cpu_dma_latency cuse disk dri ecryptfs fb0 fd full fuse hidraw0 hidraw1 hidraw2 hidraw3 hpet input kmsg kvm log mapper mcelog mei mem net network_latency network_throughput null port ppp psaux ptmx pts random rfkill rtc rtc0 sda sda2 sda3 sdb sdb1 sdb2 sdc sdc1 sdd sg0 sg1 sg2 sg3 shm snapshot snd stderr stdin stdout uhid uinput urandom usb v4l vga_arbiter vhci vhost-net video0 zero
ls /dev/mapper: control
=================== hexdump -n512 -C /dev/sdb2
00000000 eb 3c 90 6d 6b 66 73 2e 66 61 74 00 02 04 01 00 |.<.mkfs.fat.....|
00000010 02 00 02 40 12 f8 04 00 20 00 40 00 00 00 00 00 |...@.... .@.....|
00000020 00 00 00 00 80 00 29 3e 16 3c e6 4e 4f 20 4e 41 |......)>.<.NO NA|
00000030 4d 45 20 20 20 20 46 41 54 31 32 20 20 20 0e 1f |ME FAT12 ..|
00000040 be 5b 7c ac 22 c0 74 0b 56 b4 0e bb 07 00 cd 10 |.[|.".t.V.......|
00000050 5e eb f0 32 e4 cd 16 cd 19 eb fe 54 68 69 73 20 |^..2.......This |
00000060 69 73 20 6e 6f 74 20 61 20 62 6f 6f 74 61 62 6c |is not a bootabl|
00000070 65 20 64 69 73 6b 2e 20 20 50 6c 65 61 73 65 20 |e disk. Please |
00000080 69 6e 73 65 72 74 20 61 20 62 6f 6f 74 61 62 6c |insert a bootabl|
00000090 65 20 66 6c 6f 70 70 79 20 61 6e 64 0d 0a 70 72 |e floppy and..pr|
000000a0 65 73 73 20 61 6e 79 20 6b 65 79 20 74 6f 20 74 |ess any key to t|
000000b0 72 79 20 61 67 61 69 6e 20 2e 2e 2e 20 0d 0a 00 |ry again ... ...|
000000c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
*
000001f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 55 aa |..............U.|
00000200
WARNING: GPT (GUID Partition Table) detected on '/dev/sdb'! The util fdisk doesn't support GPT. Use GNU Parted.
WARNING: GPT (GUID Partition Table) detected on '/dev/sdb1'! The util fdisk doesn't support GPT. Use GNU Parted.
=================== df -Th:
Filesystem Type Size Used Avail Use% Mounted on
/cow overlayfs 3.9G 182M 3.7G 5% /
udev devtmpfs 3.9G 12K 3.9G 1% /dev
tmpfs tmpfs 788M 1.4M 787M 1% /run
/dev/sdb iso9660 930M 930M 0 100% /cdrom
/dev/loop0 squashfs 891M 891M 0 100% /rofs
none tmpfs 4.0K 0 4.0K 0% /sys/fs/cgroup
tmpfs tmpfs 3.9G 12K 3.9G 1% /tmp
none tmpfs 5.0M 4.0K 5.0M 1% /run/lock
none tmpfs 3.9G 80K 3.9G 1% /run/shm
none tmpfs 100M 24K 100M 1% /run/user
/dev/sda2 ext4 20G 16G 4.2G 79% /mnt/boot-sav/sda2
/dev/sda3 ext4 200G 156G 35G 82% /mnt/boot-sav/sda3
/dev/sdc1 ext4 110G 3.1G 102G 3% /mnt/boot-sav/sdc1
=================== fdisk -l:
Disk /dev/sda: 240.1 GB, 240057409536 bytes
255 heads, 63 sectors/track, 29185 cylinders, total 468862128 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disk identifier: 0x0007bc02
Device Boot Start End Blocks Id System
/dev/sda2 * 426708992 468860927 21075968 83 Linux
/dev/sda3 499712 426708991 213104640 83 Linux
Partition table entries are not in disk order
Disk /dev/sdb: 4009 MB, 4009754624 bytes
255 heads, 63 sectors/track, 487 cylinders, total 7831552 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x19fabbe1
Device Boot Start End Blocks Id System
/dev/sdb1 * 0 1904639 952320 0 Empty
/dev/sdb2 14296 18967 2336 ef EFI (FAT-12/16/32)
Disk /dev/sdb1: 975 MB, 975175680 bytes
255 heads, 63 sectors/track, 118 cylinders, total 1904640 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x19fabbe1
Device Boot Start End Blocks Id System
/dev/sdb1p1 * 0 1904639 952320 0 Empty
/dev/sdb1p2 14296 18967 2336 ef EFI (FAT-12/16/32)
Note: sector size is 4096 (not 512)
Disk /dev/sdc: 120.0 GB, 120034123776 bytes
255 heads, 63 sectors/track, 1824 cylinders, total 29305206 sectors
Units = sectors of 1 * 4096 = 4096 bytes
Sector size (logical/physical): 4096 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disk identifier: 0xd7150616
Device Boot Start End Blocks Id System
/dev/sdc1 * 256 29305087 117219328 83 Linux
User choice: Est-ce que sda (240GB) est un disque amovible ? no
=================== Suggested repair
The default repair of the Boot-Repair utility would purge (in order to fix packages) and reinstall the grub2 of sda2 into the MBRs of all disks (except USB without OS).
The boot flag would be placed on sdb2.
Additional repair would be performed: unhide-bootmenu-10s repair-filesystems
=================== Final advice in case of suggested repair
N'oubliez pas de régler votre BIOS pour qu'il amorce sur le disque sda (240GB) !
=================== User settings
The settings chosen by the user will not act on the boot.
Ça ressemble à un poisson d'avril très en avance... la pêche est miraculeuse, avec un disque sdb1 dans le disque sdb :
=================== fdisk -l:
(...)
Disk /dev/sdb: 4009 MB, 4009754624 bytes
255 heads, 63 sectors/track, 487 cylinders, total 7831552 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x19fabbe1Device Boot Start End Blocks Id System
/dev/sdb1 * 0 1904639 952320 0 Empty
/dev/sdb2 14296 18967 2336 ef EFI (FAT-12/16/32)Disk /dev/sdb1: 975 MB, 975175680 bytes
255 heads, 63 sectors/track, 118 cylinders, total 1904640 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x19fabbe1Device Boot Start End Blocks Id System
/dev/sdb1p1 * 0 1904639 952320 0 Empty
/dev/sdb1p2 14296 18967 2336 ef EFI (FAT-12/16/32)
Note: sector size is 4096 (not 512)
Je n'arrive pas à reconnaître avec quels burins sdb a été gravée.
Dernière modification par moko138 (Le 16/12/2014, à 22:32)
%NOINDEX%
Un utilitaire précieux : ncdu
Photo, mini-tutoriel : À la découverte de dcraw
Hors ligne
#24 Le 17/12/2014, à 07:14
- ikewdu
Re : [Résolu] Partition bios-grub non vue et démarrage impossible.
Re,
Tu as raison pour la version 64 bits. Erreur ma part.
En revanche, je suis d'accord avec moko138. Cette clé est incorrecte, et donc on part sur de mauvaises bases (lu entre autres dans le B-I):
grub-probe : erreur : impossible de trouver un périphérique GRUB pour /dev/sdb1. Vérifiez device.map..
mount -r /dev/sdb2 /mnt/boot-sav/sdb2
mount : /dev/sdb2 est déjà monté ou /mnt/boot-sav/sdb2 est occupé
mount -r /dev/sdb2 : Error code 32
WARNING: GPT (GUID Partition Table) detected on '/dev/sdb'! T
Ca remet un peu en question ceci:
Edit : Le format de la table de partition du Live n'a rien à voir.
Visiblement, certaines partitions ne peuvent pas être montées, et on peut imaginer que ça a une influence sur l'installation... mais n'ayant jamais tenté une installation aussi boiteuse, je ne veux pas être trop affirmatif.
Je ne vois pas pourquoi tu veux installer un Linux traditionnel (legacy) en utilisant une clé usb au format gpt. Même en UEFI, on installe avec une clé au format mbr.
Je viens aussi de voir ceci :
sdc : not-GPT, BIOSboot-not-needed, has-no-EFIpart, usb-disk, has-os, 2048 sectors * 512 bytes
Le disque sdc est-il un disque USB ?
Dernière modification par ikewdu (Le 17/12/2014, à 07:28)
Hors ligne
#25 Le 17/12/2014, à 07:57
- Compte supprimé
Re : [Résolu] Partition bios-grub non vue et démarrage impossible.
Vous êtes deux à considérer que la live-usb n'est pas bonne. Elle était faite avec dd, je vais la refaire avec un logiciel dédié.
Et oui, le disque ssd de 120 Go est un disque usb.
Pour éliminer toutes les causes annexes, je vais refaire une installation avec la nouvelle clé sur une tour sortie du placard et dont je vais désactiver le HDD dans le BIOS. Nous n'aurons que la clé et le disque usb.
EDIT
@kalunux
Que préconises-tu pour y voir plus clair ?
Dernière modification par Compte supprimé (Le 17/12/2014, à 07:59)