#1976 Le 07/05/2020, à 00:25
- YannUbuntu
Re : [Réparateur de démarrage] Développement du logiciel Boot-Repair
bonsoir geole, merci pour les retours.
Tout cela devrait etre corrigé dans 4ppa102.
à part probablement l'affichage de efibootmgr, mais est-ce bien genant de ne pas voir ces caractères spéciaux ?
à consulter/améliorer: Guide du Débutant, Logiciels, Ecole, Travail, Maison
Hors ligne
#1977 Le 07/05/2020, à 10:24
- geole
Re : [Réparateur de démarrage] Développement du logiciel Boot-Repair
Bonjour Yannubuntu
Ces caractères spéciaux, ce n'est pas très gênant,
Dans le rapport de Malbo, https://forum.ubuntu-fr.org/viewtopic.php?id=2052445
On voit par exemple cette ligne
Boot0004* ubuntu HD(1,GPT,82dbd02b-d652-4b61-80b7-0c90dc4ec418,0x800,0x100000)/File(FIuntu\shimx64.efi)
Son contenu est évidement faux. C'est à cause de ces fameux caractères spéciaux qui sont visualisables si on demande une sortie à l'écran.
Lorsqu'on fait la commande , on a la bonne valeur
a@a:~$ sudo efibootmgr -v | grep ubuntu
Boot0001* ubuntu HD(2,GPT,59f84639-c0fa-47f6-a197-022d45750be8,0x8800,0xfd000)/File(\EFI\ubuntu\shimx64.efi)
Boot0002* Ubuntu HD(2,GPT,59f84639-c0fa-47f6-a197-022d45750be8,0x8800,0xfd000)/File(\EFI\ubuntu\grubx64.efi)RC
Boot0003* Ubuntu HD(10,GPT,e827b315-fbdd-4d2c-bd6e-1849c71c009b,0x1982c800,0x400000)/File(\EFI\ubuntu\grubx64.efi)RC
Boot0005* Ubuntu HD(15,GPT,7cedb153-149a-4381-8c9b-b50828d36cdd,0x259be800,0xa00000)/File(\EFI\ubuntu\grubx64.efi
Une piste, le caractère \ ne serait pas interprété quelque part comme le caractère \ mais comme une sorte d'alerte pour dire que le caractère qui suit ne doit pas être traité pour ce qu'il est mais qu'il faut lui donner une autre signification. ???
L'important pour nous est ne pas vouloir chercher un répertoire FIubuntu mais de rester dans l'idée que c'est toujours /EFI/ubuntu
NOTA: C'est peut-être lié à la nouvelle clause "encoding="UTF-8"
Les grilles de l'installateur https://doc.ubuntu-fr.org/tutoriel/inst … _subiquity
"gedit admin:///etc/fstab" est proscrit, utilisez "pkexec env DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY xdg-open /etc/fstab" Voir https://doc.ubuntu-fr.org/gedit
Les partitions EXT4 des disques externes => https://forum.ubuntu-fr.org/viewtopic.p … #p22697248
Hors ligne
#1978 Le 08/05/2020, à 01:36
- YannUbuntu
Re : [Réparateur de démarrage] Développement du logiciel Boot-Repair
bonjour,
je n'arrive pas à reproduire ces soucis d'affichage. C'est juste dans certains logs, et jamais dans l'interface graphique?
Sinon j'ai vu qu'il y a des soucis de montage de partitions cryptées, il faudrait que je creuse le sujet. Si vous avez des idees ou des exemples ça m'aiderait.
Ikewdu a fait d'excellentes remarques sur un autre fil ICI, alors comme ça concerne le developpement j'y reponds ci-dessous.
Boot-info :
- L'idée de condenser le rapport me semble bonne, mais je trouve que ça pose problème pour certains domaines (notamment le contenu de 30_os-prober dans grub.cfg qui donne des infos intéressantes).
de quelles infos as-tu besoin et pour quels cas de figure?
Une option "non-filtered" sera-t-elle proposée pour choisir de ne pas filtrer tel ou tel élément ?
oui je vais y travailler.
- Une question de détail. Ne serait-il pas judicieux de placer blkid et le contenu de fstab proches l'un de l'autre ? Souvent, on regarde les deux pour vérifier que les bonnes partitions sont montées ?
Il n'y a qu'1 blkid et potentiellement plusieurs fstab.
On a au debut du Boot-Info les sections communes (fdisk, blkid, mount..), puis les fichiers (fstab, grub.cfg, etc..) de la 1ere partition, puis les fichiers (fstab, grub.cfg, etc..) de la 2eme partition, etc.
Donc si on veut placer blkid près des fstab, il faudrait grouper tous les fstab juste après le blkid. (et donc grouper tous les grub.cfg plus loin, etc...). c'est faisable mais c'est pas mal de taf, alors j'aimerais que tout le monde soit d'accord avant de me lancer là-dedans eventuellement un jour.
- Dans la section fdisk, l'identifiant de disque n'est plus proposé. Or, il était utile, notamment pour identifier quel disque est utilisé dans les entrées EFI de la Nvram.
ok je vais le remettre (4ppa103)
- Dans la section "partition-info", il me semble (sauf erreur) que seule la partie 1 est utile. Le reste l'est moins.
J'essaierai de faire du menage, mais pas trop car ces variables servent aussi à débuguer plus facilement.
Boot-repair :
Comme je l'ai souvent dit dans les sujets de ce forum, autant je conseille la version Legacy, autant je déteste la version EFI de boot-repair. La principale raison : il est quasi impossible de traiter tous les verrouillages qu'on rencontre sur les PC de marque. Nous-mêmes, nous en découvrons de nouveaux tous les jours.
Bon je crois que je vais remettre la partie EFI à plat
- Les renommages de fichiers. Je prends ce simple exemple :
cp /mnt/boot-sav/nvme0n1p6/boot/efi/EFI/ubuntu/shimx64.efi /mnt/boot-sav/nvme0n1p5/efi/ubuntu/shimx64.efi cp /mnt/boot-sav/nvme0n1p6/boot/efi/EFI/ubuntu/grubx64.efi /mnt/boot-sav/nvme0n1p5/efi/ubuntu/ mv /mnt/boot-sav/nvme0n1p6/boot/efi/EFI/Boot/bootx64.efi /mnt/boot-sav/nvme0n1p6/boot/efi/EFI/Boot/bkpbootx64.efi cp /mnt/boot-sav/nvme0n1p6/boot/efi/EFI/ubuntu/shimx64.efi /mnt/boot-sav/nvme0n1p6/boot/efi/EFI/Boot/bootx64.efi cp /mnt/boot-sav/nvme0n1p6/boot/efi/EFI/ubuntu/grubx64.efi /mnt/boot-sav/nvme0n1p6/boot/efi/EFI/Boot/
Peu de PC utilisent encore EFI/boot/bootx64.efi pour démarrer, et donc, je ne comprends pas le choix de créer un backup de ce fichier afin de le remplacer par shimx64.efi ou grubx64.efi. Par ailleurs, on constate que les renommages qu'on peut faire dans un sujet seront là encore, très ponctuels, et très différents selon les marques. Et on choisit cette option en dernier recours. L'utilisateur "lambda", lui, ignore complètement ce que boot-repair fait sur sa machine, et ça me semble dangereux.
Je suis d'accord que renommer les fichiers /EFI/Microsoft/Boot/bootx64.efi et bootmgfw.efi c'est sale (mais parfois/souvent efficace), et c'est pourquoi cette option (rename-ms-efi) n'est plus activée par défaut.
Par contre EFI/boot/bootx64.efi est d'apres la norme uefi un emplacement neutre, il n'est pas réservé à Windows, et rien n'empeche de le modifier (c'est un peu comme le MBR pour un boot Legacy: le dernier qui écrit dedans gagne). C'est pourquoi l'option 'use-standard-efi-file" est activée par defaut, ça aide quand le firmware démarre par defaut sur ce fichier. Est-ce que cette option a déjà posé problème ?
- L'ajout de 25_os-prober. Ce fichier qui ajoute des entrées souvent non fonctionnelles est l'équivalent des ajouts foireux de grub-customizer. Je ne vois pas l'intérêt de ce truc qu'on désactive ensuite 9 fois sur 10 à la demande de l'utilisateur. Voilà un exemple du résultat après réparation (issu du même rapport) , avec 1 entrée sur deux qui ne fonctionne pas :
Ubuntu Ubuntu, with Linux 5.4.0-28-generic Ubuntu, with Linux 5.4.0-26-generic menuentry "Windows UEFI bootmgfw.efi" { menuentry "Windows Boot UEFI loader" { menuentry "Windows Boot UEFI fbx64.efi" { menuentry "Windows Boot UEFI mmx64.efi" { menuentry "EFI/ubuntu/mmx64.efi" { menuentry "EFI/toshiba/Boot/bootmgfw.efi" { menuentry "efi/boot/bkpbootx64.efi" { menuentry "efi/microsoft/boot/cdboot.efi" { menuentry "efi/microsoft/boot/cdboot_noprompt.efi" { Windows Boot Manager (on /dev/nvme0n1p1) ### END /etc/grub.d/30_os-prober ### UEFI Firmware Settings' $menuentry_id_option 'uefi-firmware' { ### END /etc/grub.d/30_uefi-firmware ###
ça servait surtout à pallier ce bug de grub/os-prober, et je vois qu'il a été résolu à priori (encore que le post #58 fait douter).
Je vais donc desactiver cette fonction (4ppa103), et quand j'aurai le temps je l'ajouterai aux fonctionnalités optionnelles
- Les manipulations sur les fichiers efi de Windows ("fix-windows-boot use-standard-efi-file"). Pour moi, on ne doit pas y toucher, quelle que soit la raison, car ils sont partie intégrante de la garantie sur un PC neuf. En outre, beaucoup d'utilisateurs, croient, à tort, que boot-repair va réparer les fichiers de démarrage de Windows, ce qui n'est pas le cas.
Boot-Repair ne touche pas aux fichier EFI de Windows, sauf quand l'option rename-ms-efi est activée par l'utilisateur dans les options avancées.
fix-windows-boot ne fait que des reparations basiques sur du Windows non EFI (voir dans /usr/share/gui-actions.sh les fonctions repair_boot_ini et repair_bootmgr), je vais le renommer en win-legacy-basic-fix.
use-standard-efi-file : voir mon commentaire plus haut.
- Dernière chose : on sait aujourd'hui que la NVram verrouillée est souvent un souci à l'installation.Les utilisateurs se tournent donc vers boot-repair, croyant réparer leur démarrage, mais boot-repair se heurte au même verrouillage, et donc il ne répare rien. Mais il a tout de même fait tout ce que j'évoque plus haut. Bref, il a juste compliqué une réparation qui ne s'est pas faite.
j'ai du mal à saisir. Si la NVram est verrouillée, en quoi mettre grub dans EFI/boot/bootx64.efi et ajouter des entrées 25_ compliquerait la reparation. Au contraire, ça aide si le boot est verrouillé sur EFI/boot/bootx64.efi , je me trompe?
Bien entendu, il faut prendre ces remarques au sens constructif. Je rêve moi aussi d'un outil capable de gérer tous les problèmes propres à l'UEFI. Mais je crains fort qu'il difficilement possible de traiter tous les cas.
on est d'accord, il y a trop de cas differents. c'est pourquoi j'essaye juste de traiter ceux qu'il est possible de traiter sans rien casser en tout cas merci pour tes remarques
geole, j'en profite pour commenter ceci:
La prochaine étape de boot-repair, sera peut-être de proposer l'installation de refind en lieu et place du fichier de boot de windows pour ces ordinateurs merdiques et d'éliminer le grub signé pour le remplacer par le grub normal. Cela sera alors parfait.
moi je veux bien mais c'est encore un gros travail en perspective, je vais avoir besoin de temps et d'aide :-) notamment pour definir precisement les specs de la fonction, et tester.
à consulter/améliorer: Guide du Débutant, Logiciels, Ecole, Travail, Maison
Hors ligne
#1979 Le 08/05/2020, à 09:14
- ikewdu
Re : [Réparateur de démarrage] Développement du logiciel Boot-Repair
Salut,
Merci pour les réponses....
- Dans grub.cfg, le nommage des uuid de partitions me semble toujours intéressant pour identifier ce qu'il se passe exactement au démarrage, notamment dans 30_os-prober.
- OK pour les renommages. Passer cela en option avancée me semble préférable.
- OK pour 25_os-prober (ce bug me semblant peu fréquent, le proposer en option serait peut-être une piste).
- OK. Au sujet de la NVram verrouillée, un test sur l'absence d'entrée "Ubuntu" après installation ou sur la mention "unknown" qu'on rencontre beaucoup, voire sur l'ordre de boot serait peut-être utile, pour prévenir le demandeur que la réparation risque de ne pas fonctionner.
Autre petite chose (un détail). Dans un rapport récent, je vois que fdisk n'affiche plus "l'étiquette de disque" dos ou gpt. Certes, on la retrouve ici :
sda:500GB:scsi:512:512:msdos:G-DRIVE mobile SSD:;
sdb:1000GB:scsi:512:4096:gpt:ATA ST1000LM024 HN-M:;
Mais c'est tout de même moins lisible. A +
Dernière modification par ikewdu (Le 08/05/2020, à 09:15)
Hors ligne
#1980 Le 08/05/2020, à 11:24
- geole
Re : [Réparateur de démarrage] Développement du logiciel Boot-Repair
Bonjour.
Je ne sais pas s'il existe un problème pour les partitions chiffrées.
Lorsque boot-info détecte une partition chiffrée, il demande à l'utilisateur de l'ouvrir pour aller lire son contenu.
Pour pouvoir continuer, il faut répondre OUI, Ce qui sous-entend qu'on l'a ouverte. Il faudrait être fou le faire... Si on a chiffré, ce n'est pas pour exhiber son contenu. En conséquence, comme elle est restée en état non-déchiffré", Boot-info peine à la lire.
Je vais quand même faire l'effort de vérifier en local en exécutant le montage. Je filtrerais ce qui ne semblera trop personnel.
Le problème des caractères accentués n'est pas dans l'affichage des grilles de suivi mais dans le fichier produit.
Mais il faudrait qu'il soit de nouveau confirmé avec la dernière version. J'ai constaté que le boot-info de Malbo avait l'incident et je ne l'ai pas vu dans d'autres plus récents.
Le problème du caractère backslash ( \ ) qui ne s'affiche pas et élimine le caractère suivant dans un rapport en ligne ou s'affiche et affiche un grand carré dans un rapport en local, est peut-être lié à mon propre afficheur d'écran. ou tout simplement à la version 20.04 elle-même...
Il faudrait que d'autres personnes le confirme.
Il existe un problème depuis toujours mais jamais signalé: Lorsqu'on choisit de fabriquer un rapport en ligne, un éditeur de texte s'ouvre, il contient les milliers de lignes (maintenant quelques centaines) du rapport. Un peu plus tard, le boot-info informe qu'un rapport va être affiché. Cela serait mieux qu'il le dise avant et pas après.
L'idée de fournir une même information qu'une seule fois est bonne. C'est probablement aux utilisateurs de changer quelques habitudes.
Concernant la réparation EFI: Il me semble très difficile que boot-repair propose tout. Cas vécu hier:
Le demandeur était très fier d'avoir viré windows comme un malpropre avec une installation sur la totalité du disque.
En conséquence, cela ne bootait plus. Le boot-info montrait pas mal de réparations avec boot-repair et utilisation de refind
Pour solutionner, je lui ai fait créer le répertoire /EFI/Microsoft/boot. Je vois très mal boot-repair faire cette proposition!
La suite a montré, qu'il ne fallait pas copier /EFI/ubuntu/grubx64.efi dans /EFI/Microsoft/Boot/bootmgfw qui est souvent un dépannage conseillé, mais simplement copier /EFI/ubuntu/grubx64.efi dans /EFI/Microsoft/Boot en conservant son nom. (grubx64.efi). C'est assez nouveau.
Concernant refind comme "booteur" supplémentaire il faut bien réfléchir avant.....car ce n'est pas la panacée.
- Il ne sait pas tout faire. Il ignore toute la partie LEGACY..... et le légacy va encore exister pendant pas mal de temps même si on ne trouve plus en 2020 des ordinateurs neufs vendu avec la couche LEGACY seule.
- La "haute direction" n'aime probablement pas refind. Il ne faudrait pas se mettre en porte-à-faux avec elle.
- L'équipe qui supporte refind est probablement moins étoffée que l'équipe qui supporte le grub... (Je leur ai posé quelques questions encore sans réponse).
- Refind ne sait pas reconnaître les O.S. installés sur disque externe formatés en GPT. Il est nécessaire de mettre une partition de boot sur disque interne. Grub n'a pas ce problème.
- Grub ne sait pas reconnaître les autres O.S. installés dans des partitions BTRFS. Refind saurait le faire mais il faut ajouter le driver qui convient. Il n'est pas fourni de base.
- Pas de gestion du nouveau format ZFS, bien que pour les ordinateurs portables.....
- La livraison d'un refind fonctionnant en mode SECURE ne semble pas être une priorité pour l'équipe.
- Refind gère mal les partitions chiffrées. Il est nécessaire de fabriquer un fichier de configuration contenant le UUID de la partition racine et il n'a pas d'outils pour le faire. Nécessité de fabrication manuelle (nano ou gedit)
- De façon standard, refind se met dans /EFI/refind. En mode complémentaire de réparation, un autre endroit est peut-être à retenir (/EFI/Boot ?? /EFI/Microsoft/Boot ??? ) et avec écrasement des fichiers officiels de boot par refind.efi ???)
Les grilles de l'installateur https://doc.ubuntu-fr.org/tutoriel/inst … _subiquity
"gedit admin:///etc/fstab" est proscrit, utilisez "pkexec env DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY xdg-open /etc/fstab" Voir https://doc.ubuntu-fr.org/gedit
Les partitions EXT4 des disques externes => https://forum.ubuntu-fr.org/viewtopic.p … #p22697248
Hors ligne
#1981 Le 08/05/2020, à 14:18
- Babdu89
Re : [Réparateur de démarrage] Développement du logiciel Boot-Repair
Bonjour.
geole a écrit;
Le problème du caractère backslash ( \ ) qui ne s'affiche pas et élimine le caractère suivant dans un rapport en ligne ou s'affiche et affiche un grand carré dans un rapport en local, est peut-être lié à mon propre afficheur d'écran. ou tout simplement à la version 20.04 elle-même...
Il faudrait que d'autres personnes le confirme.
Le boot info dont c'est extrait
boot-info-4ppa103 [20200508_1501]
============================== 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 (,msdos3)/boot/grub. It also embeds following components:
modules
---------------------------------------------------------------------------
fshelp ext2 part_msdos biosdisk
---------------------------------------------------------------------------
=> Grub2 (v2.00) is installed in the MBR of /dev/sdb and looks at sector
34402304 of the same hard drive for core.img. core.img is at this location
and looks for (,gpt4)/boot/grub. It also embeds following components:
modules
---------------------------------------------------------------------------
fshelp ext2 part_gpt biosdisk
---------------------------------------------------------------------------
sda1: __________________________________________________________________________
File system: ntfs
Boot sector type: Windows 7/2008: NTFS
Boot sector info: No errors found in the Boot Parameter Block.
Operating System: Windows 7
Boot files: /bootmgr /Boot/BCD /Windows/System32/winload.exe
sda2: __________________________________________________________________________
File system: ext4
Boot sector type: -
Boot sector info:
Operating System: Ubuntu 14.04.6 LTS
Boot files: /boot/grub/grub.cfg /etc/fstab /etc/default/grub
/boot/extlinux/extlinux.conf
/boot/grub/i386-pc/core.img
sda3: __________________________________________________________________________
File system: ext4
Boot sector type: -
Boot sector info:
Operating System: Ubuntu 18.04.4 LTS
Boot files: /boot/grub/grub.cfg /etc/fstab /etc/default/grub
/boot/grub/i386-pc/core.img
sdb1: __________________________________________________________________________
File system: vfat
Boot sector type: FAT32
Boot sector info: No errors found in the Boot Parameter Block.
Operating System:
Boot files: /efi/Boot/bootx64.efi /efi/ubuntu/grubx64.efi
/efi/ubuntu/MokManager.efi /efi/ubuntu/shimx64.efi
/efi/ubuntu/grub.cfg
sdb2: __________________________________________________________________________
File system: BIOS Boot partition
Boot sector type: Grub2's core.img
Boot sector info:
sdb3: __________________________________________________________________________
File system: ext4
Boot sector type: -
Boot sector info:
Operating System: Ubuntu 14.04.1 LTS
Boot files: /boot/grub/grub.cfg /etc/fstab /etc/default/grub
sdb4: __________________________________________________________________________
File system: ext4
Boot sector type: -
Boot sector info:
Operating System: Ubuntu 18.04.4 LTS
Boot files: /boot/grub/grub.cfg /etc/fstab /etc/default/grub
/boot/grub/i386-pc/core.img
sdb5: __________________________________________________________________________
File system: vfat
Boot sector type: FAT32
Boot sector info: No errors found in the Boot Parameter Block.
Operating System:
Boot files:
================================ 6 OS detected =================================
OS#1: L'OS actuellement utilisé - Ubuntu 18.04.4 LTS CurrentSession on sda3
OS#2: Ubuntu 14.04.6 LTS on sda2
OS#3: Ubuntu 14.04.1 LTS on sdb3
OS#4: Ubuntu 18.04.4 LTS on sdb4
OS#5: Windows on sda1
OS#6: Linux on sdb2
============================ Architecture/Host Info ============================
CPU architecture: 64-bit
BOOT_IMAGE of the installed session in use:
/boot/vmlinuz-4.15.0-99-generic root=UUID=26681ab0-c120-4797-b95e-7d0cfa960dd7 ro quiet splash
===================================== UEFI =====================================
BIOS is EFI-compatible, and is setup in EFI-mode for this installed-session.
efibootmgr -v
BootCurrent: 0006
Timeout: 2 seconds
BootOrder: 0000,0002,0001,0003,0004,0006,0007
Boot0000 Diskette Drive BBS(Floppy,,0x0)
Boot0001* Internal HDD BBS(HD,,0x0)P0: LDLC .
Boot0002* USB Storage Device BBS(USB,,0x0)USB Storage Device.
Boot0003* CD/DVD/CD-RW Drive BBS(CDROM,,0x0)P1: TSSTcorp DVD+/-RW TS-U633J.
Boot0004 Onboard NIC BBS(Network,,0x0)
Boot0006* ubuntu HD(1,GPT,c279ab17-8851-4486-b8fb-7ae86a52026d,0x2007000,0xc8000)/File(FIuntu\shimx64.efi)
Boot0007 UEFI: INT13(USB,0x80) PciRoot(0x0)/Pci(0x1d,0x0)/VenHw(aa7ba38a-dabf-40c3-8d18-b55b39609ef7,8001000000005553422020202020ffffffffffffffffffffffffffffffffffffffffffffffff)/HD(1,GPT,c279ab17-8851-4486-b8fb-7ae86a52026d,0x2007000,0xc8000)
ded965934506efb38a6dcb9ac5b2b79e sdb1/Boot/bootx64.efi
0b48de05c935c48c9e4a94fa820c32ba sdb1/ubuntu/grubx64.efi
ba8a7979ac57f1c0c307ef94d1020eb8 sdb1/ubuntu/MokManager.efi
ded965934506efb38a6dcb9ac5b2b79e sdb1/ubuntu/shimx64.efi
============================= Drive/Partition Info =============================
Disks info: ____________________________________________________________________
sda : not-GPT, noBIOSboot, has-noESP, not-usb, not-mmc, has-os, 2048 sectors * 512 bytes
sdb : GPT, BIOS_boot, has---ESP, usb-disk, not-mmc, has-os, 2048 sectors * 512 bytes
Partitions info (1/3): _________________________________________________________
sda3 : is-os, 64, apt-get, grub-pc , grub2, grub-install, grubenv-ng, update-grub, farbios
sda1 : is-os, 32, nopakmgr, no-docgrub, nogrub, nogrubinstall, no-grubenv, noupdategrub, not-far
sda2 : is-os, 32, apt-get, grub-pc , grub2, grub-install, grubenv-ok, update-grub, not-far
sdb1 : no-os, 32, nopakmgr, no-docgrub, nogrub, nogrubinstall, no-grubenv, noupdategrub, not-far
sdb3 : is-os, 64, apt-get, signed grub-efi , grub2, grub-install, grubenv-ng, update-grub, not-far
sdb4 : is-os, 64, apt-get, grub-pc , grub2, grub-install, grubenv-ok, update-grub, not-far
sdb5 : no-os, 32, nopakmgr, no-docgrub, nogrub, nogrubinstall, no-grubenv, noupdategrub, not-far
sdb2 : is-os, 64, apt-get, grub-pc , grub2, grub-install, grubenv-ng, update-grub, not-far
Partitions info (2/3): _________________________________________________________
sda3 : isnotESP, fstab-without-efi, notbiosboot, no-nt, no-winload, no-recov-nor-hid, no-bmgr, notwinboot
sda1 : isnotESP, part-has-no-fstab, notbiosboot, no-nt, haswinload, no-recov-nor-hid, bootmgr, is-winboot
sda2 : isnotESP, fstab-without-efi, notbiosboot, no-nt, no-winload, no-recov-nor-hid, no-bmgr, notwinboot
sdb1 : is---ESP, part-has-no-fstab, notbiosboot, no-nt, no-winload, no-recov-nor-hid, no-bmgr, notwinboot
sdb3 : isnotESP, fstab-has-goodEFI, notbiosboot, no-nt, no-winload, no-recov-nor-hid, no-bmgr, notwinboot
sdb4 : isnotESP, fstab-without-efi, notbiosboot, no-nt, no-winload, no-recov-nor-hid, no-bmgr, notwinboot
sdb5 : isnotESP, part-has-no-fstab, notbiosboot, no-nt, no-winload, no-recov-nor-hid, no-bmgr, notwinboot
sdb2 : isnotESP, fstab-without-efi, is-biosboot, no-nt, no-winload, no-recov-nor-hid, no-bmgr, notwinboot
Partitions info (3/3): _________________________________________________________
sda3 : not-sepboot, with-boot, fstab-without-boot, not-sep-usr, with--usr, fstab-without-usr, std-grub.d, sda
sda1 : not-sepboot, no-boot, part-has-no-fstab, not-sep-usr, no---usr, part-has-no-fstab, std-grub.d, sda
sda2 : not-sepboot, with-boot, fstab-without-boot, not-sep-usr, with--usr, fstab-without-usr, std-grub.d, sda
sdb1 : not-sepboot, no-boot, part-has-no-fstab, not-sep-usr, no---usr, part-has-no-fstab, std-grub.d, sdb
sdb3 : not-sepboot, with-boot, fstab-without-boot, not-sep-usr, with--usr, fstab-without-usr, std-grub.d, sdb
sdb4 : not-sepboot, with-boot, fstab-without-boot, not-sep-usr, with--usr, fstab-without-usr, std-grub.d, sdb
sdb5 : not-sepboot, no-boot, part-has-no-fstab, not-sep-usr, no---usr, part-has-no-fstab, std-grub.d, sdb
sdb2 : not-sepboot, with-boot, fstab-without-boot, not-sep-usr, with--usr, fstab-without-usr, std-grub.d, sdb
fdisk -l (filtered): ___________________________________________________________
Disk sda: 111.8 GiB, 120034123776 bytes, 234441648 sectors
Disk identifier: 0x00040603
Boot Start End Sectors Size Id Type
sda1 * 2048 56383487 56381440 26.9G 7 HPFS/NTFS/exFAT
sda2 56383488 167847935 111464448 53.2G 83 Linux
sda3 167847936 234440703 66592768 31.8G 83 Linux
Disk sdb: 58.9 GiB, 63216549888 bytes, 123469824 sectors
Disk identifier: ECB2E9FC-2892-4570-89E6-CBFC2C80BF0F
Start End Sectors Size Type
sdb1 33583104 34402303 819200 400M EFI System
sdb2 34402304 35426303 1024000 500M BIOS boot
sdb3 35426304 79447788 44021485 21G Linux filesystem
sdb4 79448064 123467595 44019532 21G Linux filesystem
sdb5 2048 33583103 33581056 16G Microsoft basic data
Partition table entries are not in disk order.
parted -lm (filtered): _________________________________________________________
sda:120GB:scsi:512:512:msdos:ATA LDLC:;
1:1049kB:28.9GB:28.9GB:ntfs::boot;
2:28.9GB:85.9GB:57.1GB:ext4::;
3:85.9GB:120GB:34.1GB:ext4::;
sdb:63.2GB:scsi:512:512:gpt: USB DISK 3.0:;
5:1049kB:17.2GB:17.2GB:fat32::msftdata;
1:17.2GB:17.6GB:419MB:fat32::boot, esp;
2:17.6GB:18.1GB:524MB:::bios_grub;
3:18.1GB:40.7GB:22.5GB:ext4::;
4:40.7GB:63.2GB:22.5GB:ext4::;
blkid (filtered): ______________________________________________________________
NAME FSTYPE UUID PARTUUID LABEL PARTLABEL
sda
├─sda1 ntfs FA2AC6152AC5CF37 00040603-01 windows-7-del
├─sda2 ext4 8c69f945-f41d-4f8c-83bd-81d4a28efb15 00040603-02 fusion14.04-dell
└─sda3 ext4 26681ab0-c120-4797-b95e-7d0cfa960dd7 00040603-03 ubu-18.04-dell
sdb
├─sdb1 vfat 92C8-E043 c279ab17-8851-4486-b8fb-7ae86a52026d
├─sdb2 1f6dd8ce-568c-4617-9138-bb17d3c624a5
├─sdb3 ext4 72a66c99-76c9-420b-b133-77d8811a67f5 fcb240a0-cd9d-4f0f-829f-fac324612298 xubuntu-efi
├─sdb4 ext4 cb4fb6ab-daa4-405d-a278-99d4c4ca5e63 75c298a7-c048-4426-8ee7-943d786ea1f2 SB@
└─sdb5 vfat 0669-366B ee32a4b8-08a9-4165-b9e8-cf034813eaf5 test-multi
df (filtered): _________________________________________________________________
Avail Use% Mounted on
sda1 1.1G 96% /mnt/boot-sav/sda1
sda2 2.1G 91% /mnt/boot-sav/sda2
sda3 3.5G 84% /
sdb1 394.6M 1% /mnt/boot-sav/sdb1
sdb3 15.3G 20% /media/bernard/xubuntu-efi
sdb4 4.2G 74% /media/bernard/SB@
sdb5 2.2G 87% /media/bernard/test-multi
Mount options: __________________________________________________________________
sda1 rw,relatime,user_id=0,group_id=0,allow_other,blksize=4096
sda2 rw,relatime,data=ordered
sda3 rw,noatime,errors=remount-ro,data=ordered
sdb1 rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro
sdb3 rw,nosuid,nodev,relatime,stripe=32639,data=ordered
sdb4 rw,nosuid,nodev,relatime,data=ordered
sdb5 rw,nosuid,nodev,relatime,uid=1000,gid=1000,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,showexec,utf8,flush,errors=remount-ro
====================== sda2/boot/grub/grub.cfg (filtered) ======================
Ubuntu
Ubuntu, avec Linux 3.13.0-170-generic
Ubuntu, avec Linux 3.13.0-169-generic
### END /etc/grub.d/30_uefi-firmware ###
========================== sda2/etc/fstab (filtered) ===========================
# <file system> <mount point> <type> <options> <dump> <pass>
UUID=8c69f945-f41d-4f8c-83bd-81d4a28efb15 / ext4 noatime,errors=remount-ro 0 1
======================= sda2/etc/default/grub (filtered) =======================
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=""
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"
#GRUB_TERMINAL=console
#GRUB_GFXMODE=640x480
#GRUB_DISABLE_LINUX_UUID=true
#GRUB_DISABLE_RECOVERY="true"
#GRUB_INIT_TUNE="480 440 1"
================= sda2/boot/extlinux/extlinux.conf (filtered) ==================
default l0
prompt 1
timeout 50
include themes/debian/theme.cfg
==================== sda2: Location of files loaded by Grub ====================
GiB - GB File Fragment(s)
77.020198822 = 82.699808768 boot/grub/grub.cfg 1
62.708003998 = 67.332206592 boot/grub/i386-pc/core.img 1
77.017700195 = 82.697125888 boot/vmlinuz-3.13.0-169-generic 1
77.030231476 = 82.710581248 boot/vmlinuz-3.13.0-170-generic 1
77.030231476 = 82.710581248 vmlinuz 1
77.017700195 = 82.697125888 vmlinuz.old 1
56.677722931 = 60.857241600 boot/initrd.img-3.13.0-169-generic 2
56.633579254 = 60.809842688 boot/initrd.img-3.13.0-170-generic 2
56.633579254 = 60.809842688 initrd.img 2
56.677722931 = 60.857241600 initrd.img.old 2
================== sda2: Location of files loaded by Syslinux ==================
GiB - GB File Fragment(s)
77.011077881 = 82.690015232 boot/extlinux/extlinux.conf 1
77.011859894 = 82.690854912 boot/extlinux/chain.c32 1
=============== sda2: Version of COM32(R) files used by Syslinux ===============
boot/extlinux/chain.c32 : COM32R module (v4.xx)
====================== sda3/boot/grub/grub.cfg (filtered) ======================
Ubuntu
Ubuntu, with Linux 4.15.0-99-generic
Ubuntu, with Linux 4.15.0-96-generic
Windows 7 (on /dev/sda1)
Ubuntu 14.04.6 LTS (14.04) (on /dev/sda2)
Ubuntu (on /dev/sda2)
Ubuntu, avec Linux 3.13.0-170-generic (on /dev/sda2)
Ubuntu, avec Linux 3.13.0-169-generic (on /dev/sda2)
### END /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_uefi-firmware ###
Iso Live ubuntu-budgie-17.04-desktop-i386.iso dans cle USB3-Emtec
Iso Live ubuntu-17.10-desktop-amd64.iso dans cle USB3-Emtec
Iso Live ubuntu-18.04.2-desktop-amd64.iso dans partition Windows-7-dell
Iso Live ubuntu-18.04.2-desktop-amd64.iso dans partition systeme-fusion-dell
Iso Live ubuntu-19.10-desktop-amd64.iso dans partition systeme-fusion-dell
========================== sda3/etc/fstab (filtered) ===========================
# <file system> <mount point> <type> <options> <dump> <pass>
UUID=26681ab0-c120-4797-b95e-7d0cfa960dd7 / ext4 noatime,errors=remount-ro 0 1
======================= sda3/etc/default/grub (filtered) =======================
GRUB_SAVEDEFAULT="true"
GRUB_DEFAULT="saved"
#GRUB_DEFAULT=0
#GRUB_TIMEOUT_STYLE=hidden
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"
#GRUB_TERMINAL=console
#GRUB_GFXMODE=640x480
#GRUB_DISABLE_LINUX_UUID=true
#GRUB_DISABLE_RECOVERY="true"
#GRUB_INIT_TUNE="480 440 1"
==================== sda3: Location of files loaded by Grub ====================
GiB - GB File Fragment(s)
108.161819458 = 116.137869312 boot/grub/grub.cfg 1
95.091625214 = 102.103855104 boot/grub/i386-pc/core.img 1
83.985332489 = 90.178564096 boot/vmlinuz-4.15.0-96-generic 2
106.528308868 = 114.383900672 boot/vmlinuz-4.15.0-99-generic 1
106.528308868 = 114.383900672 vmlinuz 1
83.985332489 = 90.178564096 vmlinuz.old 2
107.698913574 = 115.640827904 boot/initrd.img-4.15.0-96-generic 4
107.691856384 = 115.633250304 boot/initrd.img-4.15.0-99-generic 4
107.691856384 = 115.633250304 initrd.img 4
107.698913574 = 115.640827904 initrd.img.old 4
===================== sdb1/efi/ubuntu/grub.cfg (filtered) ======================
search.fs_uuid 72a66c99-76c9-420b-b133-77d8811a67f5 root hd1,gpt3
set prefix=($root)'/boot/grub'
configfile $prefix/grub.cfg
====================== sdb3/boot/grub/grub.cfg (filtered) ======================
XUBUNTU 14.04 EFI GNU/Linux-usb-EMTEC
UBUNTU-18.04-usb-EMTEC
HYBRYDE FUSION 14.04_Dell-Latitude-E4310 GNU/Linux
Windows 7 (loader) (sur /dev/sda1)
------------------- Menu Grub Classique -------------------
XUBUNTU 14.04 EFI GNU/Linux
XUBUNTU 14.04 EFI GNU/Linux, avec Linux 3.13.0-117-generic
XUBUNTU 14.04 EFI GNU/Linux, avec Linux 3.13.0-32-generic
EFI/ubuntu/MokManager.efi
Ubuntu 14.04.6 LTS (14.04) (sur /dev/sda2)
Ubuntu (sur /dev/sda2)
Ubuntu, avec Linux 3.13.0-170-generic (sur /dev/sda2)
Ubuntu, avec Linux 3.13.0-169-generic (sur /dev/sda2)
Ubuntu 18.04.4 LTS (18.04) (sur /dev/sda3)
Ubuntu (sur /dev/sda3)
Ubuntu, with Linux 4.15.0-99-generic (sur /dev/sda3)
Ubuntu, with Linux 4.15.0-96-generic (sur /dev/sda3)
Ubuntu 18.04.4 LTS (18.04) (sur /dev/sdb4)
Ubuntu (sur /dev/sdb4)
Ubuntu, avec Linux 4.15.0-91-generic (sur /dev/sdb4)
Ubuntu, avec Linux 4.15.0-88-generic (sur /dev/sdb4)
Ubuntu, avec Linux 4.15.0-76-generic (sur /dev/sdb4)
Ubuntu 18.04.4 LTS (18.04) (sur /dev/sda3) (sur /dev/sdb4)
Ubuntu (sur /dev/sda3) (sur /dev/sdb4)
Ubuntu, avec Linux 4.15.0-91-generic (sur /dev/sda3) (sur /dev/sdb4)
Ubuntu, avec Linux 4.15.0-88-generic (sur /dev/sda3) (sur /dev/sdb4)
Ubuntu, avec Linux 4.15.0-76-generic (sur /dev/sda3) (sur /dev/sdb4)
### END /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_uefi-firmware ###
Iso Live ubuntu-budgie-17.04-desktop-i386.iso dans cle USB3
Iso Live ubuntu-artful-desktop-amd64.iso dans cle USB3-Emtec
Iso Live Ubuntu17.10-desktop-amd64.iso dans cle USB3-Emtec
========================== sdb3/etc/fstab (filtered) ===========================
# <file system> <mount point> <type> <options> <dump> <pass>
# / was on /dev/sdb3 during installation
UUID=72a66c99-76c9-420b-b133-77d8811a67f5 / ext4 errors=remount-ro 0 1
# /boot/efi was on /dev/sdb1 during installation
UUID=92C8-E043 /boot/efi vfat defaults 0 1
======================= sdb3/etc/default/grub (filtered) =======================
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_DISTRIBUTOR=`echo -n XUBUNTU 14.04 EFI`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"
#GRUB_TERMINAL=console
#GRUB_GFXMODE=640x480
#GRUB_DISABLE_LINUX_UUID=true
#GRUB_DISABLE_RECOVERY="true"
#GRUB_INIT_TUNE="480 440 1"
==================== sdb3: Location of files loaded by Grub ====================
GiB - GB File Fragment(s)
35.552764893 = 38.174490624 boot/grub/grub.cfg 2
19.077713013 = 20.484538368 boot/vmlinuz-3.13.0-117-generic 2
19.308181763 = 20.732002304 boot/vmlinuz-3.13.0-117-generic.efi.signed 1
17.878444672 = 19.196833792 boot/vmlinuz-3.13.0-32-generic 2
17.878444672 = 19.196833792 vmlinuz 2
21.895526886 = 23.510142976 boot/initrd.img-3.13.0-117-generic 2
19.528972626 = 20.969074688 boot/initrd.img-3.13.0-32-generic 2
19.528972626 = 20.969074688 initrd.img 2
19.528972626 = 20.969074688 initrd.img.old 2
====================== sdb4/boot/grub/grub.cfg (filtered) ======================
Ubuntu
Ubuntu, avec Linux 4.15.0-91-generic
Ubuntu, avec Linux 4.15.0-88-generic
Ubuntu, avec Linux 4.15.0-76-generic
Windows 7 (sur /dev/sda1)
Ubuntu 14.04.6 LTS (14.04) (sur /dev/sda2)
HYBRYDE FUSION 14.04_Dell GNU/Linux (sur /dev/sda2)
HYBRYDE FUSION 14.04_Dell GNU/Linux, avec Linux 3.13.0-170-generic (sur /dev/sda2)
HYBRYDE FUSION 14.04_Dell GNU/Linux, avec Linux 3.13.0-169-generic (sur /dev/sda2)
Ubuntu 18.04.4 LTS (18.04) (sur /dev/sda3)
Ubuntu (sur /dev/sda3)
Ubuntu, avec Linux 4.15.0-91-generic (sur /dev/sda3)
Ubuntu, avec Linux 4.15.0-88-generic (sur /dev/sda3)
Ubuntu, avec Linux 4.15.0-76-generic (sur /dev/sda3)
Ubuntu 14.04.1 LTS (14.04) (sur /dev/sdb3)
XUBUNTU 14.04 EFI GNU/Linux-usb-EMTEC (sur /dev/sdb3)
XUBUNTU 14.04 EFI GNU/Linux (sur /dev/sdb3)
XUBUNTU 14.04 EFI GNU/Linux, avec Linux 3.13.0-117-generic (sur /dev/sdb3)
XUBUNTU 14.04 EFI GNU/Linux, avec Linux 3.13.0-32-generic (sur /dev/sdb3)
### END /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_uefi-firmware ###
========================== sdb4/etc/fstab (filtered) ===========================
# <file system> <mount point> <type> <options> <dump> <pass>
UUID=cb4fb6ab-daa4-405d-a278-99d4c4ca5e63 / ext4 noatime,errors=remount-ro 0 1
======================= sdb4/etc/default/grub (filtered) =======================
GRUB_DEFAULT=0
#GRUB_TIMEOUT_STYLE=hidden
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"
#GRUB_TERMINAL=console
#GRUB_GFXMODE=640x480
#GRUB_DISABLE_LINUX_UUID=true
#GRUB_DISABLE_RECOVERY="true"
#GRUB_INIT_TUNE="480 440 1"
==================== sdb4: Location of files loaded by Grub ====================
GiB - GB File Fragment(s)
44.531250000 = 47.815065600 boot/grub/grub.cfg 2
54.364910126 = 58.373877760 boot/grub/i386-pc/core.img 1
42.829078674 = 45.987373056 boot/vmlinuz-4.15.0-76-generic 2
57.391582489 = 61.623742464 boot/vmlinuz-4.15.0-88-generic 1
44.243148804 = 47.505719296 boot/vmlinuz-4.15.0-91-generic 1
44.243148804 = 47.505719296 vmlinuz 1
57.391582489 = 61.623742464 vmlinuz.old 1
49.195579529 = 52.823351296 boot/initrd.img-4.15.0-76-generic 1
49.140892029 = 52.764631040 boot/initrd.img-4.15.0-88-generic 3
49.429954529 = 53.075009536 boot/initrd.img-4.15.0-91-generic 4
49.429954529 = 53.075009536 initrd.img 4
49.140892029 = 52.764631040 initrd.img.old 3
================================= User choice ==================================
Is sda (ATA LDLC) a removable disk? no
Suggested repair: ______________________________________________________________
The default repair of the Boot-Repair utility would reinstall the grub2 of
sda3 into the MBRs of all disks (except live-disks and removable disks without OS).
Grub-efi would not be selected by default because: no-win-efi
Additional repair would be performed: unhide-bootmenu-10s
Advice in case of suggested repair: ____________________________________________
EFI detected. You may want to retry after activating the [Separate /boot/efi partition:] option.
Do you want to continue?
Final advice in case of suggested repair: ______________________________________
Please do not forget to make your BIOS boot on sda (ATA LDLC) disk!
Boot info fait depuis une 18.04
@+. Babdu89
Dernière modification par Babdu89 (Le 08/05/2020, à 14:59)
J'ai découvert Ubuntu avec la 07.10.... Et alors?!... Depuis je regarde de temps en temps si Windows marche toujours....
Hors ligne
#1982 Le 09/05/2020, à 00:31
- YannUbuntu
Re : [Réparateur de démarrage] Développement du logiciel Boot-Repair
bonjour
4ppa104:
ajout de l'option --no-filter , voir manpage
desactivé ajout des entrées efi dans 25_os-prober
editeur de texte s'ouvre après le message final
ajout d'une detection (basique) de NVram verrouillée: si efibootmgr est inchangé apres install de grub et que pas d'entree ubuntu, alors message final d'erreur.
merci Babdu pour le log. Je remarque que chez toi les caractères spéciaux de efibootmgr posent problème, mais pas ceux de la section blkid.
Pourrais-tu stp lancer la commande 'sudo boot-repair --bootinfo' (boot-info sans interface graphique) et regarder si efibootmgr s'affiche mieux ?
à consulter/améliorer: Guide du Débutant, Logiciels, Ecole, Travail, Maison
Hors ligne
#1983 Le 09/05/2020, à 07:02
- ikewdu
Re : [Réparateur de démarrage] Développement du logiciel Boot-Repair
Merci YannUbuntu pour ta réactivité.
Hors ligne
#1984 Le 09/05/2020, à 07:46
- geole
Re : [Réparateur de démarrage] Développement du logiciel Boot-Repair
Bonjour YannUbuntu
Ce matin, essai de la version APP105 sur instance 18.04 avec l'option boot-info On y voit le problème pour efiboomgr.
efibootmgr -v
BootCurrent: 0007
Timeout: 0 seconds
BootOrder: 0007,0000,0001,0002,0003,0004,0005,0006,2003,2001,2002
Boot0000* Windows Boot Manager HD(2,GPT,59f84639-c0fa-47f6-a197-022d45750be8,0x8800,0xfd000)/File(I\Microsoft\Booootmgfw.efi)RC
Boot0001* Ubuntu HD(2,GPT,59f84639-c0fa-47f6-a197-022d45750be8,0x8800,0xfd000)/File(I
untu\grubx64.efi)RC
Boot0002* Ubuntu HD(10,GPT,e827b315-fbdd-4d2c-bd6e-1849c71c009b,0x1982c800,0x400000)/File(I
untu\grubx64.efi)RC
Boot0003* Windows Boot Manager HD(15,GPT,7cedb153-149a-4381-8c9b-b50828d36cdd,0x259be800,0xa00000)/File(I\Microsoft\Booootmgfw.efi)RC
Boot0004* Ubuntu HD(15,GPT,7cedb153-149a-4381-8c9b-b50828d36cdd,0x259be800,0xa00000)/File(I
untu\grubx64.efi)RC
Boot0005* EFI HDD Device (TOSHIBA MQ01ABD100) PciRoot(0x0)/Pci(0x1f,0x2)/Sata(0,0,0)/HD(26,GPT,f8d3800f-7417-4a31-b8f8-c18c066c2e39,0x72d06800,0x800000)RC
Boot0006* EFI HDD Device 1 (TOSHIBA MQ01ABD100) PciRoot(0x0)/Pci(0x1f,0x2)/Sata(0,0,0)/HD(31,GPT,a8d58afd-b7b5-4544-b675-6ad622cc3337,0xd1f8000,0x3e8000)RC
efind_x64.efi)nd HD(2,GPT,59f84639-c0fa-47f6-a197-022d45750be8,0x8800,0xfd000)/File(I
Boot0008* EFI Network 0 for IPv6 (08-9E-01-B7-1C-5D) PciRoot(0x0)/Pci(0x1c,0x3)/Pci(0x0,0x0)/MAC(089e01b71c5d,0)/IPv6([::]:<->[::]:,0,0)RC
Boot0009* EFI Network 0 for IPv4 (08-9E-01-B7-1C-5D) PciRoot(0x0)/Pci(0x1c,0x3)/Pci(0x0,0x0)/MAC(089e01b71c5d,0)/IPv4(0.0.0.00.0.0.0,0,0)RC
Boot2001* EFI USB Device RC
Il faut aussi noter que certaines phrases sont vraiment découpées en deux et que le nom du fichier de boot de windows a trop de o .Ce n'est pas une erreur de recopie.
J'ai vu l'arrivée de l'option --no-filter
Pour les partitions chiffrées, je relève cela ( filtrage personnel pour simplifier)
a@a:~$ lsblk
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
......
├─sda18 259:2 0 10,5G 0 part
│ └─luks-f3b2bb4d-f5f1-4963-984b-684cb7feb5b0 253:1 0 10,5G 0 crypt /media/a/LUCK27
├─sda19 259:3 0 9,6G 0 part
│ └─luks-16f1cc0a-2cc5-4ed6-893d-f233cf283821 253:2 0 9,5G 0 crypt /media/a/588eff65-b7e4-41dc-83b5-80f5d1933b27
.........
ls -ls /media/a/LUCK27
total 84
68 -rw-rw-r-- 1 a a 66467 juil. 4 2019 XXXXXXXX.odt
16 drwx------ 2 root root 16384 juil. 4 2019 lost+found
.........
ls /media/a/588eff65-b7e4-41dc-83b5-80f5d1933b27
bin cdrom etc initrd.img lib lost+found mnt proc run snap swapfile tmp var
boot dev home initrd.img.old lib64 media opt root sbin srv sys usr vmlinuz
puis le lancement
a@a:~$ sudo boot-info --bootinfo
Y a-t-il un RAID sur cet ordinateur ? [yes/no] n
Set sda as corresponding disk of mapper/Geole--vg-Data
Set sda as corresponding disk of mapper/luks-f3b2bb4d-f5f1-4963-984b-684cb7feb5b0
Set sda as corresponding disk of mapper/luks-16f1cc0a-2cc5-4ed6-893d-f233cf283821
Set sda as corresponding disk of mapper/Geole--vg-Data
Set sda as corresponding disk of mapper/luks-f3b2bb4d-f5f1-4963-984b-684cb7feb5b0
Set sda as corresponding disk of mapper/luks-16f1cc0a-2cc5-4ed6-893d-f233cf283821
mount: /mnt/boot-sav/sda18 : type de système de fichiers « crypto_LUKS » inconnu.
mount: /mnt/boot-sav/sda18 : type de système de fichiers « crypto_LUKS » inconnu.
mount: /mnt/boot-sav/sda19 : type de système de fichiers « crypto_LUKS » inconnu.
mount: /mnt/boot-sav/sda19 : type de système de fichiers « crypto_LUKS » inconnu.
mount: /mnt/boot-sav/sda18 : type de système de fichiers « crypto_LUKS » inconnu.
mount: /mnt/boot-sav/sda18 : type de système de fichiers « crypto_LUKS » inconnu.
mount: /mnt/boot-sav/sda19 : type de système de fichiers « crypto_LUKS » inconnu.
mount: /mnt/boot-sav/sda19 : type de système de fichiers « crypto_LUKS » inconnu.
Windows not detected by os-prober on sda4.
Il y a donc peut-être un problème même lorsque les partitions sont montées mais pas certain.
sda18: _________________________________________________________________________
File system: crypto_LUKS
Boot sector type: Grub4Dos: FAT12/16
Boot sector info:
sda19: _________________________________________________________________________
File system: crypto_LUKS
Boot sector type: Unknown
Boot sector info:
================================ 12 OS detected ================================
OS#1: L'OS actuellement utilisé - Ubuntu 18.04.3 LTS CurrentSession on sda20
......
OS#12: Linux on mapper/luks-16f1cc0a-2cc5-4ed6-893d-f233cf283821
Le UBUNTU présent y est bien détecté. A noter qu'il n'a vraiement pas de répertoire EFI
sda18 : no-os, 32, nopakmgr, no-docgrub, nogrub, nogrubinstall, no-grubenv, noupdategrub, farbios
sda19 : no-os, 32, nopakmgr, no-docgrub, nogrub, nogrubinstall, no-grubenv, noupdategrub, farbios
.......
sda18 : isnotESP, part-has-no-fstab, notbiosboot, no-nt, no-winload, no-recov-nor-hid, no-bmgr, notwinboot
sda19 : isnotESP, part-has-no-fstab, notbiosboot, no-nt, no-winload, no-recov-nor-hid, no-bmgr, notwinboot
......
sda18 : maybesepboot, no-boot, part-has-no-fstab, not-sep-usr, no---usr, part-has-no-fstab, std-grub.d, sda
sda19 : maybesepboot, no-boot, part-has-no-fstab, not-sep-usr, no---usr, part-has-no-fstab, std-grub.d, sda
......
mapper/luks-f3b2bb4d-f5f1-4963-984b-684cb7feb5b0 : no-os, 32, nopakmgr, no-docgrub, nogrub, nogrubinstall, no-grubenv, noupdategrub, not-far
mapper/luks-16f1cc0a-2cc5-4ed6-893d-f233cf283821 : is-os, 64, apt-get, signed grub-pc grub-efi , grub2, grub-install, no-grubenv, update-grub, not-far
.......
mapper/luks-f3b2bb4d-f5f1-4963-984b-684cb7feb5b0 : isnotESP, part-has-no-fstab, notbiosboot, no-nt, no-winload, no-recov-nor-hid, no-bmgr,notwinboot
mapper/luks-16f1cc0a-2cc5-4ed6-893d-f233cf283821 : isnotESP, fstab-has-goodEFI, notbiosboot, no-nt, no-winload, no-recov-nor-hid, no-bmgr,notwinboot
.......
mapper/luks-f3b2bb4d-f5f1-4963-984b-684cb7feb5b0 : maybesepboot, no-boot, part-has-no-fstab, not-sep-usr, no---usr, part-has-no-fstab, std-grub.d, sda
mapper/luks-16f1cc0a-2cc5-4ed6-893d-f233cf283821 : not-sepboot, no-boot, fstab-has-goodBOOT, not-sep-usr, with--usr, fstab-without-usr, std-grub.d, sda
fdisk -l (filtered): ___________________________________________________________
Disk sda: 931.5 GiB, 1000204886016 bytes, 1953525168 sectors
Disk identifier: 1072749E-6A53-E642-9E87-DFBC4088A4FC
Start End Sectors Size Type
sda1 2048 34815 32768 16M Microsoft reserved
.....
sda18 745908224 767850495 21942272 10.5G unknown
sda19 767850496 787851263 20000768 9.6G unknown
parted -lm (filtered): _________________________________________________________
......
18:382GB:393GB:11.2GB::sda27_crypt:;
19:393GB:403GB:10.2GB::sda28_crypt:;
blkid (filtered): ______________________________________________________________
NAME FSTYPE UUID PARTUUID LABEL PARTLABEL
sda
...
├─sda18 crypto_LUKS f3b2bb4d-f5f1-4963-984b-684cb7feb5b0 4890dbb2-cf70-4307-9422-73d7ffbc2886 sda27_crypt
│ └─luks-f3b2bb4d-f5f1-4963-984b-684cb7feb5b0 ext4 07ff3f43-9b60-464c-801e-2b5428ef934b LUCK27
├─sda19 crypto_LUKS 16f1cc0a-2cc5-4ed6-893d-f233cf283821 2c98f23a-d74f-4ddb-8332-b1be866d0c8c sda28_crypt
│ └─luks-16f1cc0a-2cc5-4ed6-893d-f233cf283821 ext4 588eff65-b7e4-41dc-83b5-80f5d1933b27
df (filtered): _________________________________________________________________
Avail Use% Mounted on
mapper/Geole--vg-Data 2.3G 34% /mnt/boot-sav/mapper/Geole--vg-Data
mapper/luks-16f1cc0a-2cc5-4ed6-893d-f233cf283821 3.7G 55% /media/a/588eff65-b7e4-41dc-83b5-80f5d1933b27
mapper/luks-f3b2bb4d-f5f1-4963-984b-684cb7feb5b0 9.7G 0% /media/a/LUCK27
.....
Mount options: __________________________________________________________________
mapper/Geole--vg-Data rw,relatime,data=ordered
mapper/luks-16f1cc0a-2cc5-4ed6-893d-f233cf283821 rw,nosuid,nodev,relatime,data=ordered
mapper/luks-f3b2bb4d-f5f1-4963-984b-684cb7feb5b0 rw,nosuid,nodev,relatime,data=ordered
...
============================== ls -R /dev/mapper/ ==============================
/dev/mapper:
control
Geole--vg-Data
luks-16f1cc0a-2cc5-4ed6-893d-f233cf283821
luks-f3b2bb4d-f5f1-4963-984b-684cb7feb5b0
Il y a un petit problème ici. Comme je monte les partitions avec Disk-utility manager, je n'ai pas pensé à regarder la codification en ligne de commande
Successfully activated LVM.
Error code 32
mount -r /dev/sda18 /mnt/boot-sav/sda18
mount -r /dev/sda18 : Error code 32
Error code 32
mount -r /dev/sda19 /mnt/boot-sav/sda19
mount -r /dev/sda19 : Error code 32
A mon avis, il manque seulement le contenu du fichier etc/fstab qui est
a@a:/media/a/588eff65-b7e4-41dc-83b5-80f5d1933b27$ tail -7 etc/fstab
# <file system> <mount point> <type> <options> <dump> <pass>
/dev/mapper/sda28_crypt / ext4 errors=remount-ro 0 1
# /boot was on /dev/sda9 during installation
UUID=3e767c74-4bbd-4279-896a-182a079d8db0 /boot ext4 defaults 0 2
# /boot/efi was on /dev/sda2 during installation
UUID=A3C1-2EA7 /boot/efi vfat umask=0077 0 1
/swapfile none swap sw 0 0
a@a:/media/a/588eff65-b7e4-41dc-83b5-80f5d1933b27$
On y voit que la structure de boot est dans une autre partition.
Avec un lancement normal, on retrouve un problème sensément rectifié
a@a:~$ boot-info
[sudo] Mot de passe de a :
(glade2script-python3:14443): IBUS-WARNING **: 08:53:07.490: The owner of /home/a/.config/ibus/bus is not root!
J'ai apprécié le fait de devoir valider l'affichage dans l'écran du compte rendu.
J'apprécie beaucoup moins la réparation standard proposée
Suggested repair: ______________________________________________________________
The default repair of the Boot-Repair utility would purge (in order to remove grub-efi) and reinstall the grub2 of
sda20 into the MBR of sda.
Additional repair would be performed: unhide-bootmenu-10s win-legacy-basic-fix restore-efi-backups
Blockers in case of suggested repair: __________________________________________
GPT detected. Please create a BIOS-Boot partition (>1MB, unformatted filesystem, bios_grub flag). This can be performed via tools such as Gparted. Then try again.
Peut-être que " boot-info detecte que le ubuntu opérationnel et windows sont installés en EFI . Il n'y a rien à réparer" serait mieux.
Dernière modification par geole (Le 09/05/2020, à 08:43)
Les grilles de l'installateur https://doc.ubuntu-fr.org/tutoriel/inst … _subiquity
"gedit admin:///etc/fstab" est proscrit, utilisez "pkexec env DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY xdg-open /etc/fstab" Voir https://doc.ubuntu-fr.org/gedit
Les partitions EXT4 des disques externes => https://forum.ubuntu-fr.org/viewtopic.p … #p22697248
Hors ligne
#1985 Le 09/05/2020, à 08:05
- jibel
Re : [Réparateur de démarrage] Développement du logiciel Boot-Repair
@Yannubuntu, babdu89, malbo et geole
Cela fait plusieurs années que j'utilise B.R.D. avec souvent un succès. Dans chaque OS, B.R.D. est installé. Aussi dans une clé USb ou dans un CD-DVD.
Je m'en sers sans ennui!
Je remarque que lors d'une mise a jour de n'importe quel OS installé, il y a la mise a jour de boot-repair-boot info qui sont effectués sans problème.
merci a Yannubuntu pour ce logiciel
Plus grande est la face, plus grand est le dos!
Toutes les fautes de frappe, d'orthographe, de grammaire et de syntaxe ci-dessus, sont la propriété intellectuelle de l'auteur. Elles doivent être reproduites et même corrigées sans l'accord préalable du susdit et toc !
Mint 21.1,Voyager20.04 et 22.04,Ubuntu 22.04,Emmabuntus 1.Buster, Debian 12.buster, Hybryde 14.04, Pas d'OS intermédiaire ! PC Medion AKOYA DD 1T + 2 .
Hors ligne
#1986 Le 09/05/2020, à 08:26
- Babdu89
Re : [Réparateur de démarrage] Développement du logiciel Boot-Repair
Bonjour.
@YannUbuntu;
Ce matin maj des PPA105.
Je fais un boot info depuis le lanceur, et rien ne change dans efibootmgr -v
Je lance
bernard@bernard-System-Product-Name:~$ sudo boot-repair --bootinfo
[sudo] Mot de passe de bernard :
Error: The backup GPT table is corrupt, but the primary appears OK, so that will be used.
Windows not detected by os-prober on sda1.
Linux not detected by os-prober on sdb2. Veuillez indiquer ce message à boot.repair@gmail.com
La table de partitions GPT de sauvegarde est corrompue, mais la primaire semble fonctionnelle, elle sera donc utilisée.
=================== sda3saved_entry=gnulinux-simple-26681ab0-c120-4797-b95e-7d0cfa960dd7/grub/grubenv :
saved_entry=gnulinux-simple-26681ab0-c120-4797-b95e-7d0cfa960dd7
=================== /boot/efi detected in the fstab of sdb3: UUID=92C8-E043 (sdb1)
=================== sdb3saved_entry=osprober-chain-FA2AC6152AC5CF37
recordfail=1/grub/grubenv :
saved_entry=osprober-chain-FA2AC6152AC5CF37
recordfail=1
=================== sdb2saved_entry=gnulinux-simple-26681ab0-c120-4797-b95e-7d0cfa960dd7/grub/grubenv :
saved_entry=gnulinux-simple-26681ab0-c120-4797-b95e-7d0cfa960dd7
/usr/share/boot-sav/bs-cmd_terminal.sh: ligne 81: this_part_is_esp : commande introuvable
Est-ce que sda (ATA LDLC) est un disque amovible ? [yes/no] n
boot-repair-4ppa105 [20200509_0913]
============================== 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 (,msdos3)/boot/grub. It also embeds following components:
modules
---------------------------------------------------------------------------
fshelp ext2 part_msdos biosdisk
---------------------------------------------------------------------------
=> Grub2 (v2.00) is installed in the MBR of /dev/sdb and looks at sector
34402304 of the same hard drive for core.img. core.img is at this location
and looks for (,gpt4)/boot/grub. It also embeds following components:
modules
---------------------------------------------------------------------------
fshelp ext2 part_gpt biosdisk
---------------------------------------------------------------------------
sda1: __________________________________________________________________________
File system: ntfs
Boot sector type: Windows 7/2008: NTFS
Boot sector info: No errors found in the Boot Parameter Block.
Operating System: Windows 7
Boot files: /bootmgr /Boot/BCD /Windows/System32/winload.exe
sda2: __________________________________________________________________________
File system: ext4
Boot sector type: -
Boot sector info:
Operating System: Ubuntu 14.04.6 LTS
Boot files: /boot/grub/grub.cfg /etc/fstab /etc/default/grub
/boot/extlinux/extlinux.conf
/boot/grub/i386-pc/core.img
sda3: __________________________________________________________________________
File system: ext4
Boot sector type: -
Boot sector info:
Operating System: Ubuntu 18.04.4 LTS
Boot files: /boot/grub/grub.cfg /etc/fstab /etc/default/grub
/boot/grub/i386-pc/core.img
sdb1: __________________________________________________________________________
File system: vfat
Boot sector type: FAT32
Boot sector info: No errors found in the Boot Parameter Block.
Operating System:
Boot files: /efi/Boot/bootx64.efi /efi/ubuntu/grubx64.efi
/efi/ubuntu/MokManager.efi /efi/ubuntu/shimx64.efi
/efi/ubuntu/grub.cfg
sdb2: __________________________________________________________________________
File system: BIOS Boot partition
Boot sector type: Grub2's core.img
Boot sector info:
sdb3: __________________________________________________________________________
File system: ext4
Boot sector type: -
Boot sector info:
Operating System: Ubuntu 14.04.1 LTS
Boot files: /boot/grub/grub.cfg /etc/fstab /etc/default/grub
sdb4: __________________________________________________________________________
File system: ext4
Boot sector type: -
Boot sector info:
Operating System: Ubuntu 18.04.4 LTS
Boot files: /boot/grub/grub.cfg /etc/fstab /etc/default/grub
/boot/grub/i386-pc/core.img
sdb5: __________________________________________________________________________
File system: vfat
Boot sector type: FAT32
Boot sector info: No errors found in the Boot Parameter Block.
Operating System:
Boot files:
================================ 6 OS detected =================================
OS#1: L'OS actuellement utilisé - Ubuntu 18.04.4 LTS CurrentSession on sda3
OS#2: Ubuntu 14.04.6 LTS on sda2
OS#3: Ubuntu 14.04.1 LTS on sdb3
OS#4: Ubuntu 18.04.4 LTS on sdb4
OS#5: Windows on sda1
OS#6: Linux on sdb2
============================ Architecture/Host Info ============================
CPU architecture: 64-bit
BOOT_IMAGE of the installed session in use:
/boot/vmlinuz-4.15.0-99-generic root=UUID=26681ab0-c120-4797-b95e-7d0cfa960dd7 ro quiet splash
===================================== UEFI =====================================
BIOS is EFI-compatible, and is setup in EFI-mode for this installed-session.
efibootmgr -v
BootCurrent: 0006
Timeout: 2 seconds
BootOrder: 0000,0002,0001,0003,0004,0006,0007
Boot0000 Diskette Drive BBS(Floppy,,0x0)
Boot0001* Internal HDD BBS(HD,,0x0)P0: LDLC .
Boot0002* USB Storage Device BBS(USB,,0x0)USB Storage Device.
Boot0003* CD/DVD/CD-RW Drive BBS(CDROM,,0x0)P1: TSSTcorp DVD+/-RW TS-U633J.
Boot0004 Onboard NIC BBS(Network,,0x0)
Boot0006* ubuntu HD(1,GPT,c279ab17-8851-4486-b8fb-7ae86a52026d,0x2007000,0xc8000)/File(I
untu\shimx64.efi)
Boot0007 UEFI: INT13(USB,0x80) PciRoot(0x0)/Pci(0x1d,0x0)/VenHw(aa7ba38a-dabf-40c3-8d18-b55b39609ef7,8001000000005553422020202020ffffffffffffffffffffffffffffffffffffffffffffffff)/HD(1,GPT,c279ab17-8851-4486-b8fb-7ae86a52026d,0x2007000,0xc8000)
ded965934506efb38a6dcb9ac5b2b79e sdb1/Boot/bootx64.efi
0b48de05c935c48c9e4a94fa820c32ba sdb1/ubuntu/grubx64.efi
ba8a7979ac57f1c0c307ef94d1020eb8 sdb1/ubuntu/MokManager.efi
ded965934506efb38a6dcb9ac5b2b79e sdb1/ubuntu/shimx64.efi
============================= Drive/Partition Info =============================
Disks info: ____________________________________________________________________
sda : notGPT, no-BIOSboot, has-noESP, not-usb, not-mmc, has-os, 2048 sectors * 512 bytes
sdb : is-GPT, hasBIOSboot, has-noESP, usb-disk, not-mmc, has-os, 2048 sectors * 512 bytes
Partitions info (1/3): _________________________________________________________
sda3 : is-os, 64, apt-get, grub-pc , grub2, grub-install, grubenv-ng, update-grub, farbios
sda1 : is-os, 32, nopakmgr, no-docgrub, nogrub, nogrubinstall, no-grubenv, noupdategrub, not-far
sda2 : is-os, 32, apt-get, grub-pc , grub2, grub-install, grubenv-ok, update-grub, not-far
sdb1 : no-os, 32, nopakmgr, no-docgrub, nogrub, nogrubinstall, no-grubenv, noupdategrub, not-far
sdb3 : is-os, 64, apt-get, signed grub-efi , grub2, grub-install, grubenv-ng, update-grub, not-far
sdb4 : is-os, 64, apt-get, grub-pc , grub2, grub-install, grubenv-ok, update-grub, not-far
sdb5 : no-os, 32, nopakmgr, no-docgrub, nogrub, nogrubinstall, no-grubenv, noupdategrub, not-far
sdb2 : is-os, 64, apt-get, grub-pc , grub2, grub-install, grubenv-ng, update-grub, not-far
Partitions info (2/3): _________________________________________________________
sda3 : isnotESP, fstab-without-efi, notbiosboot, no-nt, no-winload, no-recov-nor-hid, no-bmgr, notwinboot
sda1 : isnotESP, part-has-no-fstab, notbiosboot, no-nt, haswinload, no-recov-nor-hid, bootmgr, is-winboot
sda2 : isnotESP, fstab-without-efi, notbiosboot, no-nt, no-winload, no-recov-nor-hid, no-bmgr, notwinboot
sdb1 : isnotESP, part-has-no-fstab, notbiosboot, no-nt, no-winload, no-recov-nor-hid, no-bmgr, notwinboot
sdb3 : isnotESP, fstab-has-goodEFI, notbiosboot, no-nt, no-winload, no-recov-nor-hid, no-bmgr, notwinboot
sdb4 : isnotESP, fstab-without-efi, notbiosboot, no-nt, no-winload, no-recov-nor-hid, no-bmgr, notwinboot
sdb5 : isnotESP, part-has-no-fstab, notbiosboot, no-nt, no-winload, no-recov-nor-hid, no-bmgr, notwinboot
sdb2 : isnotESP, fstab-without-efi, is-biosboot, no-nt, no-winload, no-recov-nor-hid, no-bmgr, notwinboot
Partitions info (3/3): _________________________________________________________
sda3 : not-sepboot, with-boot, fstab-without-boot, not-sep-usr, with--usr, fstab-without-usr, std-grub.d, sda
sda1 : not-sepboot, no-boot, part-has-no-fstab, not-sep-usr, no---usr, part-has-no-fstab, std-grub.d, sda
sda2 : not-sepboot, with-boot, fstab-without-boot, not-sep-usr, with--usr, fstab-without-usr, std-grub.d, sda
sdb1 : not-sepboot, no-boot, part-has-no-fstab, not-sep-usr, no---usr, part-has-no-fstab, std-grub.d, sdb
sdb3 : not-sepboot, with-boot, fstab-without-boot, not-sep-usr, with--usr, fstab-without-usr, std-grub.d, sdb
sdb4 : not-sepboot, with-boot, fstab-without-boot, not-sep-usr, with--usr, fstab-without-usr, std-grub.d, sdb
sdb5 : not-sepboot, no-boot, part-has-no-fstab, not-sep-usr, no---usr, part-has-no-fstab, std-grub.d, sdb
sdb2 : not-sepboot, with-boot, fstab-without-boot, not-sep-usr, with--usr, fstab-without-usr, std-grub.d, sdb
fdisk -l (filtered): ___________________________________________________________
Disk sda: 111.8 GiB, 120034123776 bytes, 234441648 sectors
Disk identifier: 0x00040603
Boot Start End Sectors Size Id Type
sda1 * 2048 56383487 56381440 26.9G 7 HPFS/NTFS/exFAT
sda2 56383488 167847935 111464448 53.2G 83 Linux
sda3 167847936 234440703 66592768 31.8G 83 Linux
Disk sdb: 58.9 GiB, 63216549888 bytes, 123469824 sectors
Disk identifier: ECB2E9FC-2892-4570-89E6-CBFC2C80BF0F
Start End Sectors Size Type
sdb1 33583104 34402303 819200 400M EFI System
sdb2 34402304 35426303 1024000 500M BIOS boot
sdb3 35426304 79447788 44021485 21G Linux filesystem
sdb4 79448064 123467595 44019532 21G Linux filesystem
sdb5 2048 33583103 33581056 16G Microsoft basic data
Partition table entries are not in disk order.
parted -lm (filtered): _________________________________________________________
sda:120GB:scsi:512:512:msdos:ATA LDLC:;
1:1049kB:28.9GB:28.9GB:ntfs::boot;
2:28.9GB:85.9GB:57.1GB:ext4::;
3:85.9GB:120GB:34.1GB:ext4::;
sdb:63.2GB:scsi:512:512:gpt: USB DISK 3.0:;
5:1049kB:17.2GB:17.2GB:fat32::msftdata;
1:17.2GB:17.6GB:419MB:fat32::boot, esp;
2:17.6GB:18.1GB:524MB:::bios_grub;
3:18.1GB:40.7GB:22.5GB:ext4::;
4:40.7GB:63.2GB:22.5GB:ext4::;
blkid (filtered): ______________________________________________________________
NAME FSTYPE UUID PARTUUID LABEL PARTLABEL
sda
├─sda1 ntfs FA2AC6152AC5CF37 00040603-01 windows-7-del
├─sda2 ext4 8c69f945-f41d-4f8c-83bd-81d4a28efb15 00040603-02 fusion14.04-dell
└─sda3 ext4 26681ab0-c120-4797-b95e-7d0cfa960dd7 00040603-03 ubu-18.04-dell
sdb
├─sdb1 vfat 92C8-E043 c279ab17-8851-4486-b8fb-7ae86a52026d
├─sdb2 1f6dd8ce-568c-4617-9138-bb17d3c624a5
├─sdb3 ext4 72a66c99-76c9-420b-b133-77d8811a67f5 fcb240a0-cd9d-4f0f-829f-fac324612298 xubuntu-efi
├─sdb4 ext4 cb4fb6ab-daa4-405d-a278-99d4c4ca5e63 75c298a7-c048-4426-8ee7-943d786ea1f2 SB@
└─sdb5 vfat 0669-366B ee32a4b8-08a9-4165-b9e8-cf034813eaf5 test-multi
df (filtered): _________________________________________________________________
Avail Use% Mounted on
sda1 1.1G 96% /mnt/boot-sav/sda1
sda2 2.1G 91% /mnt/boot-sav/sda2
sda3 3.5G 84% /
sdb1 394.6M 1% /mnt/boot-sav/sdb1
sdb3 15.3G 20% /media/bernard/xubuntu-efi
sdb4 4.2G 74% /media/bernard/SB@
sdb5 2.2G 87% /media/bernard/test-multi
Mount options: __________________________________________________________________
sda1 rw,relatime,user_id=0,group_id=0,allow_other,blksize=4096
sda2 rw,relatime,data=ordered
sda3 rw,noatime,errors=remount-ro,data=ordered
sdb1 rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro
sdb3 rw,nosuid,nodev,relatime,stripe=32639,data=ordered
sdb4 rw,nosuid,nodev,relatime,data=ordered
sdb5 rw,nosuid,nodev,relatime,uid=1000,gid=1000,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,showexec,utf8,flush,errors=remount-ro
====================== sda2/boot/grub/grub.cfg (filtered) ======================
Ubuntu
Ubuntu, avec Linux 3.13.0-170-generic
Ubuntu, avec Linux 3.13.0-169-generic
### END /etc/grub.d/30_uefi-firmware ###
========================== sda2/etc/fstab (filtered) ===========================
# <file system> <mount point> <type> <options> <dump> <pass>
UUID=8c69f945-f41d-4f8c-83bd-81d4a28efb15 / ext4 noatime,errors=remount-ro 0 1
======================= sda2/etc/default/grub (filtered) =======================
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=""
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"
#GRUB_TERMINAL=console
#GRUB_GFXMODE=640x480
#GRUB_DISABLE_LINUX_UUID=true
#GRUB_DISABLE_RECOVERY="true"
#GRUB_INIT_TUNE="480 440 1"
================= sda2/boot/extlinux/extlinux.conf (filtered) ==================
default l0
prompt 1
timeout 50
include themes/debian/theme.cfg
==================== sda2: Location of files loaded by Grub ====================
GiB - GB File Fragment(s)
77.020198822 = 82.699808768 boot/grub/grub.cfg 1
62.708003998 = 67.332206592 boot/grub/i386-pc/core.img 1
77.017700195 = 82.697125888 boot/vmlinuz-3.13.0-169-generic 1
77.030231476 = 82.710581248 boot/vmlinuz-3.13.0-170-generic 1
77.030231476 = 82.710581248 vmlinuz 1
77.017700195 = 82.697125888 vmlinuz.old 1
56.677722931 = 60.857241600 boot/initrd.img-3.13.0-169-generic 2
56.633579254 = 60.809842688 boot/initrd.img-3.13.0-170-generic 2
56.633579254 = 60.809842688 initrd.img 2
56.677722931 = 60.857241600 initrd.img.old 2
================== sda2: Location of files loaded by Syslinux ==================
GiB - GB File Fragment(s)
77.011077881 = 82.690015232 boot/extlinux/extlinux.conf 1
77.011859894 = 82.690854912 boot/extlinux/chain.c32 1
=============== sda2: Version of COM32(R) files used by Syslinux ===============
boot/extlinux/chain.c32 : COM32R module (v4.xx)
====================== sda3/boot/grub/grub.cfg (filtered) ======================
Ubuntu
Ubuntu, with Linux 4.15.0-99-generic
Ubuntu, with Linux 4.15.0-96-generic
Windows 7 (on /dev/sda1)
Ubuntu 14.04.6 LTS (14.04) (on /dev/sda2)
Ubuntu (on /dev/sda2)
Ubuntu, avec Linux 3.13.0-170-generic (on /dev/sda2)
Ubuntu, avec Linux 3.13.0-169-generic (on /dev/sda2)
### END /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_uefi-firmware ###
Iso Live ubuntu-budgie-17.04-desktop-i386.iso dans cle USB3-Emtec
Iso Live ubuntu-17.10-desktop-amd64.iso dans cle USB3-Emtec
Iso Live ubuntu-18.04.2-desktop-amd64.iso dans partition Windows-7-dell
Iso Live ubuntu-18.04.2-desktop-amd64.iso dans partition systeme-fusion-dell
Iso Live ubuntu-19.10-desktop-amd64.iso dans partition systeme-fusion-dell
========================== sda3/etc/fstab (filtered) ===========================
# <file system> <mount point> <type> <options> <dump> <pass>
UUID=26681ab0-c120-4797-b95e-7d0cfa960dd7 / ext4 noatime,errors=remount-ro 0 1
======================= sda3/etc/default/grub (filtered) =======================
GRUB_SAVEDEFAULT="true"
GRUB_DEFAULT="saved"
#GRUB_DEFAULT=0
#GRUB_TIMEOUT_STYLE=hidden
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"
#GRUB_TERMINAL=console
#GRUB_GFXMODE=640x480
#GRUB_DISABLE_LINUX_UUID=true
#GRUB_DISABLE_RECOVERY="true"
#GRUB_INIT_TUNE="480 440 1"
==================== sda3: Location of files loaded by Grub ====================
GiB - GB File Fragment(s)
108.161819458 = 116.137869312 boot/grub/grub.cfg 1
95.091625214 = 102.103855104 boot/grub/i386-pc/core.img 1
83.985332489 = 90.178564096 boot/vmlinuz-4.15.0-96-generic 2
106.528308868 = 114.383900672 boot/vmlinuz-4.15.0-99-generic 1
106.528308868 = 114.383900672 vmlinuz 1
83.985332489 = 90.178564096 vmlinuz.old 2
107.698913574 = 115.640827904 boot/initrd.img-4.15.0-96-generic 4
107.691856384 = 115.633250304 boot/initrd.img-4.15.0-99-generic 4
107.691856384 = 115.633250304 initrd.img 4
107.698913574 = 115.640827904 initrd.img.old 4
===================== sdb1/efi/ubuntu/grub.cfg (filtered) ======================
search.fs_uuid 72a66c99-76c9-420b-b133-77d8811a67f5 root hd1,gpt3
set prefix=($root)'/boot/grub'
configfile $prefix/grub.cfg
====================== sdb3/boot/grub/grub.cfg (filtered) ======================
XUBUNTU 14.04 EFI GNU/Linux-usb-EMTEC
UBUNTU-18.04-usb-EMTEC
HYBRYDE FUSION 14.04_Dell-Latitude-E4310 GNU/Linux
Windows 7 (loader) (sur /dev/sda1)
------------------- Menu Grub Classique -------------------
XUBUNTU 14.04 EFI GNU/Linux
XUBUNTU 14.04 EFI GNU/Linux, avec Linux 3.13.0-117-generic
XUBUNTU 14.04 EFI GNU/Linux, avec Linux 3.13.0-32-generic
EFI/ubuntu/MokManager.efi
Ubuntu 14.04.6 LTS (14.04) (sur /dev/sda2)
Ubuntu (sur /dev/sda2)
Ubuntu, avec Linux 3.13.0-170-generic (sur /dev/sda2)
Ubuntu, avec Linux 3.13.0-169-generic (sur /dev/sda2)
Ubuntu 18.04.4 LTS (18.04) (sur /dev/sda3)
Ubuntu (sur /dev/sda3)
Ubuntu, with Linux 4.15.0-99-generic (sur /dev/sda3)
Ubuntu, with Linux 4.15.0-96-generic (sur /dev/sda3)
Ubuntu 18.04.4 LTS (18.04) (sur /dev/sdb4)
Ubuntu (sur /dev/sdb4)
Ubuntu, avec Linux 4.15.0-91-generic (sur /dev/sdb4)
Ubuntu, avec Linux 4.15.0-88-generic (sur /dev/sdb4)
Ubuntu, avec Linux 4.15.0-76-generic (sur /dev/sdb4)
Ubuntu 18.04.4 LTS (18.04) (sur /dev/sda3) (sur /dev/sdb4)
Ubuntu (sur /dev/sda3) (sur /dev/sdb4)
Ubuntu, avec Linux 4.15.0-91-generic (sur /dev/sda3) (sur /dev/sdb4)
Ubuntu, avec Linux 4.15.0-88-generic (sur /dev/sda3) (sur /dev/sdb4)
Ubuntu, avec Linux 4.15.0-76-generic (sur /dev/sda3) (sur /dev/sdb4)
### END /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_uefi-firmware ###
Iso Live ubuntu-budgie-17.04-desktop-i386.iso dans cle USB3
Iso Live ubuntu-artful-desktop-amd64.iso dans cle USB3-Emtec
Iso Live Ubuntu17.10-desktop-amd64.iso dans cle USB3-Emtec
========================== sdb3/etc/fstab (filtered) ===========================
# <file system> <mount point> <type> <options> <dump> <pass>
# / was on /dev/sdb3 during installation
UUID=72a66c99-76c9-420b-b133-77d8811a67f5 / ext4 errors=remount-ro 0 1
# /boot/efi was on /dev/sdb1 during installation
UUID=92C8-E043 /boot/efi vfat defaults 0 1
======================= sdb3/etc/default/grub (filtered) =======================
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_DISTRIBUTOR=`echo -n XUBUNTU 14.04 EFI`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"
#GRUB_TERMINAL=console
#GRUB_GFXMODE=640x480
#GRUB_DISABLE_LINUX_UUID=true
#GRUB_DISABLE_RECOVERY="true"
#GRUB_INIT_TUNE="480 440 1"
==================== sdb3: Location of files loaded by Grub ====================
GiB - GB File Fragment(s)
35.552764893 = 38.174490624 boot/grub/grub.cfg 2
19.077713013 = 20.484538368 boot/vmlinuz-3.13.0-117-generic 2
19.308181763 = 20.732002304 boot/vmlinuz-3.13.0-117-generic.efi.signed 1
17.878444672 = 19.196833792 boot/vmlinuz-3.13.0-32-generic 2
17.878444672 = 19.196833792 vmlinuz 2
21.895526886 = 23.510142976 boot/initrd.img-3.13.0-117-generic 2
19.528972626 = 20.969074688 boot/initrd.img-3.13.0-32-generic 2
19.528972626 = 20.969074688 initrd.img 2
19.528972626 = 20.969074688 initrd.img.old 2
====================== sdb4/boot/grub/grub.cfg (filtered) ======================
Ubuntu
Ubuntu, avec Linux 4.15.0-91-generic
Ubuntu, avec Linux 4.15.0-88-generic
Ubuntu, avec Linux 4.15.0-76-generic
Windows 7 (sur /dev/sda1)
Ubuntu 14.04.6 LTS (14.04) (sur /dev/sda2)
HYBRYDE FUSION 14.04_Dell GNU/Linux (sur /dev/sda2)
HYBRYDE FUSION 14.04_Dell GNU/Linux, avec Linux 3.13.0-170-generic (sur /dev/sda2)
HYBRYDE FUSION 14.04_Dell GNU/Linux, avec Linux 3.13.0-169-generic (sur /dev/sda2)
Ubuntu 18.04.4 LTS (18.04) (sur /dev/sda3)
Ubuntu (sur /dev/sda3)
Ubuntu, avec Linux 4.15.0-91-generic (sur /dev/sda3)
Ubuntu, avec Linux 4.15.0-88-generic (sur /dev/sda3)
Ubuntu, avec Linux 4.15.0-76-generic (sur /dev/sda3)
Ubuntu 14.04.1 LTS (14.04) (sur /dev/sdb3)
XUBUNTU 14.04 EFI GNU/Linux-usb-EMTEC (sur /dev/sdb3)
XUBUNTU 14.04 EFI GNU/Linux (sur /dev/sdb3)
XUBUNTU 14.04 EFI GNU/Linux, avec Linux 3.13.0-117-generic (sur /dev/sdb3)
XUBUNTU 14.04 EFI GNU/Linux, avec Linux 3.13.0-32-generic (sur /dev/sdb3)
### END /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_uefi-firmware ###
========================== sdb4/etc/fstab (filtered) ===========================
# <file system> <mount point> <type> <options> <dump> <pass>
UUID=cb4fb6ab-daa4-405d-a278-99d4c4ca5e63 / ext4 noatime,errors=remount-ro 0 1
======================= sdb4/etc/default/grub (filtered) =======================
GRUB_DEFAULT=0
#GRUB_TIMEOUT_STYLE=hidden
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"
#GRUB_TERMINAL=console
#GRUB_GFXMODE=640x480
#GRUB_DISABLE_LINUX_UUID=true
#GRUB_DISABLE_RECOVERY="true"
#GRUB_INIT_TUNE="480 440 1"
==================== sdb4: Location of files loaded by Grub ====================
GiB - GB File Fragment(s)
44.531250000 = 47.815065600 boot/grub/grub.cfg 2
54.364910126 = 58.373877760 boot/grub/i386-pc/core.img 1
42.829078674 = 45.987373056 boot/vmlinuz-4.15.0-76-generic 2
57.391582489 = 61.623742464 boot/vmlinuz-4.15.0-88-generic 1
44.243148804 = 47.505719296 boot/vmlinuz-4.15.0-91-generic 1
44.243148804 = 47.505719296 vmlinuz 1
57.391582489 = 61.623742464 vmlinuz.old 1
49.195579529 = 52.823351296 boot/initrd.img-4.15.0-76-generic 1
49.140892029 = 52.764631040 boot/initrd.img-4.15.0-88-generic 3
49.429954529 = 53.075009536 boot/initrd.img-4.15.0-91-generic 4
49.429954529 = 53.075009536 initrd.img 4
49.140892029 = 52.764631040 initrd.img.old 3
================================= User choice ==================================
Is sda (ATA LDLC) a removable disk? no
Suggested repair: ______________________________________________________________
The default repair of the Boot-Repair utility would reinstall the grub2 of
sda3 into the MBRs of all disks (except live-disks and removable disks without OS).
Additional repair would be performed: unhide-bootmenu-10s
Final advice in case of suggested repair: ______________________________________
Please do not forget to make your BIOS boot on sda (ATA LDLC) disk!
bernard@bernard-System-Product-Name:~$
il n'y a pas de log à récupérer dans /var/log/boot-info.
@+. Babdu89 .
Dernière modification par Babdu89 (Le 09/05/2020, à 08:27)
J'ai découvert Ubuntu avec la 07.10.... Et alors?!... Depuis je regarde de temps en temps si Windows marche toujours....
Hors ligne
#1987 Le 09/05/2020, à 08:40
- Babdu89
Re : [Réparateur de démarrage] Développement du logiciel Boot-Repair
Bonjour jibel.
@Yannubuntu, babdu89, malbo et geole
Cela fait plusieurs années que j'utilise B.R.D. avec souvent un succès. Dans chaque OS, B.R.D. est installé. Aussi dans une clé USb ou dans un CD-DVD.
Je m'en sers sans ennui!
Je remarque que lors d'une mise a jour de n'importe quel OS installé, il y a la mise a jour de boot-repair-boot info qui sont effectués sans problème.
merci a Yannubuntu pour ce logiciel
Rappel, pour toi BRD= Boot-Repair-Disk, l'iso d'un CD ou clé live. Il est basé sur un Lubuntu 14.04. Qui est bloqué à la version des PPA boot-repair du moment où est créée l'iso.
Tu dis que tu as installé BRD dans tes Os. Non, tu as installé le PPA boot-repair, c'est ce qui permet la mise à jour au moment où les maj du PPA est proposée.
J'ai remarqué que je ne pouvais pas faire la maj d'un boot-repair installé sur un Os installé en 14.04, même en trompant le système. Je change le nom du PPA trusty pour bionic ou ultérieur. La maj est proposée depuis synaptic, mais impossible d'installer les paquets python3.
Donc Je pense que tu ne pourras pas lancer une maj du PPA boot-Repair depuis une session live (CD ou USB) de BRD, et faire la maj du PPA en passant par synaptic.
Ce qui fait que tu utiliseras toujours ton BRD non ajour. Pour ton utilisation çà va , mais pour faire des réparations plus pointues (en UEFI par exemple) çà ne convient plus.
Je pense qu'il faut que tu évites de conseiller aux utilisateurs dans l'embarras l'utilisation de BRD, ils vont courir à l'échec.
@+. Babdu89 .
J'ai découvert Ubuntu avec la 07.10.... Et alors?!... Depuis je regarde de temps en temps si Windows marche toujours....
Hors ligne
#1988 Le 09/05/2020, à 10:13
- jibel
Re : [Réparateur de démarrage] Développement du logiciel Boot-Repair
@Babdu89,
Voila ma seule raison au lancement de Boot-repair-disk et son utilisation.
C'est celles-ci "options avancées" et "emplacement du grub" je choisis l'OS qui sera en 1er au lancement de mon disque dur. Tout se fera en quelques minutes avec succès.
Tout cela après l'installation d'un nouvel OS dans le même disque dur, bien sûr ....
Jamais je n'ai osé proposer les "réparations recommandées" aux utilisateurs. Car jamais personnellement j'utilisais cette fonction.
Hier au soir, j'ai pourtant lancé dans Xubuntu 18.04 lts une mise a jour qui a été faite dans laquelle "boot-repair" + "bootinfo" ont étés présents... Est-ce des fausses ou ce sont les bonnes MàJs pour B.R.D. ?
J'ai fait la même chose dans Voyager 20.04 Lts ce fut pareil les MàJs ont étés faites, boot-repair et bootinfo étaient présents ?
Lecture des informations d'état... Fait
Calcul de la mise à jour... Fait
Les paquets suivants ont été installés automatiquement et ne sont plus nécessaires :
linux-headers-5.4.0-26 linux-headers-5.4.0-26-generic linux-image-5.4.0-26-generic linux-modules-5.4.0-26-generic linux-modules-extra-5.4.0-26-generic
Veuillez utiliser « sudo apt autoremove » pour les supprimer.
Les paquets suivants seront mis à jour :
boot-repair boot-sav boot-sav-extra cawbird os-uninstaller python3-distupgrade ubuntu-release-upgrader-core ubuntu-release-upgrader-gtk
8 mis à jour, 0 nouvellement installés, 0 à enlever et 0 non mis à jour.
Il est nécessaire de prendre 1.225 ko dans les archives.
Après cette opération, 1.024 o d'espace disque supplémentaires seront utilisés.
Souhaitez-vous continuer ? [O/n]
Dernière modification par jibel (Le 09/05/2020, à 11:16)
Plus grande est la face, plus grand est le dos!
Toutes les fautes de frappe, d'orthographe, de grammaire et de syntaxe ci-dessus, sont la propriété intellectuelle de l'auteur. Elles doivent être reproduites et même corrigées sans l'accord préalable du susdit et toc !
Mint 21.1,Voyager20.04 et 22.04,Ubuntu 22.04,Emmabuntus 1.Buster, Debian 12.buster, Hybryde 14.04, Pas d'OS intermédiaire ! PC Medion AKOYA DD 1T + 2 .
Hors ligne
#1989 Le 09/05/2020, à 11:09
- YannUbuntu
Re : [Réparateur de démarrage] Développement du logiciel Boot-Repair
Erreur '/usr/share/boot-sav/bs-cmd_terminal.sh: ligne 81: this_part_is_esp : commande introuvable' (empeche la detection des ESP) corrigée dans 4ppa106
à consulter/améliorer: Guide du Débutant, Logiciels, Ecole, Travail, Maison
Hors ligne
#1990 Le 09/05/2020, à 12:53
- Babdu89
Re : [Réparateur de démarrage] Développement du logiciel Boot-Repair
Alors avec le PPA106. la commande;
bernard@bernard-System-Product-Name:~$ sudo boot-repair --bootinfo
[sudo] Mot de passe de bernard :
Error: The backup GPT table is corrupt, but the primary appears OK, so that will be used.
Windows not detected by os-prober on sda1.
Linux not detected by os-prober on sdb2. Veuillez indiquer ce message à boot.repair@gmail.com
La table de partitions GPT de sauvegarde est corrompue, mais la primaire semble fonctionnelle, elle sera donc utilisée.
=================== sda3saved_entry=gnulinux-simple-26681ab0-c120-4797-b95e-7d0cfa960dd7/grub/grubenv :
saved_entry=gnulinux-simple-26681ab0-c120-4797-b95e-7d0cfa960dd7
=================== /boot/efi detected in the fstab of sdb3: UUID=92C8-E043 (sdb1)
=================== sdb3saved_entry=osprober-chain-FA2AC6152AC5CF37
recordfail=1/grub/grubenv :
saved_entry=osprober-chain-FA2AC6152AC5CF37
recordfail=1
=================== sdb2saved_entry=gnulinux-simple-26681ab0-c120-4797-b95e-7d0cfa960dd7/grub/grubenv :
saved_entry=gnulinux-simple-26681ab0-c120-4797-b95e-7d0cfa960dd7
[debug] sdb1 EFI part (detected by BIS but not in fstab) in another disk
Est-ce que sda (ATA LDLC) est un disque amovible ? [yes/no] n
boot-repair-4ppa106 [20200509_1347]
============================== 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 (,msdos3)/boot/grub. It also embeds following components:
modules
---------------------------------------------------------------------------
fshelp ext2 part_msdos biosdisk
---------------------------------------------------------------------------
=> Grub2 (v2.00) is installed in the MBR of /dev/sdb and looks at sector
34402304 of the same hard drive for core.img. core.img is at this location
and looks for (,gpt4)/boot/grub. It also embeds following components:
modules
---------------------------------------------------------------------------
fshelp ext2 part_gpt biosdisk
---------------------------------------------------------------------------
sda1: __________________________________________________________________________
File system: ntfs
Boot sector type: Windows 7/2008: NTFS
Boot sector info: No errors found in the Boot Parameter Block.
Operating System: Windows 7
Boot files: /bootmgr /Boot/BCD /Windows/System32/winload.exe
sda2: __________________________________________________________________________
File system: ext4
Boot sector type: -
Boot sector info:
Operating System: Ubuntu 14.04.6 LTS
Boot files: /boot/grub/grub.cfg /etc/fstab /etc/default/grub
/boot/extlinux/extlinux.conf
/boot/grub/i386-pc/core.img
sda3: __________________________________________________________________________
File system: ext4
Boot sector type: -
Boot sector info:
Operating System: Ubuntu 18.04.4 LTS
Boot files: /boot/grub/grub.cfg /etc/fstab /etc/default/grub
/boot/grub/i386-pc/core.img
sdb1: __________________________________________________________________________
File system: vfat
Boot sector type: FAT32
Boot sector info: No errors found in the Boot Parameter Block.
Operating System:
Boot files: /efi/Boot/bootx64.efi /efi/ubuntu/grubx64.efi
/efi/ubuntu/MokManager.efi /efi/ubuntu/shimx64.efi
/efi/ubuntu/grub.cfg
sdb2: __________________________________________________________________________
File system: BIOS Boot partition
Boot sector type: Grub2's core.img
Boot sector info:
sdb3: __________________________________________________________________________
File system: ext4
Boot sector type: -
Boot sector info:
Operating System: Ubuntu 14.04.1 LTS
Boot files: /boot/grub/grub.cfg /etc/fstab /etc/default/grub
sdb4: __________________________________________________________________________
File system: ext4
Boot sector type: -
Boot sector info:
Operating System: Ubuntu 18.04.4 LTS
Boot files: /boot/grub/grub.cfg /etc/fstab /etc/default/grub
/boot/grub/i386-pc/core.img
sdb5: __________________________________________________________________________
File system: vfat
Boot sector type: FAT32
Boot sector info: No errors found in the Boot Parameter Block.
Operating System:
Boot files:
================================ 6 OS detected =================================
OS#1: L'OS actuellement utilisé - Ubuntu 18.04.4 LTS CurrentSession on sda3
OS#2: Ubuntu 14.04.6 LTS on sda2
OS#3: Ubuntu 14.04.1 LTS on sdb3
OS#4: Ubuntu 18.04.4 LTS on sdb4
OS#5: Windows on sda1
OS#6: Linux on sdb2
============================ Architecture/Host Info ============================
CPU architecture: 64-bit
BOOT_IMAGE of the installed session in use:
/boot/vmlinuz-4.15.0-99-generic root=UUID=26681ab0-c120-4797-b95e-7d0cfa960dd7 ro quiet splash
===================================== UEFI =====================================
BIOS is EFI-compatible, and is setup in EFI-mode for this installed-session.
efibootmgr -v
BootCurrent: 0006
Timeout: 2 seconds
BootOrder: 0000,0002,0001,0003,0004,0006,0007
Boot0000 Diskette Drive BBS(Floppy,,0x0)
Boot0001* Internal HDD BBS(HD,,0x0)P0: LDLC .
Boot0002* USB Storage Device BBS(USB,,0x0)USB Storage Device.
Boot0003* CD/DVD/CD-RW Drive BBS(CDROM,,0x0)P1: TSSTcorp DVD+/-RW TS-U633J.
Boot0004 Onboard NIC BBS(Network,,0x0)
Boot0006* ubuntu HD(1,GPT,c279ab17-8851-4486-b8fb-7ae86a52026d,0x2007000,0xc8000)/File(I
untu\shimx64.efi)
Boot0007 UEFI: INT13(USB,0x80) PciRoot(0x0)/Pci(0x1d,0x0)/VenHw(aa7ba38a-dabf-40c3-8d18-b55b39609ef7,8001000000005553422020202020ffffffffffffffffffffffffffffffffffffffffffffffff)/HD(1,GPT,c279ab17-8851-4486-b8fb-7ae86a52026d,0x2007000,0xc8000)
ded965934506efb38a6dcb9ac5b2b79e sdb1/Boot/bootx64.efi
0b48de05c935c48c9e4a94fa820c32ba sdb1/ubuntu/grubx64.efi
ba8a7979ac57f1c0c307ef94d1020eb8 sdb1/ubuntu/MokManager.efi
ded965934506efb38a6dcb9ac5b2b79e sdb1/ubuntu/shimx64.efi
============================= Drive/Partition Info =============================
Disks info: ____________________________________________________________________
sda : notGPT, no-BIOSboot, has-noESP, not-usb, not-mmc, has-os, 2048 sectors * 512 bytes
sdb : is-GPT, hasBIOSboot, has---ESP, usb-disk, not-mmc, has-os, 2048 sectors * 512 bytes
Partitions info (1/3): _________________________________________________________
sda3 : is-os, 64, apt-get, grub-pc , grub2, grub-install, grubenv-ng, update-grub, farbios
sda1 : is-os, 32, nopakmgr, no-docgrub, nogrub, nogrubinstall, no-grubenv, noupdategrub, not-far
sda2 : is-os, 32, apt-get, grub-pc , grub2, grub-install, grubenv-ok, update-grub, not-far
sdb1 : no-os, 32, nopakmgr, no-docgrub, nogrub, nogrubinstall, no-grubenv, noupdategrub, not-far
sdb3 : is-os, 64, apt-get, signed grub-efi , grub2, grub-install, grubenv-ng, update-grub, not-far
sdb4 : is-os, 64, apt-get, grub-pc , grub2, grub-install, grubenv-ok, update-grub, not-far
sdb5 : no-os, 32, nopakmgr, no-docgrub, nogrub, nogrubinstall, no-grubenv, noupdategrub, not-far
sdb2 : is-os, 64, apt-get, grub-pc , grub2, grub-install, grubenv-ng, update-grub, not-far
Partitions info (2/3): _________________________________________________________
sda3 : isnotESP, fstab-without-efi, notbiosboot, no-nt, no-winload, no-recov-nor-hid, no-bmgr, notwinboot
sda1 : isnotESP, part-has-no-fstab, notbiosboot, no-nt, haswinload, no-recov-nor-hid, bootmgr, is-winboot
sda2 : isnotESP, fstab-without-efi, notbiosboot, no-nt, no-winload, no-recov-nor-hid, no-bmgr, notwinboot
sdb1 : is---ESP, part-has-no-fstab, notbiosboot, no-nt, no-winload, no-recov-nor-hid, no-bmgr, notwinboot
sdb3 : isnotESP, fstab-has-goodEFI, notbiosboot, no-nt, no-winload, no-recov-nor-hid, no-bmgr, notwinboot
sdb4 : isnotESP, fstab-without-efi, notbiosboot, no-nt, no-winload, no-recov-nor-hid, no-bmgr, notwinboot
sdb5 : isnotESP, part-has-no-fstab, notbiosboot, no-nt, no-winload, no-recov-nor-hid, no-bmgr, notwinboot
sdb2 : isnotESP, fstab-without-efi, is-biosboot, no-nt, no-winload, no-recov-nor-hid, no-bmgr, notwinboot
Partitions info (3/3): _________________________________________________________
sda3 : not-sepboot, with-boot, fstab-without-boot, not-sep-usr, with--usr, fstab-without-usr, std-grub.d, sda
sda1 : not-sepboot, no-boot, part-has-no-fstab, not-sep-usr, no---usr, part-has-no-fstab, std-grub.d, sda
sda2 : not-sepboot, with-boot, fstab-without-boot, not-sep-usr, with--usr, fstab-without-usr, std-grub.d, sda
sdb1 : not-sepboot, no-boot, part-has-no-fstab, not-sep-usr, no---usr, part-has-no-fstab, std-grub.d, sdb
sdb3 : not-sepboot, with-boot, fstab-without-boot, not-sep-usr, with--usr, fstab-without-usr, std-grub.d, sdb
sdb4 : not-sepboot, with-boot, fstab-without-boot, not-sep-usr, with--usr, fstab-without-usr, std-grub.d, sdb
sdb5 : not-sepboot, no-boot, part-has-no-fstab, not-sep-usr, no---usr, part-has-no-fstab, std-grub.d, sdb
sdb2 : not-sepboot, with-boot, fstab-without-boot, not-sep-usr, with--usr, fstab-without-usr, std-grub.d, sdb
fdisk -l (filtered): ___________________________________________________________
Disk sda: 111.8 GiB, 120034123776 bytes, 234441648 sectors
Disk identifier: 0x00040603
Boot Start End Sectors Size Id Type
sda1 * 2048 56383487 56381440 26.9G 7 HPFS/NTFS/exFAT
sda2 56383488 167847935 111464448 53.2G 83 Linux
sda3 167847936 234440703 66592768 31.8G 83 Linux
Disk sdb: 58.9 GiB, 63216549888 bytes, 123469824 sectors
Disk identifier: ECB2E9FC-2892-4570-89E6-CBFC2C80BF0F
Start End Sectors Size Type
sdb1 33583104 34402303 819200 400M EFI System
sdb2 34402304 35426303 1024000 500M BIOS boot
sdb3 35426304 79447788 44021485 21G Linux filesystem
sdb4 79448064 123467595 44019532 21G Linux filesystem
sdb5 2048 33583103 33581056 16G Microsoft basic data
Partition table entries are not in disk order.
parted -lm (filtered): _________________________________________________________
sda:120GB:scsi:512:512:msdos:ATA LDLC:;
1:1049kB:28.9GB:28.9GB:ntfs::boot;
2:28.9GB:85.9GB:57.1GB:ext4::;
3:85.9GB:120GB:34.1GB:ext4::;
sdb:63.2GB:scsi:512:512:gpt: USB DISK 3.0:;
5:1049kB:17.2GB:17.2GB:fat32::msftdata;
1:17.2GB:17.6GB:419MB:fat32::boot, esp;
2:17.6GB:18.1GB:524MB:::bios_grub;
3:18.1GB:40.7GB:22.5GB:ext4::;
4:40.7GB:63.2GB:22.5GB:ext4::;
blkid (filtered): ______________________________________________________________
NAME FSTYPE UUID PARTUUID LABEL PARTLABEL
sda
├─sda1 ntfs FA2AC6152AC5CF37 00040603-01 windows-7-del
├─sda2 ext4 8c69f945-f41d-4f8c-83bd-81d4a28efb15 00040603-02 fusion14.04-dell
└─sda3 ext4 26681ab0-c120-4797-b95e-7d0cfa960dd7 00040603-03 ubu-18.04-dell
sdb
├─sdb1 vfat 92C8-E043 c279ab17-8851-4486-b8fb-7ae86a52026d
├─sdb2 1f6dd8ce-568c-4617-9138-bb17d3c624a5
├─sdb3 ext4 72a66c99-76c9-420b-b133-77d8811a67f5 fcb240a0-cd9d-4f0f-829f-fac324612298 xubuntu-efi
├─sdb4 ext4 cb4fb6ab-daa4-405d-a278-99d4c4ca5e63 75c298a7-c048-4426-8ee7-943d786ea1f2 SB@
└─sdb5 vfat 0669-366B ee32a4b8-08a9-4165-b9e8-cf034813eaf5 test-multi
df (filtered): _________________________________________________________________
Avail Use% Mounted on
sda1 1.1G 96% /mnt/boot-sav/sda1
sda2 2.1G 91% /mnt/boot-sav/sda2
sda3 3.5G 84% /
sdb1 394.6M 1% /mnt/boot-sav/sdb1
sdb3 15.3G 20% /media/bernard/xubuntu-efi
sdb4 4.2G 74% /media/bernard/SB@
sdb5 2.2G 87% /media/bernard/test-multi
Mount options: __________________________________________________________________
sda1 rw,relatime,user_id=0,group_id=0,allow_other,blksize=4096
sda2 rw,relatime,data=ordered
sda3 rw,noatime,errors=remount-ro,data=ordered
sdb1 rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro
sdb3 rw,nosuid,nodev,relatime,stripe=32639,data=ordered
sdb4 rw,nosuid,nodev,relatime,data=ordered
sdb5 rw,nosuid,nodev,relatime,uid=1000,gid=1000,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,showexec,utf8,flush,errors=remount-ro
====================== sda2/boot/grub/grub.cfg (filtered) ======================
Ubuntu
Ubuntu, avec Linux 3.13.0-170-generic
Ubuntu, avec Linux 3.13.0-169-generic
### END /etc/grub.d/30_uefi-firmware ###
========================== sda2/etc/fstab (filtered) ===========================
# <file system> <mount point> <type> <options> <dump> <pass>
UUID=8c69f945-f41d-4f8c-83bd-81d4a28efb15 / ext4 noatime,errors=remount-ro 0 1
======================= sda2/etc/default/grub (filtered) =======================
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=""
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"
#GRUB_TERMINAL=console
#GRUB_GFXMODE=640x480
#GRUB_DISABLE_LINUX_UUID=true
#GRUB_DISABLE_RECOVERY="true"
#GRUB_INIT_TUNE="480 440 1"
================= sda2/boot/extlinux/extlinux.conf (filtered) ==================
default l0
prompt 1
timeout 50
include themes/debian/theme.cfg
==================== sda2: Location of files loaded by Grub ====================
GiB - GB File Fragment(s)
77.020198822 = 82.699808768 boot/grub/grub.cfg 1
62.708003998 = 67.332206592 boot/grub/i386-pc/core.img 1
77.017700195 = 82.697125888 boot/vmlinuz-3.13.0-169-generic 1
77.030231476 = 82.710581248 boot/vmlinuz-3.13.0-170-generic 1
77.030231476 = 82.710581248 vmlinuz 1
77.017700195 = 82.697125888 vmlinuz.old 1
56.677722931 = 60.857241600 boot/initrd.img-3.13.0-169-generic 2
56.633579254 = 60.809842688 boot/initrd.img-3.13.0-170-generic 2
56.633579254 = 60.809842688 initrd.img 2
56.677722931 = 60.857241600 initrd.img.old 2
================== sda2: Location of files loaded by Syslinux ==================
GiB - GB File Fragment(s)
77.011077881 = 82.690015232 boot/extlinux/extlinux.conf 1
77.011859894 = 82.690854912 boot/extlinux/chain.c32 1
=============== sda2: Version of COM32(R) files used by Syslinux ===============
boot/extlinux/chain.c32 : COM32R module (v4.xx)
====================== sda3/boot/grub/grub.cfg (filtered) ======================
Ubuntu
Ubuntu, with Linux 4.15.0-99-generic
Ubuntu, with Linux 4.15.0-96-generic
Windows 7 (on /dev/sda1)
Ubuntu 14.04.6 LTS (14.04) (on /dev/sda2)
Ubuntu (on /dev/sda2)
Ubuntu, avec Linux 3.13.0-170-generic (on /dev/sda2)
Ubuntu, avec Linux 3.13.0-169-generic (on /dev/sda2)
### END /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_uefi-firmware ###
Iso Live ubuntu-budgie-17.04-desktop-i386.iso dans cle USB3-Emtec
Iso Live ubuntu-17.10-desktop-amd64.iso dans cle USB3-Emtec
Iso Live ubuntu-18.04.2-desktop-amd64.iso dans partition Windows-7-dell
Iso Live ubuntu-18.04.2-desktop-amd64.iso dans partition systeme-fusion-dell
Iso Live ubuntu-19.10-desktop-amd64.iso dans partition systeme-fusion-dell
========================== sda3/etc/fstab (filtered) ===========================
# <file system> <mount point> <type> <options> <dump> <pass>
UUID=26681ab0-c120-4797-b95e-7d0cfa960dd7 / ext4 noatime,errors=remount-ro 0 1
======================= sda3/etc/default/grub (filtered) =======================
GRUB_SAVEDEFAULT="true"
GRUB_DEFAULT="saved"
#GRUB_DEFAULT=0
#GRUB_TIMEOUT_STYLE=hidden
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"
#GRUB_TERMINAL=console
#GRUB_GFXMODE=640x480
#GRUB_DISABLE_LINUX_UUID=true
#GRUB_DISABLE_RECOVERY="true"
#GRUB_INIT_TUNE="480 440 1"
==================== sda3: Location of files loaded by Grub ====================
GiB - GB File Fragment(s)
108.161819458 = 116.137869312 boot/grub/grub.cfg 1
95.091625214 = 102.103855104 boot/grub/i386-pc/core.img 1
83.985332489 = 90.178564096 boot/vmlinuz-4.15.0-96-generic 2
106.528308868 = 114.383900672 boot/vmlinuz-4.15.0-99-generic 1
106.528308868 = 114.383900672 vmlinuz 1
83.985332489 = 90.178564096 vmlinuz.old 2
107.698913574 = 115.640827904 boot/initrd.img-4.15.0-96-generic 4
107.691856384 = 115.633250304 boot/initrd.img-4.15.0-99-generic 4
107.691856384 = 115.633250304 initrd.img 4
107.698913574 = 115.640827904 initrd.img.old 4
===================== sdb1/efi/ubuntu/grub.cfg (filtered) ======================
search.fs_uuid 72a66c99-76c9-420b-b133-77d8811a67f5 root hd1,gpt3
set prefix=($root)'/boot/grub'
configfile $prefix/grub.cfg
====================== sdb3/boot/grub/grub.cfg (filtered) ======================
XUBUNTU 14.04 EFI GNU/Linux-usb-EMTEC
UBUNTU-18.04-usb-EMTEC
HYBRYDE FUSION 14.04_Dell-Latitude-E4310 GNU/Linux
Windows 7 (loader) (sur /dev/sda1)
------------------- Menu Grub Classique -------------------
XUBUNTU 14.04 EFI GNU/Linux
XUBUNTU 14.04 EFI GNU/Linux, avec Linux 3.13.0-117-generic
XUBUNTU 14.04 EFI GNU/Linux, avec Linux 3.13.0-32-generic
EFI/ubuntu/MokManager.efi
Ubuntu 14.04.6 LTS (14.04) (sur /dev/sda2)
Ubuntu (sur /dev/sda2)
Ubuntu, avec Linux 3.13.0-170-generic (sur /dev/sda2)
Ubuntu, avec Linux 3.13.0-169-generic (sur /dev/sda2)
Ubuntu 18.04.4 LTS (18.04) (sur /dev/sda3)
Ubuntu (sur /dev/sda3)
Ubuntu, with Linux 4.15.0-99-generic (sur /dev/sda3)
Ubuntu, with Linux 4.15.0-96-generic (sur /dev/sda3)
Ubuntu 18.04.4 LTS (18.04) (sur /dev/sdb4)
Ubuntu (sur /dev/sdb4)
Ubuntu, avec Linux 4.15.0-91-generic (sur /dev/sdb4)
Ubuntu, avec Linux 4.15.0-88-generic (sur /dev/sdb4)
Ubuntu, avec Linux 4.15.0-76-generic (sur /dev/sdb4)
Ubuntu 18.04.4 LTS (18.04) (sur /dev/sda3) (sur /dev/sdb4)
Ubuntu (sur /dev/sda3) (sur /dev/sdb4)
Ubuntu, avec Linux 4.15.0-91-generic (sur /dev/sda3) (sur /dev/sdb4)
Ubuntu, avec Linux 4.15.0-88-generic (sur /dev/sda3) (sur /dev/sdb4)
Ubuntu, avec Linux 4.15.0-76-generic (sur /dev/sda3) (sur /dev/sdb4)
### END /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_uefi-firmware ###
Iso Live ubuntu-budgie-17.04-desktop-i386.iso dans cle USB3
Iso Live ubuntu-artful-desktop-amd64.iso dans cle USB3-Emtec
Iso Live Ubuntu17.10-desktop-amd64.iso dans cle USB3-Emtec
========================== sdb3/etc/fstab (filtered) ===========================
# <file system> <mount point> <type> <options> <dump> <pass>
# / was on /dev/sdb3 during installation
UUID=72a66c99-76c9-420b-b133-77d8811a67f5 / ext4 errors=remount-ro 0 1
# /boot/efi was on /dev/sdb1 during installation
UUID=92C8-E043 /boot/efi vfat defaults 0 1
======================= sdb3/etc/default/grub (filtered) =======================
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_DISTRIBUTOR=`echo -n XUBUNTU 14.04 EFI`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"
#GRUB_TERMINAL=console
#GRUB_GFXMODE=640x480
#GRUB_DISABLE_LINUX_UUID=true
#GRUB_DISABLE_RECOVERY="true"
#GRUB_INIT_TUNE="480 440 1"
==================== sdb3: Location of files loaded by Grub ====================
GiB - GB File Fragment(s)
35.552764893 = 38.174490624 boot/grub/grub.cfg 2
19.077713013 = 20.484538368 boot/vmlinuz-3.13.0-117-generic 2
19.308181763 = 20.732002304 boot/vmlinuz-3.13.0-117-generic.efi.signed 1
17.878444672 = 19.196833792 boot/vmlinuz-3.13.0-32-generic 2
17.878444672 = 19.196833792 vmlinuz 2
21.895526886 = 23.510142976 boot/initrd.img-3.13.0-117-generic 2
19.528972626 = 20.969074688 boot/initrd.img-3.13.0-32-generic 2
19.528972626 = 20.969074688 initrd.img 2
19.528972626 = 20.969074688 initrd.img.old 2
====================== sdb4/boot/grub/grub.cfg (filtered) ======================
Ubuntu
Ubuntu, avec Linux 4.15.0-91-generic
Ubuntu, avec Linux 4.15.0-88-generic
Ubuntu, avec Linux 4.15.0-76-generic
Windows 7 (sur /dev/sda1)
Ubuntu 14.04.6 LTS (14.04) (sur /dev/sda2)
HYBRYDE FUSION 14.04_Dell GNU/Linux (sur /dev/sda2)
HYBRYDE FUSION 14.04_Dell GNU/Linux, avec Linux 3.13.0-170-generic (sur /dev/sda2)
HYBRYDE FUSION 14.04_Dell GNU/Linux, avec Linux 3.13.0-169-generic (sur /dev/sda2)
Ubuntu 18.04.4 LTS (18.04) (sur /dev/sda3)
Ubuntu (sur /dev/sda3)
Ubuntu, avec Linux 4.15.0-91-generic (sur /dev/sda3)
Ubuntu, avec Linux 4.15.0-88-generic (sur /dev/sda3)
Ubuntu, avec Linux 4.15.0-76-generic (sur /dev/sda3)
Ubuntu 14.04.1 LTS (14.04) (sur /dev/sdb3)
XUBUNTU 14.04 EFI GNU/Linux-usb-EMTEC (sur /dev/sdb3)
XUBUNTU 14.04 EFI GNU/Linux (sur /dev/sdb3)
XUBUNTU 14.04 EFI GNU/Linux, avec Linux 3.13.0-117-generic (sur /dev/sdb3)
XUBUNTU 14.04 EFI GNU/Linux, avec Linux 3.13.0-32-generic (sur /dev/sdb3)
### END /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_uefi-firmware ###
========================== sdb4/etc/fstab (filtered) ===========================
# <file system> <mount point> <type> <options> <dump> <pass>
UUID=cb4fb6ab-daa4-405d-a278-99d4c4ca5e63 / ext4 noatime,errors=remount-ro 0 1
======================= sdb4/etc/default/grub (filtered) =======================
GRUB_DEFAULT=0
#GRUB_TIMEOUT_STYLE=hidden
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"
#GRUB_TERMINAL=console
#GRUB_GFXMODE=640x480
#GRUB_DISABLE_LINUX_UUID=true
#GRUB_DISABLE_RECOVERY="true"
#GRUB_INIT_TUNE="480 440 1"
==================== sdb4: Location of files loaded by Grub ====================
GiB - GB File Fragment(s)
44.531250000 = 47.815065600 boot/grub/grub.cfg 2
54.364910126 = 58.373877760 boot/grub/i386-pc/core.img 1
42.829078674 = 45.987373056 boot/vmlinuz-4.15.0-76-generic 2
57.391582489 = 61.623742464 boot/vmlinuz-4.15.0-88-generic 1
44.243148804 = 47.505719296 boot/vmlinuz-4.15.0-91-generic 1
44.243148804 = 47.505719296 vmlinuz 1
57.391582489 = 61.623742464 vmlinuz.old 1
49.195579529 = 52.823351296 boot/initrd.img-4.15.0-76-generic 1
49.140892029 = 52.764631040 boot/initrd.img-4.15.0-88-generic 3
49.429954529 = 53.075009536 boot/initrd.img-4.15.0-91-generic 4
49.429954529 = 53.075009536 initrd.img 4
49.140892029 = 52.764631040 initrd.img.old 3
================================= User choice ==================================
Is sda (ATA LDLC) a removable disk? no
Suggested repair: ______________________________________________________________
The default repair of the Boot-Repair utility would reinstall the grub2 of
sda3 into the MBRs of all disks (except live-disks and removable disks without OS).
Grub-efi would not be selected by default because: no-win-efi
Additional repair would be performed: unhide-bootmenu-10s
Advice in case of suggested repair: ____________________________________________
EFI detected. You may want to retry after activating the [Separate /boot/efi partition:] option.
Do you want to continue?
Final advice in case of suggested repair: ______________________________________
Please do not forget to make your BIOS boot on sda (ATA LDLC) disk!
bernard@bernard-System-Product-Name:~$
Error: The backup GPT table is corrupt, but the primary appears OK, so that will be used.
Je traîne cette erreur sur la clé USB de test depuis les installations des systèmes. Même Gparted râle avec cette clé.
Ce n'est pas boot-repair qui est en cause.
Pour les rectangles, pas de changement avec le ppa106.
@+. Babdu89 .
Dernière modification par Babdu89 (Le 09/05/2020, à 12:58)
J'ai découvert Ubuntu avec la 07.10.... Et alors?!... Depuis je regarde de temps en temps si Windows marche toujours....
Hors ligne
#1991 Le 09/05/2020, à 13:16
- geole
Re : [Réparateur de démarrage] Développement du logiciel Boot-Repair
Bonjour baldu89
Pour remettre en état la duplication de la table de partition GPT, il faut utiliser la commande sudo gdisk /dev/sdX
en te laissant guider (En frappant le caractère ?) et en choisissant l'option d
d Use main GPT header and rebuild the backup. This option is
likely to be useful if the backup GPT header has been damaged or
destroyed.
Dernière modification par geole (Le 09/05/2020, à 13:18)
Les grilles de l'installateur https://doc.ubuntu-fr.org/tutoriel/inst … _subiquity
"gedit admin:///etc/fstab" est proscrit, utilisez "pkexec env DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY xdg-open /etc/fstab" Voir https://doc.ubuntu-fr.org/gedit
Les partitions EXT4 des disques externes => https://forum.ubuntu-fr.org/viewtopic.p … #p22697248
Hors ligne
#1992 Le 09/05/2020, à 14:51
- Babdu89
Re : [Réparateur de démarrage] Développement du logiciel Boot-Repair
Bonjour geole.
bernard@bernard-System-Product-Name:~$ sudo gdisk /dev/sdb
[sudo] Mot de passe de bernard :
GPT fdisk (gdisk) version 1.0.3
Caution: invalid backup GPT header, but valid main header; regenerating
backup header from main header.
Partition table scan:
MBR: protective
BSD: not present
APM: not present
GPT: damaged
****************************************************************************
Caution: Found protective or hybrid MBR and corrupt GPT. Using GPT, but disk
verification and recovery are STRONGLY recommended.
****************************************************************************
Command (? for help): d
Partition number (1-5):
Qu'est-ce que je fais maintenant?.
@+. Babdu89 .
J'ai découvert Ubuntu avec la 07.10.... Et alors?!... Depuis je regarde de temps en temps si Windows marche toujours....
Hors ligne
#1993 Le 09/05/2020, à 15:28
- geole
Re : [Réparateur de démarrage] Développement du logiciel Boot-Repair
Tu recommences depuis le début en frappant un ? pour savoir ce qu'il propose, car il est possible que le caractère de commande soit différant de ce que le man indique et surtout du niveau de récupération.
exemple dans un contexte de clé USB formatée ms-dos
a@a:~$ sudo gdisk /dev/sdb
[sudo] Mot de passe de a :
GPT fdisk (gdisk) version 1.0.3
Partition table scan:
MBR: MBR only
BSD: not present
APM: not present
GPT: not present
***************************************************************
Found invalid GPT and valid MBR; converting MBR to GPT format
in memory. THIS OPERATION IS POTENTIALLY DESTRUCTIVE! Exit by
typing 'q' if you don't want to convert your MBR partitions
to GPT format!
***************************************************************
Warning! Secondary partition table overlaps the last partition by
33 blocks!
You will need to delete this partition or resize it in another utility.
Command (? for help): ?
b back up GPT data to a file
c change a partition's name
d delete a partition
i show detailed information on a partition
l list known partition types
n add a new partition
o create a new empty GUID partition table (GPT)
p print the partition table
q quit without saving changes
r recovery and transformation options (experts only)
s sort partitions
t change a partition's type code
v verify disk
w write table to disk and exit
x extra functionality (experts only)
? print this menu
Command (? for help): q
a@a:~$
avec la commande d je suis parti dans la séquence pour supprimer une partition!.
A ce niveau, il faut faire la commande r puis de nouveau ? pour avoir la liste des sous-commandes
d est alors présent ainsi que w pour valider l'écriture.
Dernière modification par geole (Le 09/05/2020, à 15:35)
Les grilles de l'installateur https://doc.ubuntu-fr.org/tutoriel/inst … _subiquity
"gedit admin:///etc/fstab" est proscrit, utilisez "pkexec env DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY xdg-open /etc/fstab" Voir https://doc.ubuntu-fr.org/gedit
Les partitions EXT4 des disques externes => https://forum.ubuntu-fr.org/viewtopic.p … #p22697248
Hors ligne
#1994 Le 09/05/2020, à 16:02
- Babdu89
Re : [Réparateur de démarrage] Développement du logiciel Boot-Repair
Alors, j'en suis là;
bernard@bernard-System-Product-Name:~$ sudo gdisk /dev/sdb
[sudo] Mot de passe de bernard :
GPT fdisk (gdisk) version 1.0.3
Caution: invalid backup GPT header, but valid main header; regenerating
backup header from main header.
Partition table scan:
MBR: protective
BSD: not present
APM: not present
GPT: damaged
****************************************************************************
Caution: Found protective or hybrid MBR and corrupt GPT. Using GPT, but disk
verification and recovery are STRONGLY recommended.
****************************************************************************
Command (? for help): ?
b back up GPT data to a file
c change a partition's name
d delete a partition
i show detailed information on a partition
l list known partition types
n add a new partition
o create a new empty GUID partition table (GPT)
p print the partition table
q quit without saving changes
r recovery and transformation options (experts only)
s sort partitions
t change a partition's type code
v verify disk
w write table to disk and exit
x extra functionality (experts only)
? print this menu
Command (? for help): r
Recovery/transformation command (? for help): ?
b use backup GPT header (rebuilding main)
c load backup partition table from disk (rebuilding main)
d use main GPT header (rebuilding backup)
e load main partition table from disk (rebuilding backup)
f load MBR and build fresh GPT from it
g convert GPT into MBR and exit
h make hybrid MBR
i show detailed information on a partition
l load partition data from a backup file
m return to main menu
o print protective MBR data
p print the partition table
q quit without saving changes
t transform BSD disklabel partition
v verify disk
w write table to disk and exit
x extra functionality (experts only)
? print this menu
Recovery/transformation command (? for help): d
Recovery/transformation command (? for help): w
Final checks complete. About to write GPT data. THIS WILL OVERWRITE EXISTING
PARTITIONS!!
Do you want to proceed? (Y/N):
je valide Y ou pas?;
Merci de l'aide.
@+. Babdu89 .
J'ai découvert Ubuntu avec la 07.10.... Et alors?!... Depuis je regarde de temps en temps si Windows marche toujours....
Hors ligne
#1995 Le 09/05/2020, à 23:51
- YannUbuntu
Re : [Réparateur de démarrage] Développement du logiciel Boot-Repair
Merci pour vos retours.
ppa107:
boot-repair n'analysera plus les partitions de TYPE=crypt* . Geole, ça devrait te faire un boot-info plus propre. Stp peux-tu m'indiquer ton boot-info complet ça m'aiderait à voir s'il ne reste pas des trucs à ameliorer pour ta config.
purge grub par defaut quand detecte grubenv. (avec possibilité de ne pas purger dans options avancees)
n'affichera plus les warning de type 'Windows not detected by os-prober'
Toujours pas trouvé d'où vient le pb d'affichage efibootmgr. Si vous voyez un boot-info récent (ppa99 ou +) qui n'a PAS ce soucis, dites-le moi svp ça pourrait nous donner une piste.
Geole, le warning ibus tu l'as systématiquement ?
Babdu, ta partition sdb2 est spéciale, c'est un BIOS_boot qui contient un OS ? c'est quoi comme OS ?
à consulter/améliorer: Guide du Débutant, Logiciels, Ecole, Travail, Maison
Hors ligne
#1996 Le 09/05/2020, à 23:56
- Babdu89
Re : [Réparateur de démarrage] Développement du logiciel Boot-Repair
@Yann, réponse demain car c'est un peu long a expliquer.
Babdu, ta partition sdb2 est spéciale, c'est un BIOS_boot qui contient un OS ? c'est quoi comme OS ?
Bonjour.
Comme on peut le constater, je m'intéresse avec mes moyens, aux installations et réparations démarrage système.
Jusqu'à maintenant, je ne disposait pas de machine démarrant en UEFI. c'est chose faite.
Je suivais donc à distance les sujets concernant l'UEFI.
J'ai des clés USB Multisystem qui ont été crées en mode Bios-Legacy, mais supportant l'UEFI, et dont le MultiSystem est maintenu à jour..
Lorsque j'ai pu en démarrer une en mode UEFI, elle à démarré sur la première iso disponible, et c'était un Ubuntu Hybryde Fusion 14.04 en 32 bits.
Session live démarrée je fais un boot_info pour voir ce qu'il en retourne. Et le boot info indique machine démarrée en mode UEFI, iso pour faire le boot info Ubuntu 14.04 en 32 bits.
Tient, une iso 32 bits qui démarre en UEFI?... il y avait plusieurs sujets sur le forum, concernant des problèmes d'installations mixte UEFI/Bios_Legacy.
Notamment des installations en Bios_Legacy des 14.04 et suivant sur des disques table de partitions GPT, qui foiraient faute de présence de partition bios-boot, pour y loger le core.img. Les contributeurs de l'époque malbo et Nasman.
Comme j'avais constater de mon coté la possibilité de lancer des sessions live 32 bits depuis le menu Grub de clés MultiSystem démarré en UEFI.
Par curiosité et j'ai donc réé une clé USB de test, avec comme idée de voir et tester ce qu'il se passe en mélangeant les possibilités de démarrer des installations faites sur cette clé dans les deux modes.
Donc la clé de tests qui sert actuellement à faire les tests et boot info de notre sujet.
Alors table de partition de type GPT.
Une première partition /dev/sdb1 Fat32 efi drapeau boot-esp. Pour installer et démarrer en UEFI
Une partition /dev/sdb2 sans format drapeau boot-bios (bios-grub). Pour installer et démarrer en mode Bios_Legacy
Une partition FAT32 /dev/sdb5 pour y loger des données
Et les partitions /dev/sdb3 et 4 pour les installations de tests.
La première installation, machine démarrée en mode UEFI sur /dev/sdb3, d'un Xubuntu-efi 14.04.
La deuxième installation, machine démarrée en mode Bios_Legacy d'un Ubuntu 18.04 actuel.
Puis pour voir comment ce comporte le démarrage en mode Bios_Legacy de l'Os Xubuntu-efi. En session live démarrée en mode Bios_Legacy, avec boot-repair, réinstallation d'un Gru-pc dans l'Os installé en /dev/sdb3. En mettant la première partie de grub dans le mbr protective de /dev/sdb.
Donc le Xubuntu-efi démarrait en Bios_Legacy, depuis le grub à jour du Ubuntu 18.04 installé en Bios_Legacy, machine démarrée en Bios_Legacy, et encore en Mode UEFI, machine lancée en UEFI.
Alors par curiosité, j'ai en session live UEFI avec boot-repair, réinstallé un Grub-efi dans le Xubuntu-efi /dev/sdb3, pour avoir dans le menu Grub-efi au démarrage tous les systèmes de la config proposés au démarrage en mode UEFI.
C'est à ce moment que j'ai constaté des messages d'erreur concernant la table de partition en GPT avec les boot info et Gparted. Mais çà démarre et fonctionne quand même.
Alors clé démarrée en mode UEFI. Je peux lancer tous les systèmes de la config sauf Windows. Il y a aussi un Ubuntu 14.04 32 bits installé dans le disque interne qui démarre, machine lancée en UEFI.
Démarrage en mode Bios_Legacy. Je peux démarrer tous les systèmes de la config, Windows inclus.
Quelle conclusion en tirer?.
Je pense par exemple au système Ubuntu 14.04 32 bits installé sur le disque interne table de partition MSDos, il n'y a pas les fichiers efi dans /boot, démarré depuis un menu grub-efi d'une session de la machine démarré en UEFI.
Il faut séparer le mode de démarrage de la machine. setup is in efi session for...... vu dans les boot info
Le contenu du boot loader qui s'affiche, et qui permet de lancer les systèmes un foi la machine démarrée.
Sur cette clé, il me reste à tester une réinstallation d'un Grub-efi depuis une session live avec boot-repair, sur le Ubuntu 18.04 installé en mode Bios_Legacy, pour voir ce qu'il se passe.
Puis tester les commandes de geole pour réécrire une table de partition GPT sur la clé.
Pour ilustrer ce que je dis;
Exemple un boot info PPA108 fait depuis, état des lieux.
Machine SSD interne en MSDos avec;
Windows 7 en /dev/sda1
Ubuntu 14.04 32 bits en /dev/sda2
Ubuntu 18.04 en /dev/sda3
Clé USB de tests en GPT
Un Xubuntu 14.04-efi installé en mode UEFI en /dev/sdb3
Machine lancée en mode UEFI, démarrée sur la clé USB de tests. Lance le Xubuntu-efi /dev/sdb3.
Affichage du menu Grub de Xubuntu-efi lancé en mode UEFI.
Je lance le Ubuntu 18.04 du SSD en /dev/sda3.
Maj système proposée la mise à jour du PPA Boot-Repair PPA 108. Je fais le boot info suivant.
boot-info-4ppa108 [20200510_1253]
============================== 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 (,msdos3)/boot/grub. It also embeds following components:
modules
---------------------------------------------------------------------------
fshelp ext2 part_msdos biosdisk
---------------------------------------------------------------------------
=> Grub2 (v2.00) is installed in the MBR of /dev/sdb and looks at sector
34402304 of the same hard drive for core.img. core.img is at this location
and looks for (,gpt4)/boot/grub. It also embeds following components:
modules
---------------------------------------------------------------------------
fshelp ext2 part_gpt biosdisk
---------------------------------------------------------------------------
sda1: __________________________________________________________________________
File system: ntfs
Boot sector type: Windows 7/2008: NTFS
Boot sector info: No errors found in the Boot Parameter Block.
Operating System: Windows 7
Boot files: /bootmgr /Boot/BCD /Windows/System32/winload.exe
sda2: __________________________________________________________________________
File system: ext4
Boot sector type: -
Boot sector info:
Operating System: Ubuntu 14.04.6 LTS
Boot files: /boot/grub/grub.cfg /etc/fstab /etc/default/grub
/boot/extlinux/extlinux.conf
/boot/grub/i386-pc/core.img
sda3: __________________________________________________________________________
File system: ext4
Boot sector type: -
Boot sector info:
Operating System: Ubuntu 18.04.4 LTS
Boot files: /boot/grub/grub.cfg /etc/fstab /etc/default/grub
/boot/grub/i386-pc/core.img
sdb1: __________________________________________________________________________
File system: vfat
Boot sector type: FAT32
Boot sector info: No errors found in the Boot Parameter Block.
Operating System:
Boot files: /efi/Boot/bootx64.efi /efi/ubuntu/grubx64.efi
/efi/ubuntu/MokManager.efi /efi/ubuntu/shimx64.efi
/efi/ubuntu/grub.cfg
sdb2: __________________________________________________________________________
File system: BIOS Boot partition
Boot sector type: Grub2's core.img
Boot sector info:
sdb3: __________________________________________________________________________
File system: ext4
Boot sector type: -
Boot sector info:
Operating System: Ubuntu 14.04.1 LTS
Boot files: /boot/grub/grub.cfg /etc/fstab /etc/default/grub
sdb4: __________________________________________________________________________
File system: ext4
Boot sector type: -
Boot sector info:
Operating System: Ubuntu 18.04.4 LTS
Boot files: /boot/grub/grub.cfg /etc/fstab /etc/default/grub
/boot/grub/i386-pc/core.img
sdb5: __________________________________________________________________________
File system: vfat
Boot sector type: FAT32
Boot sector info: No errors found in the Boot Parameter Block.
Operating System:
Boot files:
================================ 8 OS detected =================================
OS#1: L'OS actuellement utilisé - Ubuntu 18.04.4 LTS CurrentSession on sda3
OS#2: Ubuntu 14.04.6 LTS on sda2
OS#3: Ubuntu 14.04.1 LTS on sdb3
OS#4: Ubuntu 18.04.4 LTS on sdb4
OS#5: Linux on sda1
OS#6: Linux on sdb1
OS#7: Linux on sdb5
OS#8: Ubuntu 18.04.4 LTS on sdb2
============================ Architecture/Host Info ============================
CPU architecture: 64-bit
BOOT_IMAGE of the installed session in use:
/boot/vmlinuz-4.15.0-99-generic root=UUID=26681ab0-c120-4797-b95e-7d0cfa960dd7 ro quiet splash
===================================== UEFI =====================================
BIOS is EFI-compatible, and is setup in EFI-mode for this installed-session.
efibootmgr -v
BootCurrent: 0006
Timeout: 2 seconds
BootOrder: 0000,0002,0001,0003,0004,0006,0007
Boot0000 Diskette Drive BBS(Floppy,,0x0)
Boot0001* Internal HDD BBS(HD,,0x0)P0: LDLC .
Boot0002* USB Storage Device BBS(USB,,0x0)USB Storage Device.
Boot0003* CD/DVD/CD-RW Drive BBS(CDROM,,0x0)P1: TSSTcorp DVD+/-RW TS-U633J.
Boot0004 Onboard NIC BBS(Network,,0x0)
Boot0006* ubuntu HD(1,GPT,c279ab17-8851-4486-b8fb-7ae86a52026d,0x2007000,0xc8000)/File(FIuntu\shimx64.efi)
Boot0007 UEFI: INT13(USB,0x80) PciRoot(0x0)/Pci(0x1d,0x0)/VenHw(aa7ba38a-dabf-40c3-8d18-b55b39609ef7,8001000000005553422020202020ffffffffffffffffffffffffffffffffffffffffffffffff)/HD(1,GPT,c279ab17-8851-4486-b8fb-7ae86a52026d,0x2007000,0xc8000)
ded965934506efb38a6dcb9ac5b2b79e sdb1/Boot/bootx64.efi
0b48de05c935c48c9e4a94fa820c32ba sdb1/ubuntu/grubx64.efi
ba8a7979ac57f1c0c307ef94d1020eb8 sdb1/ubuntu/MokManager.efi
ded965934506efb38a6dcb9ac5b2b79e sdb1/ubuntu/shimx64.efi
============================= Drive/Partition Info =============================
Disks info: ____________________________________________________________________
sda : notGPT, no-BIOSboot, has-noESP, not-usb, not-mmc, has-os, 2048 sectors * 512 bytes
sdb : is-GPT, hasBIOSboot, has---ESP, usb-disk, not-mmc, has-os, 2048 sectors * 512 bytes
Partitions info (1/3): _________________________________________________________
sda3 : is-os, 64, apt-get, grub-pc , grub2, grub-install, grubenv-ng, update-grub, farbios
sda1 : is-os, 32, nopakmgr, no-docgrub, nogrub, nogrubinstall, no-grubenv, noupdategrub, not-far
sda2 : is-os, 32, apt-get, grub-pc , grub2, grub-install, grubenv-ok, update-grub, not-far
sdb1 : is-os, 32, nopakmgr, no-docgrub, nogrub, nogrubinstall, no-grubenv, noupdategrub, not-far
sdb3 : is-os, 64, apt-get, signed grub-efi , grub2, grub-install, grubenv-ng, update-grub, not-far
sdb4 : is-os, 64, apt-get, grub-pc , grub2, grub-install, grubenv-ok, update-grub, not-far
sdb5 : is-os, 32, nopakmgr, no-docgrub, nogrub, nogrubinstall, no-grubenv, noupdategrub, not-far
sdb2 : is-os, 64, apt-get, grub-pc , grub2, grub-install, grubenv-ng, update-grub, not-far
Partitions info (2/3): _________________________________________________________
sda3 : isnotESP, fstab-without-efi, notbiosboot, no-nt, no-winload, no-recov-nor-hid, no-bmgr, notwinboot
sda1 : isnotESP, part-has-no-fstab, notbiosboot, no-nt, haswinload, no-recov-nor-hid, bootmgr, is-winboot
sda2 : isnotESP, fstab-without-efi, notbiosboot, no-nt, no-winload, no-recov-nor-hid, no-bmgr, notwinboot
sdb1 : is---ESP, part-has-no-fstab, notbiosboot, no-nt, no-winload, no-recov-nor-hid, no-bmgr, notwinboot
sdb3 : isnotESP, fstab-has-goodEFI, notbiosboot, no-nt, no-winload, no-recov-nor-hid, no-bmgr, notwinboot
sdb4 : isnotESP, fstab-without-efi, notbiosboot, no-nt, no-winload, no-recov-nor-hid, no-bmgr, notwinboot
sdb5 : isnotESP, part-has-no-fstab, notbiosboot, no-nt, no-winload, no-recov-nor-hid, no-bmgr, notwinboot
sdb2 : isnotESP, fstab-without-efi, is-biosboot, no-nt, no-winload, no-recov-nor-hid, no-bmgr, notwinboot
Partitions info (3/3): _________________________________________________________
sda3 : not-sepboot, with-boot, fstab-without-boot, not-sep-usr, with--usr, fstab-without-usr, std-grub.d, sda
sda1 : not-sepboot, no-boot, part-has-no-fstab, not-sep-usr, no---usr, part-has-no-fstab, std-grub.d, sda
sda2 : not-sepboot, with-boot, fstab-without-boot, not-sep-usr, with--usr, fstab-without-usr, std-grub.d, sda
sdb1 : not-sepboot, no-boot, part-has-no-fstab, not-sep-usr, no---usr, part-has-no-fstab, std-grub.d, sdb
sdb3 : not-sepboot, with-boot, fstab-without-boot, not-sep-usr, with--usr, fstab-without-usr, std-grub.d, sdb
sdb4 : not-sepboot, with-boot, fstab-without-boot, not-sep-usr, with--usr, fstab-without-usr, std-grub.d, sdb
sdb5 : not-sepboot, no-boot, part-has-no-fstab, not-sep-usr, no---usr, part-has-no-fstab, std-grub.d, sdb
sdb2 : not-sepboot, with-boot, fstab-without-boot, not-sep-usr, with--usr, fstab-without-usr, std-grub.d, sdb
fdisk -l (filtered): ___________________________________________________________
Disk sda: 111.8 GiB, 120034123776 bytes, 234441648 sectors
Disk identifier: 0x00040603
Boot Start End Sectors Size Id Type
sda1 * 2048 56383487 56381440 26.9G 7 HPFS/NTFS/exFAT
sda2 56383488 167847935 111464448 53.2G 83 Linux
sda3 167847936 234440703 66592768 31.8G 83 Linux
Disk sdb: 58.9 GiB, 63216549888 bytes, 123469824 sectors
Disk identifier: ECB2E9FC-2892-4570-89E6-CBFC2C80BF0F
Start End Sectors Size Type
sdb1 33583104 34402303 819200 400M EFI System
sdb2 34402304 35426303 1024000 500M BIOS boot
sdb3 35426304 79447788 44021485 21G Linux filesystem
sdb4 79448064 123467595 44019532 21G Linux filesystem
sdb5 2048 33583103 33581056 16G Microsoft basic data
Partition table entries are not in disk order.
parted -lm (filtered): _________________________________________________________
sda:120GB:scsi:512:512:msdos:ATA LDLC:;
1:1049kB:28.9GB:28.9GB:ntfs::boot;
2:28.9GB:85.9GB:57.1GB:ext4::;
3:85.9GB:120GB:34.1GB:ext4::;
sdb:63.2GB:scsi:512:512:gpt: USB DISK 3.0:;
5:1049kB:17.2GB:17.2GB:fat32::msftdata;
1:17.2GB:17.6GB:419MB:fat32::boot, esp;
2:17.6GB:18.1GB:524MB:::bios_grub;
3:18.1GB:40.7GB:22.5GB:ext4::;
4:40.7GB:63.2GB:22.5GB:ext4::;
blkid (filtered): ______________________________________________________________
NAME FSTYPE UUID PARTUUID LABEL PARTLABEL
sda
├─sda1 ntfs FA2AC6152AC5CF37 00040603-01 windows-7-del
├─sda2 ext4 8c69f945-f41d-4f8c-83bd-81d4a28efb15 00040603-02 fusion14.04-dell
└─sda3 ext4 26681ab0-c120-4797-b95e-7d0cfa960dd7 00040603-03 ubu-18.04-dell
sdb
├─sdb1 vfat 92C8-E043 c279ab17-8851-4486-b8fb-7ae86a52026d
├─sdb2 1f6dd8ce-568c-4617-9138-bb17d3c624a5
├─sdb3 ext4 72a66c99-76c9-420b-b133-77d8811a67f5 fcb240a0-cd9d-4f0f-829f-fac324612298 xubuntu-efi
├─sdb4 ext4 cb4fb6ab-daa4-405d-a278-99d4c4ca5e63 75c298a7-c048-4426-8ee7-943d786ea1f2 SB@
└─sdb5 vfat 0669-366B ee32a4b8-08a9-4165-b9e8-cf034813eaf5 test-multi
df (filtered): _________________________________________________________________
Avail Use% Mounted on
sda1 1.1G 96% /mnt/boot-sav/sda1
sda2 2.1G 91% /mnt/boot-sav/sda2
sda3 3.5G 84% /
sdb1 394.6M 1% /mnt/boot-sav/sdb1
sdb3 15.3G 20% /media/bernard/xubuntu-efi
sdb4 3.8G 76% /media/bernard/SB@
sdb5 2.2G 87% /media/bernard/test-multi
Mount options: __________________________________________________________________
sda1 rw,relatime,user_id=0,group_id=0,allow_other,blksize=4096
sda2 rw,relatime,data=ordered
sda3 rw,noatime,errors=remount-ro,data=ordered
sdb1 rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro
sdb3 rw,nosuid,nodev,relatime,stripe=32639,data=ordered
sdb4 rw,nosuid,nodev,relatime,data=ordered
sdb5 rw,nosuid,nodev,relatime,uid=1000,gid=1000,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,showexec,utf8,flush,errors=remount-ro
====================== sda2/boot/grub/grub.cfg (filtered) ======================
Ubuntu
Ubuntu, avec Linux 3.13.0-170-generic
Ubuntu, avec Linux 3.13.0-169-generic
### END /etc/grub.d/30_uefi-firmware ###
========================== sda2/etc/fstab (filtered) ===========================
# <file system> <mount point> <type> <options> <dump> <pass>
UUID=8c69f945-f41d-4f8c-83bd-81d4a28efb15 / ext4 noatime,errors=remount-ro 0 1
======================= sda2/etc/default/grub (filtered) =======================
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=""
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"
#GRUB_TERMINAL=console
#GRUB_GFXMODE=640x480
#GRUB_DISABLE_LINUX_UUID=true
#GRUB_DISABLE_RECOVERY="true"
#GRUB_INIT_TUNE="480 440 1"
================= sda2/boot/extlinux/extlinux.conf (filtered) ==================
default l0
prompt 1
timeout 50
include themes/debian/theme.cfg
==================== sda2: Location of files loaded by Grub ====================
GiB - GB File Fragment(s)
77.020198822 = 82.699808768 boot/grub/grub.cfg 1
62.708003998 = 67.332206592 boot/grub/i386-pc/core.img 1
77.017700195 = 82.697125888 boot/vmlinuz-3.13.0-169-generic 1
77.030231476 = 82.710581248 boot/vmlinuz-3.13.0-170-generic 1
77.030231476 = 82.710581248 vmlinuz 1
77.017700195 = 82.697125888 vmlinuz.old 1
56.677722931 = 60.857241600 boot/initrd.img-3.13.0-169-generic 2
56.633579254 = 60.809842688 boot/initrd.img-3.13.0-170-generic 2
56.633579254 = 60.809842688 initrd.img 2
56.677722931 = 60.857241600 initrd.img.old 2
================== sda2: Location of files loaded by Syslinux ==================
GiB - GB File Fragment(s)
77.011077881 = 82.690015232 boot/extlinux/extlinux.conf 1
77.011859894 = 82.690854912 boot/extlinux/chain.c32 1
=============== sda2: Version of COM32(R) files used by Syslinux ===============
boot/extlinux/chain.c32 : COM32R module (v4.xx)
====================== sda3/boot/grub/grub.cfg (filtered) ======================
Ubuntu
Ubuntu, with Linux 4.15.0-99-generic
Ubuntu, with Linux 4.15.0-96-generic
Windows 7 (on /dev/sda1)
Ubuntu 14.04.6 LTS (14.04) (on /dev/sda2)
Ubuntu (on /dev/sda2)
Ubuntu, avec Linux 3.13.0-170-generic (on /dev/sda2)
Ubuntu, avec Linux 3.13.0-169-generic (on /dev/sda2)
### END /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_uefi-firmware ###
Iso Live ubuntu-budgie-17.04-desktop-i386.iso dans cle USB3-Emtec
Iso Live ubuntu-17.10-desktop-amd64.iso dans cle USB3-Emtec
Iso Live ubuntu-18.04.2-desktop-amd64.iso dans partition Windows-7-dell
Iso Live ubuntu-18.04.2-desktop-amd64.iso dans partition systeme-fusion-dell
Iso Live ubuntu-19.10-desktop-amd64.iso dans partition systeme-fusion-dell
========================== sda3/etc/fstab (filtered) ===========================
# <file system> <mount point> <type> <options> <dump> <pass>
UUID=26681ab0-c120-4797-b95e-7d0cfa960dd7 / ext4 noatime,errors=remount-ro 0 1
======================= sda3/etc/default/grub (filtered) =======================
GRUB_SAVEDEFAULT="true"
GRUB_DEFAULT="saved"
#GRUB_DEFAULT=0
#GRUB_TIMEOUT_STYLE=hidden
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"
#GRUB_TERMINAL=console
#GRUB_GFXMODE=640x480
#GRUB_DISABLE_LINUX_UUID=true
#GRUB_DISABLE_RECOVERY="true"
#GRUB_INIT_TUNE="480 440 1"
==================== sda3: Location of files loaded by Grub ====================
GiB - GB File Fragment(s)
108.161819458 = 116.137869312 boot/grub/grub.cfg 1
95.091625214 = 102.103855104 boot/grub/i386-pc/core.img 1
83.985332489 = 90.178564096 boot/vmlinuz-4.15.0-96-generic 2
106.528308868 = 114.383900672 boot/vmlinuz-4.15.0-99-generic 1
106.528308868 = 114.383900672 vmlinuz 1
83.985332489 = 90.178564096 vmlinuz.old 2
107.698913574 = 115.640827904 boot/initrd.img-4.15.0-96-generic 4
107.691856384 = 115.633250304 boot/initrd.img-4.15.0-99-generic 4
107.691856384 = 115.633250304 initrd.img 4
107.698913574 = 115.640827904 initrd.img.old 4
===================== sdb1/efi/ubuntu/grub.cfg (filtered) ======================
search.fs_uuid 72a66c99-76c9-420b-b133-77d8811a67f5 root hd1,gpt3
set prefix=($root)'/boot/grub'
configfile $prefix/grub.cfg
====================== sdb3/boot/grub/grub.cfg (filtered) ======================
XUBUNTU 14.04 EFI GNU/Linux-usb-EMTEC
UBUNTU-18.04-usb-EMTEC
HYBRYDE FUSION 14.04_Dell-Latitude-E4310 GNU/Linux
Windows 7 (loader) (sur /dev/sda1)
------------------- Menu Grub Classique -------------------
XUBUNTU 14.04 EFI GNU/Linux
XUBUNTU 14.04 EFI GNU/Linux, avec Linux 3.13.0-117-generic
XUBUNTU 14.04 EFI GNU/Linux, avec Linux 3.13.0-32-generic
EFI/ubuntu/MokManager.efi
Ubuntu 14.04.6 LTS (14.04) (sur /dev/sda2)
Ubuntu (sur /dev/sda2)
Ubuntu, avec Linux 3.13.0-170-generic (sur /dev/sda2)
Ubuntu, avec Linux 3.13.0-169-generic (sur /dev/sda2)
Ubuntu 18.04.4 LTS (18.04) (sur /dev/sda3)
Ubuntu (sur /dev/sda3)
Ubuntu, with Linux 4.15.0-99-generic (sur /dev/sda3)
Ubuntu, with Linux 4.15.0-96-generic (sur /dev/sda3)
Ubuntu 18.04.4 LTS (18.04) (sur /dev/sdb4)
Ubuntu (sur /dev/sdb4)
Ubuntu, avec Linux 4.15.0-91-generic (sur /dev/sdb4)
Ubuntu, avec Linux 4.15.0-88-generic (sur /dev/sdb4)
Ubuntu, avec Linux 4.15.0-76-generic (sur /dev/sdb4)
Ubuntu 18.04.4 LTS (18.04) (sur /dev/sda3) (sur /dev/sdb4)
Ubuntu (sur /dev/sda3) (sur /dev/sdb4)
Ubuntu, avec Linux 4.15.0-91-generic (sur /dev/sda3) (sur /dev/sdb4)
Ubuntu, avec Linux 4.15.0-88-generic (sur /dev/sda3) (sur /dev/sdb4)
Ubuntu, avec Linux 4.15.0-76-generic (sur /dev/sda3) (sur /dev/sdb4)
### END /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_uefi-firmware ###
Iso Live ubuntu-budgie-17.04-desktop-i386.iso dans cle USB3
Iso Live ubuntu-artful-desktop-amd64.iso dans cle USB3-Emtec
Iso Live Ubuntu17.10-desktop-amd64.iso dans cle USB3-Emtec
========================== sdb3/etc/fstab (filtered) ===========================
# <file system> <mount point> <type> <options> <dump> <pass>
# / was on /dev/sdb3 during installation
UUID=72a66c99-76c9-420b-b133-77d8811a67f5 / ext4 errors=remount-ro 0 1
# /boot/efi was on /dev/sdb1 during installation
UUID=92C8-E043 /boot/efi vfat defaults 0 1
======================= sdb3/etc/default/grub (filtered) =======================
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_DISTRIBUTOR=`echo -n XUBUNTU 14.04 EFI`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"
#GRUB_TERMINAL=console
#GRUB_GFXMODE=640x480
#GRUB_DISABLE_LINUX_UUID=true
#GRUB_DISABLE_RECOVERY="true"
#GRUB_INIT_TUNE="480 440 1"
==================== sdb3: Location of files loaded by Grub ====================
GiB - GB File Fragment(s)
35.552764893 = 38.174490624 boot/grub/grub.cfg 2
19.077713013 = 20.484538368 boot/vmlinuz-3.13.0-117-generic 2
19.308181763 = 20.732002304 boot/vmlinuz-3.13.0-117-generic.efi.signed 1
17.878444672 = 19.196833792 boot/vmlinuz-3.13.0-32-generic 2
17.878444672 = 19.196833792 vmlinuz 2
21.895526886 = 23.510142976 boot/initrd.img-3.13.0-117-generic 2
19.528972626 = 20.969074688 boot/initrd.img-3.13.0-32-generic 2
19.528972626 = 20.969074688 initrd.img 2
19.528972626 = 20.969074688 initrd.img.old 2
====================== sdb4/boot/grub/grub.cfg (filtered) ======================
Ubuntu
Ubuntu, avec Linux 4.15.0-99-generic
Ubuntu, avec Linux 4.15.0-91-generic
Ubuntu, avec Linux 4.15.0-88-generic
Windows 7 (sur /dev/sda1)
Ubuntu 14.04.6 LTS (14.04) (sur /dev/sda2)
Ubuntu (sur /dev/sda2)
Ubuntu, avec Linux 3.13.0-170-generic (sur /dev/sda2)
Ubuntu, avec Linux 3.13.0-169-generic (sur /dev/sda2)
Ubuntu 18.04.4 LTS (18.04) (sur /dev/sda3)
Ubuntu (sur /dev/sda3)
Ubuntu, with Linux 4.15.0-99-generic (sur /dev/sda3)
Ubuntu, with Linux 4.15.0-96-generic (sur /dev/sda3)
Ubuntu 14.04.1 LTS (14.04) (sur /dev/sdb3)
XUBUNTU 14.04 EFI GNU/Linux-usb-EMTEC (sur /dev/sdb3)
XUBUNTU 14.04 EFI GNU/Linux (sur /dev/sdb3)
XUBUNTU 14.04 EFI GNU/Linux, avec Linux 3.13.0-117-generic (sur /dev/sdb3)
XUBUNTU 14.04 EFI GNU/Linux, avec Linux 3.13.0-32-generic (sur /dev/sdb3)
### END /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_uefi-firmware ###
========================== sdb4/etc/fstab (filtered) ===========================
# <file system> <mount point> <type> <options> <dump> <pass>
UUID=cb4fb6ab-daa4-405d-a278-99d4c4ca5e63 / ext4 noatime,errors=remount-ro 0 1
======================= sdb4/etc/default/grub (filtered) =======================
GRUB_DEFAULT=0
#GRUB_TIMEOUT_STYLE=hidden
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"
#GRUB_TERMINAL=console
#GRUB_GFXMODE=640x480
#GRUB_DISABLE_LINUX_UUID=true
#GRUB_DISABLE_RECOVERY="true"
#GRUB_INIT_TUNE="480 440 1"
==================== sdb4: Location of files loaded by Grub ====================
GiB - GB File Fragment(s)
56.213134766 = 60.358393856 boot/grub/grub.cfg 4
54.364910126 = 58.373877760 boot/grub/i386-pc/core.img 1
57.391582489 = 61.623742464 boot/vmlinuz-4.15.0-88-generic 1
44.243148804 = 47.505719296 boot/vmlinuz-4.15.0-91-generic 1
39.215808868 = 42.107654144 boot/vmlinuz-4.15.0-99-generic 1
39.215808868 = 42.107654144 vmlinuz 1
44.243148804 = 47.505719296 vmlinuz.old 1
43.469017029 = 46.674501632 boot/initrd.img-4.15.0-88-generic 8
43.367458344 = 46.565453824 boot/initrd.img-4.15.0-91-generic 5
43.679962158 = 46.901002240 boot/initrd.img-4.15.0-99-generic 7
43.679962158 = 46.901002240 initrd.img 7
43.367458344 = 46.565453824 initrd.img.old 5
================================= User choice ==================================
Is sda (ATA LDLC) a removable disk? no
Suggested repair: ______________________________________________________________
The default repair of the Boot-Repair utility would purge (in order to reset grubenv) and reinstall the grub2 of
sda3 into the MBRs of all disks (except live-disks and removable disks without OS).
Grub-efi would not be selected by default because: legacy-win no-win-efi
Additional repair would be performed: unhide-bootmenu-10s
Advice in case of suggested repair: ____________________________________________
EFI detected. You may want to retry after activating the [Separate /boot/efi partition:] option.
Do you want to continue?
Final advice in case of suggested repair: ______________________________________
Please do not forget to make your BIOS boot on sda (ATA LDLC) disk!
@+. Babdu89.
Dernière modification par Babdu89 (Le 10/05/2020, à 12:05)
J'ai découvert Ubuntu avec la 07.10.... Et alors?!... Depuis je regarde de temps en temps si Windows marche toujours....
Hors ligne
#1997 Le 10/05/2020, à 10:26
- Babdu89
Re : [Réparateur de démarrage] Développement du logiciel Boot-Repair
YannUbuntu a écrit;
Toujours pas trouvé d'où vient le pb d'affichage efibootmgr. Si vous voyez un boot-info récent (ppa99 ou +) qui n'a PAS ce soucis, dites-le moi svp ça pourrait nous donner une piste.
Je vais fouiller dans tous mes boot info, pour voir si je trouve le dernier qui allait bien, et le suivant qui présente le défaut., Mais ce n'est pas sûr que je trouve, car je n'ai pas tellement fait de boot info en mode UEFI...
À suivre.
Édit.
Non, les derniers sont avec le 4ppa65.
@+. Babdu89 .
Dernière modification par Babdu89 (Le 10/05/2020, à 10:39)
J'ai découvert Ubuntu avec la 07.10.... Et alors?!... Depuis je regarde de temps en temps si Windows marche toujours....
Hors ligne
#1998 Le 10/05/2020, à 11:00
- YannUbuntu
Re : [Réparateur de démarrage] Développement du logiciel Boot-Repair
ppa108: reparation d'une recente regression ( https://forum.ubuntu-fr.org/viewtopic.p … #p22282267 )
à consulter/améliorer: Guide du Débutant, Logiciels, Ecole, Travail, Maison
Hors ligne
#1999 Le 10/05/2020, à 11:34
- geole
Re : [Réparateur de démarrage] Développement du logiciel Boot-Repair
Merci pour vos retours.
ppa107:
boot-repair n'analysera plus les partitions de TYPE=crypt* . Geole, ça devrait te faire un boot-info plus propre. Stp peux-tu m'indiquer ton boot-info
Bonjour.
Je vais bientôt ajouter un gros boot-info dont la taille aura beaucoup diminué grâce aux filtrages. Je vais le faire en live USB d'ici une heure.
Mon avis: Ce n'est pas une mauvaise idée de pas regarder ce qui est chiffré. Cependant l'idée précédente était bonne.
De mémoire elle disait quelque chose de ce style
" veuillez monter vos partitions LUCKS pour être traitées " si on répondait non, le boot-info stoppait.
une idée,
"Si vous voulez que vos partitions lucks soient traitées , veuillez monter celles contenant du logiciel avant de poursuivre et répondez OUI"
" Si ne voulez pas que vos partitions lucks soient traitées, veuillez répondre NON"
Il suffirait alors de tester la réponse pour les court-circuiter ou les traiter. Car il me semblait bien qu'il y avait de bonnes choses.
NOTA. Pour le montage en ligne de commande, il faudrait prendre en charge, la saisie du mot de passe. Ce n'est probablement pas facile à faire accepter sauf à proposer la commande comme pour la mise jour du dernier noyau faite par boot-repair
Voici un exemple de montage pour la partition dédiée aux données pour laquelle, il n'y a quasiment rien à regarder, sauf le taux d'occupation.
NOTA. Je n'ai pas trouvé le résultat de la commande df -i (rarement utile).
sudo cryptsetup luksOpen /dev/sda18 MY-FirstPartion
[b]Saisissez la phrase secrète pour /dev/sda18 : [/b]
wwwwwwwwwwwwwwwwwwwwwwwwwwww
sudo mkdir /mnt/SAD18
sudo mount /dev/mapper/MY-FirstPartion /mnt/SDA18
ls /mnt/SDA18
XXXXXXXXXXX.odt lost+found
Voici un exemple pour ceux qui adorent compliquer la vie à tout le monde:
sudo cryptsetup luksOpen /dev/sda19 MY-SecondPartion
Saisissez la phrase secrète pour /dev/sda19 :
zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz
sudo mkdir /mnt/SDA19
mount /dev/mapper/MY-SecondPartion /mnt/SDA19
ls /mnt/SDA19
bin cdrom etc initrd.img lib lost+found mnt proc run snap swapfile tmp var
boot dev home initrd.img.old lib64 media opt root sbin srv sys usr vmlinuz
===> Boot-info avec périphériques USB branchés https://paste.ubuntu.com/p/N77yMyHQFX/
===> Boot-info avec uniquement le disque dur https://paste.ubuntu.com/p/484CtDvMRB/
Dernière modification par geole (Le 10/05/2020, à 12:19)
Les grilles de l'installateur https://doc.ubuntu-fr.org/tutoriel/inst … _subiquity
"gedit admin:///etc/fstab" est proscrit, utilisez "pkexec env DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY xdg-open /etc/fstab" Voir https://doc.ubuntu-fr.org/gedit
Les partitions EXT4 des disques externes => https://forum.ubuntu-fr.org/viewtopic.p … #p22697248
Hors ligne
#2000 Le 10/05/2020, à 12:48
- Babdu89
Re : [Réparateur de démarrage] Développement du logiciel Boot-Repair
Je reviens sur le boot info fait avec PPA 108. post#1996.
boot-info-4ppa108 [20200510_1253]
============================== 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 (,msdos3)/boot/grub. It also embeds following components:
modules
---------------------------------------------------------------------------
fshelp ext2 part_msdos biosdisk
---------------------------------------------------------------------------
=> Grub2 (v2.00) is installed in the MBR of /dev/sdb and looks at sector
34402304 of the same hard drive for core.img. core.img is at this location
and looks for (,gpt4)/boot/grub. It also embeds following components:
modules
---------------------------------------------------------------------------
fshelp ext2 part_gpt biosdisk
---------------------------------------------------------------------------
sda1: __________________________________________________________________________
File system: ntfs
Boot sector type: Windows 7/2008: NTFS
Boot sector info: No errors found in the Boot Parameter Block.
Operating System: Windows 7
Boot files: /bootmgr /Boot/BCD /Windows/System32/winload.exe
sda2: __________________________________________________________________________
File system: ext4
Boot sector type: -
Boot sector info:
Operating System: Ubuntu 14.04.6 LTS
Boot files: /boot/grub/grub.cfg /etc/fstab /etc/default/grub
/boot/extlinux/extlinux.conf
/boot/grub/i386-pc/core.img
sda3: __________________________________________________________________________
File system: ext4
Boot sector type: -
Boot sector info:
Operating System: Ubuntu 18.04.4 LTS
Boot files: /boot/grub/grub.cfg /etc/fstab /etc/default/grub
/boot/grub/i386-pc/core.img
sdb1: __________________________________________________________________________
File system: vfat
Boot sector type: FAT32
Boot sector info: No errors found in the Boot Parameter Block.
Operating System:
Boot files: /efi/Boot/bootx64.efi /efi/ubuntu/grubx64.efi
/efi/ubuntu/MokManager.efi /efi/ubuntu/shimx64.efi
/efi/ubuntu/grub.cfg
sdb2: __________________________________________________________________________
File system: BIOS Boot partition
Boot sector type: Grub2's core.img
Boot sector info:
sdb3: __________________________________________________________________________
File system: ext4
Boot sector type: -
Boot sector info:
Operating System: Ubuntu 14.04.1 LTS
Boot files: /boot/grub/grub.cfg /etc/fstab /etc/default/grub
sdb4: __________________________________________________________________________
File system: ext4
Boot sector type: -
Boot sector info:
Operating System: Ubuntu 18.04.4 LTS
Boot files: /boot/grub/grub.cfg /etc/fstab /etc/default/grub
/boot/grub/i386-pc/core.img
sdb5: __________________________________________________________________________
File system: vfat
Boot sector type: FAT32
Boot sector info: No errors found in the Boot Parameter Block.
Operating System:
Boot files:
================================ 8 OS detected =================================
OS#1: L'OS actuellement utilisé - Ubuntu 18.04.4 LTS CurrentSession on sda3
OS#2: Ubuntu 14.04.6 LTS on sda2
OS#3: Ubuntu 14.04.1 LTS on sdb3
OS#4: Ubuntu 18.04.4 LTS on sdb4
OS#5: Linux on sda1
OS#6: Linux on sdb1
OS#7: Linux on sdb5
OS#8: Ubuntu 18.04.4 LTS on sdb2
============================ Architecture/Host Info ============================
CPU architecture: 64-bit
BOOT_IMAGE of the installed session in use:
/boot/vmlinuz-4.15.0-99-generic root=UUID=26681ab0-c120-4797-b95e-7d0cfa960dd7 ro quiet splash
===================================== UEFI =====================================
BIOS is EFI-compatible, and is setup in EFI-mode for this installed-session.
efibootmgr -v
BootCurrent: 0006
Timeout: 2 seconds
BootOrder: 0000,0002,0001,0003,0004,0006,0007
Boot0000 Diskette Drive BBS(Floppy,,0x0)
Boot0001* Internal HDD BBS(HD,,0x0)P0: LDLC .
Boot0002* USB Storage Device BBS(USB,,0x0)USB Storage Device.
Boot0003* CD/DVD/CD-RW Drive BBS(CDROM,,0x0)P1: TSSTcorp DVD+/-RW TS-U633J.
Boot0004 Onboard NIC BBS(Network,,0x0)
Boot0006* ubuntu HD(1,GPT,c279ab17-8851-4486-b8fb-7ae86a52026d,0x2007000,0xc8000)/File(FIuntu\shimx64.efi)
Boot0007 UEFI: INT13(USB,0x80) PciRoot(0x0)/Pci(0x1d,0x0)/VenHw(aa7ba38a-dabf-40c3-8d18-b55b39609ef7,8001000000005553422020202020ffffffffffffffffffffffffffffffffffffffffffffffff)/HD(1,GPT,c279ab17-8851-4486-b8fb-7ae86a52026d,0x2007000,0xc8000)
ded965934506efb38a6dcb9ac5b2b79e sdb1/Boot/bootx64.efi
0b48de05c935c48c9e4a94fa820c32ba sdb1/ubuntu/grubx64.efi
ba8a7979ac57f1c0c307ef94d1020eb8 sdb1/ubuntu/MokManager.efi
ded965934506efb38a6dcb9ac5b2b79e sdb1/ubuntu/shimx64.efi
============================= Drive/Partition Info =============================
Disks info: ____________________________________________________________________
sda : notGPT, no-BIOSboot, has-noESP, not-usb, not-mmc, has-os, 2048 sectors * 512 bytes
sdb : is-GPT, hasBIOSboot, has---ESP, usb-disk, not-mmc, has-os, 2048 sectors * 512 bytes
Partitions info (1/3): _________________________________________________________
sda3 : is-os, 64, apt-get, grub-pc , grub2, grub-install, grubenv-ng, update-grub, farbios
sda1 : is-os, 32, nopakmgr, no-docgrub, nogrub, nogrubinstall, no-grubenv, noupdategrub, not-far
sda2 : is-os, 32, apt-get, grub-pc , grub2, grub-install, grubenv-ok, update-grub, not-far
sdb1 : is-os, 32, nopakmgr, no-docgrub, nogrub, nogrubinstall, no-grubenv, noupdategrub, not-far
sdb3 : is-os, 64, apt-get, signed grub-efi , grub2, grub-install, grubenv-ng, update-grub, not-far
sdb4 : is-os, 64, apt-get, grub-pc , grub2, grub-install, grubenv-ok, update-grub, not-far
sdb5 : is-os, 32, nopakmgr, no-docgrub, nogrub, nogrubinstall, no-grubenv, noupdategrub, not-far
sdb2 : is-os, 64, apt-get, grub-pc , grub2, grub-install, grubenv-ng, update-grub, not-far
Partitions info (2/3): _________________________________________________________
sda3 : isnotESP, fstab-without-efi, notbiosboot, no-nt, no-winload, no-recov-nor-hid, no-bmgr, notwinboot
sda1 : isnotESP, part-has-no-fstab, notbiosboot, no-nt, haswinload, no-recov-nor-hid, bootmgr, is-winboot
sda2 : isnotESP, fstab-without-efi, notbiosboot, no-nt, no-winload, no-recov-nor-hid, no-bmgr, notwinboot
sdb1 : is---ESP, part-has-no-fstab, notbiosboot, no-nt, no-winload, no-recov-nor-hid, no-bmgr, notwinboot
sdb3 : isnotESP, fstab-has-goodEFI, notbiosboot, no-nt, no-winload, no-recov-nor-hid, no-bmgr, notwinboot
sdb4 : isnotESP, fstab-without-efi, notbiosboot, no-nt, no-winload, no-recov-nor-hid, no-bmgr, notwinboot
sdb5 : isnotESP, part-has-no-fstab, notbiosboot, no-nt, no-winload, no-recov-nor-hid, no-bmgr, notwinboot
sdb2 : isnotESP, fstab-without-efi, is-biosboot, no-nt, no-winload, no-recov-nor-hid, no-bmgr, notwinboot
Partitions info (3/3): _________________________________________________________
sda3 : not-sepboot, with-boot, fstab-without-boot, not-sep-usr, with--usr, fstab-without-usr, std-grub.d, sda
sda1 : not-sepboot, no-boot, part-has-no-fstab, not-sep-usr, no---usr, part-has-no-fstab, std-grub.d, sda
sda2 : not-sepboot, with-boot, fstab-without-boot, not-sep-usr, with--usr, fstab-without-usr, std-grub.d, sda
sdb1 : not-sepboot, no-boot, part-has-no-fstab, not-sep-usr, no---usr, part-has-no-fstab, std-grub.d, sdb
sdb3 : not-sepboot, with-boot, fstab-without-boot, not-sep-usr, with--usr, fstab-without-usr, std-grub.d, sdb
sdb4 : not-sepboot, with-boot, fstab-without-boot, not-sep-usr, with--usr, fstab-without-usr, std-grub.d, sdb
sdb5 : not-sepboot, no-boot, part-has-no-fstab, not-sep-usr, no---usr, part-has-no-fstab, std-grub.d, sdb
sdb2 : not-sepboot, with-boot, fstab-without-boot, not-sep-usr, with--usr, fstab-without-usr, std-grub.d, sdb
fdisk -l (filtered): ___________________________________________________________
Disk sda: 111.8 GiB, 120034123776 bytes, 234441648 sectors
Disk identifier: 0x00040603
Boot Start End Sectors Size Id Type
sda1 * 2048 56383487 56381440 26.9G 7 HPFS/NTFS/exFAT
sda2 56383488 167847935 111464448 53.2G 83 Linux
sda3 167847936 234440703 66592768 31.8G 83 Linux
Disk sdb: 58.9 GiB, 63216549888 bytes, 123469824 sectors
Disk identifier: ECB2E9FC-2892-4570-89E6-CBFC2C80BF0F
Start End Sectors Size Type
sdb1 33583104 34402303 819200 400M EFI System
sdb2 34402304 35426303 1024000 500M BIOS boot
sdb3 35426304 79447788 44021485 21G Linux filesystem
sdb4 79448064 123467595 44019532 21G Linux filesystem
sdb5 2048 33583103 33581056 16G Microsoft basic data
Partition table entries are not in disk order.
parted -lm (filtered): _________________________________________________________
sda:120GB:scsi:512:512:msdos:ATA LDLC:;
1:1049kB:28.9GB:28.9GB:ntfs::boot;
2:28.9GB:85.9GB:57.1GB:ext4::;
3:85.9GB:120GB:34.1GB:ext4::;
sdb:63.2GB:scsi:512:512:gpt: USB DISK 3.0:;
5:1049kB:17.2GB:17.2GB:fat32::msftdata;
1:17.2GB:17.6GB:419MB:fat32::boot, esp;
2:17.6GB:18.1GB:524MB:::bios_grub;
3:18.1GB:40.7GB:22.5GB:ext4::;
4:40.7GB:63.2GB:22.5GB:ext4::;
blkid (filtered): ______________________________________________________________
NAME FSTYPE UUID PARTUUID LABEL PARTLABEL
sda
├─sda1 ntfs FA2AC6152AC5CF37 00040603-01 windows-7-del
├─sda2 ext4 8c69f945-f41d-4f8c-83bd-81d4a28efb15 00040603-02 fusion14.04-dell
└─sda3 ext4 26681ab0-c120-4797-b95e-7d0cfa960dd7 00040603-03 ubu-18.04-dell
sdb
├─sdb1 vfat 92C8-E043 c279ab17-8851-4486-b8fb-7ae86a52026d
├─sdb2 1f6dd8ce-568c-4617-9138-bb17d3c624a5
├─sdb3 ext4 72a66c99-76c9-420b-b133-77d8811a67f5 fcb240a0-cd9d-4f0f-829f-fac324612298 xubuntu-efi
├─sdb4 ext4 cb4fb6ab-daa4-405d-a278-99d4c4ca5e63 75c298a7-c048-4426-8ee7-943d786ea1f2 SB@
└─sdb5 vfat 0669-366B ee32a4b8-08a9-4165-b9e8-cf034813eaf5 test-multi
df (filtered): _________________________________________________________________
Avail Use% Mounted on
sda1 1.1G 96% /mnt/boot-sav/sda1
sda2 2.1G 91% /mnt/boot-sav/sda2
sda3 3.5G 84% /
sdb1 394.6M 1% /mnt/boot-sav/sdb1
sdb3 15.3G 20% /media/bernard/xubuntu-efi
sdb4 3.8G 76% /media/bernard/SB@
sdb5 2.2G 87% /media/bernard/test-multi
Mount options: __________________________________________________________________
sda1 rw,relatime,user_id=0,group_id=0,allow_other,blksize=4096
sda2 rw,relatime,data=ordered
sda3 rw,noatime,errors=remount-ro,data=ordered
sdb1 rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro
sdb3 rw,nosuid,nodev,relatime,stripe=32639,data=ordered
sdb4 rw,nosuid,nodev,relatime,data=ordered
sdb5 rw,nosuid,nodev,relatime,uid=1000,gid=1000,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,showexec,utf8,flush,errors=remount-ro
====================== sda2/boot/grub/grub.cfg (filtered) ======================
Ubuntu
Ubuntu, avec Linux 3.13.0-170-generic
Ubuntu, avec Linux 3.13.0-169-generic
### END /etc/grub.d/30_uefi-firmware ###
========================== sda2/etc/fstab (filtered) ===========================
# <file system> <mount point> <type> <options> <dump> <pass>
UUID=8c69f945-f41d-4f8c-83bd-81d4a28efb15 / ext4 noatime,errors=remount-ro 0 1
======================= sda2/etc/default/grub (filtered) =======================
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=""
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"
#GRUB_TERMINAL=console
#GRUB_GFXMODE=640x480
#GRUB_DISABLE_LINUX_UUID=true
#GRUB_DISABLE_RECOVERY="true"
#GRUB_INIT_TUNE="480 440 1"
================= sda2/boot/extlinux/extlinux.conf (filtered) ==================
default l0
prompt 1
timeout 50
include themes/debian/theme.cfg
==================== sda2: Location of files loaded by Grub ====================
GiB - GB File Fragment(s)
77.020198822 = 82.699808768 boot/grub/grub.cfg 1
62.708003998 = 67.332206592 boot/grub/i386-pc/core.img 1
77.017700195 = 82.697125888 boot/vmlinuz-3.13.0-169-generic 1
77.030231476 = 82.710581248 boot/vmlinuz-3.13.0-170-generic 1
77.030231476 = 82.710581248 vmlinuz 1
77.017700195 = 82.697125888 vmlinuz.old 1
56.677722931 = 60.857241600 boot/initrd.img-3.13.0-169-generic 2
56.633579254 = 60.809842688 boot/initrd.img-3.13.0-170-generic 2
56.633579254 = 60.809842688 initrd.img 2
56.677722931 = 60.857241600 initrd.img.old 2
================== sda2: Location of files loaded by Syslinux ==================
GiB - GB File Fragment(s)
77.011077881 = 82.690015232 boot/extlinux/extlinux.conf 1
77.011859894 = 82.690854912 boot/extlinux/chain.c32 1
=============== sda2: Version of COM32(R) files used by Syslinux ===============
boot/extlinux/chain.c32 : COM32R module (v4.xx)
====================== sda3/boot/grub/grub.cfg (filtered) ======================
Ubuntu
Ubuntu, with Linux 4.15.0-99-generic
Ubuntu, with Linux 4.15.0-96-generic
Windows 7 (on /dev/sda1)
Ubuntu 14.04.6 LTS (14.04) (on /dev/sda2)
Ubuntu (on /dev/sda2)
Ubuntu, avec Linux 3.13.0-170-generic (on /dev/sda2)
Ubuntu, avec Linux 3.13.0-169-generic (on /dev/sda2)
### END /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_uefi-firmware ###
Iso Live ubuntu-budgie-17.04-desktop-i386.iso dans cle USB3-Emtec
Iso Live ubuntu-17.10-desktop-amd64.iso dans cle USB3-Emtec
Iso Live ubuntu-18.04.2-desktop-amd64.iso dans partition Windows-7-dell
Iso Live ubuntu-18.04.2-desktop-amd64.iso dans partition systeme-fusion-dell
Iso Live ubuntu-19.10-desktop-amd64.iso dans partition systeme-fusion-dell
========================== sda3/etc/fstab (filtered) ===========================
# <file system> <mount point> <type> <options> <dump> <pass>
UUID=26681ab0-c120-4797-b95e-7d0cfa960dd7 / ext4 noatime,errors=remount-ro 0 1
======================= sda3/etc/default/grub (filtered) =======================
GRUB_SAVEDEFAULT="true"
GRUB_DEFAULT="saved"
#GRUB_DEFAULT=0
#GRUB_TIMEOUT_STYLE=hidden
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"
#GRUB_TERMINAL=console
#GRUB_GFXMODE=640x480
#GRUB_DISABLE_LINUX_UUID=true
#GRUB_DISABLE_RECOVERY="true"
#GRUB_INIT_TUNE="480 440 1"
==================== sda3: Location of files loaded by Grub ====================
GiB - GB File Fragment(s)
108.161819458 = 116.137869312 boot/grub/grub.cfg 1
95.091625214 = 102.103855104 boot/grub/i386-pc/core.img 1
83.985332489 = 90.178564096 boot/vmlinuz-4.15.0-96-generic 2
106.528308868 = 114.383900672 boot/vmlinuz-4.15.0-99-generic 1
106.528308868 = 114.383900672 vmlinuz 1
83.985332489 = 90.178564096 vmlinuz.old 2
107.698913574 = 115.640827904 boot/initrd.img-4.15.0-96-generic 4
107.691856384 = 115.633250304 boot/initrd.img-4.15.0-99-generic 4
107.691856384 = 115.633250304 initrd.img 4
107.698913574 = 115.640827904 initrd.img.old 4
===================== sdb1/efi/ubuntu/grub.cfg (filtered) ======================
search.fs_uuid 72a66c99-76c9-420b-b133-77d8811a67f5 root hd1,gpt3
set prefix=($root)'/boot/grub'
configfile $prefix/grub.cfg
====================== sdb3/boot/grub/grub.cfg (filtered) ======================
XUBUNTU 14.04 EFI GNU/Linux-usb-EMTEC
UBUNTU-18.04-usb-EMTEC
HYBRYDE FUSION 14.04_Dell-Latitude-E4310 GNU/Linux
Windows 7 (loader) (sur /dev/sda1)
------------------- Menu Grub Classique -------------------
XUBUNTU 14.04 EFI GNU/Linux
XUBUNTU 14.04 EFI GNU/Linux, avec Linux 3.13.0-117-generic
XUBUNTU 14.04 EFI GNU/Linux, avec Linux 3.13.0-32-generic
EFI/ubuntu/MokManager.efi
Ubuntu 14.04.6 LTS (14.04) (sur /dev/sda2)
Ubuntu (sur /dev/sda2)
Ubuntu, avec Linux 3.13.0-170-generic (sur /dev/sda2)
Ubuntu, avec Linux 3.13.0-169-generic (sur /dev/sda2)
Ubuntu 18.04.4 LTS (18.04) (sur /dev/sda3)
Ubuntu (sur /dev/sda3)
Ubuntu, with Linux 4.15.0-99-generic (sur /dev/sda3)
Ubuntu, with Linux 4.15.0-96-generic (sur /dev/sda3)
Ubuntu 18.04.4 LTS (18.04) (sur /dev/sdb4)
Ubuntu (sur /dev/sdb4)
Ubuntu, avec Linux 4.15.0-91-generic (sur /dev/sdb4)
Ubuntu, avec Linux 4.15.0-88-generic (sur /dev/sdb4)
Ubuntu, avec Linux 4.15.0-76-generic (sur /dev/sdb4)
Ubuntu 18.04.4 LTS (18.04) (sur /dev/sda3) (sur /dev/sdb4)
Ubuntu (sur /dev/sda3) (sur /dev/sdb4)
Ubuntu, avec Linux 4.15.0-91-generic (sur /dev/sda3) (sur /dev/sdb4)
Ubuntu, avec Linux 4.15.0-88-generic (sur /dev/sda3) (sur /dev/sdb4)
Ubuntu, avec Linux 4.15.0-76-generic (sur /dev/sda3) (sur /dev/sdb4)
### END /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_uefi-firmware ###
Iso Live ubuntu-budgie-17.04-desktop-i386.iso dans cle USB3
Iso Live ubuntu-artful-desktop-amd64.iso dans cle USB3-Emtec
Iso Live Ubuntu17.10-desktop-amd64.iso dans cle USB3-Emtec
========================== sdb3/etc/fstab (filtered) ===========================
# <file system> <mount point> <type> <options> <dump> <pass>
# / was on /dev/sdb3 during installation
UUID=72a66c99-76c9-420b-b133-77d8811a67f5 / ext4 errors=remount-ro 0 1
# /boot/efi was on /dev/sdb1 during installation
UUID=92C8-E043 /boot/efi vfat defaults 0 1
======================= sdb3/etc/default/grub (filtered) =======================
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_DISTRIBUTOR=`echo -n XUBUNTU 14.04 EFI`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"
#GRUB_TERMINAL=console
#GRUB_GFXMODE=640x480
#GRUB_DISABLE_LINUX_UUID=true
#GRUB_DISABLE_RECOVERY="true"
#GRUB_INIT_TUNE="480 440 1"
==================== sdb3: Location of files loaded by Grub ====================
GiB - GB File Fragment(s)
35.552764893 = 38.174490624 boot/grub/grub.cfg 2
19.077713013 = 20.484538368 boot/vmlinuz-3.13.0-117-generic 2
19.308181763 = 20.732002304 boot/vmlinuz-3.13.0-117-generic.efi.signed 1
17.878444672 = 19.196833792 boot/vmlinuz-3.13.0-32-generic 2
17.878444672 = 19.196833792 vmlinuz 2
21.895526886 = 23.510142976 boot/initrd.img-3.13.0-117-generic 2
19.528972626 = 20.969074688 boot/initrd.img-3.13.0-32-generic 2
19.528972626 = 20.969074688 initrd.img 2
19.528972626 = 20.969074688 initrd.img.old 2
====================== sdb4/boot/grub/grub.cfg (filtered) ======================
Ubuntu
Ubuntu, avec Linux 4.15.0-99-generic
Ubuntu, avec Linux 4.15.0-91-generic
Ubuntu, avec Linux 4.15.0-88-generic
Windows 7 (sur /dev/sda1)
Ubuntu 14.04.6 LTS (14.04) (sur /dev/sda2)
Ubuntu (sur /dev/sda2)
Ubuntu, avec Linux 3.13.0-170-generic (sur /dev/sda2)
Ubuntu, avec Linux 3.13.0-169-generic (sur /dev/sda2)
Ubuntu 18.04.4 LTS (18.04) (sur /dev/sda3)
Ubuntu (sur /dev/sda3)
Ubuntu, with Linux 4.15.0-99-generic (sur /dev/sda3)
Ubuntu, with Linux 4.15.0-96-generic (sur /dev/sda3)
Ubuntu 14.04.1 LTS (14.04) (sur /dev/sdb3)
XUBUNTU 14.04 EFI GNU/Linux-usb-EMTEC (sur /dev/sdb3)
XUBUNTU 14.04 EFI GNU/Linux (sur /dev/sdb3)
XUBUNTU 14.04 EFI GNU/Linux, avec Linux 3.13.0-117-generic (sur /dev/sdb3)
XUBUNTU 14.04 EFI GNU/Linux, avec Linux 3.13.0-32-generic (sur /dev/sdb3)
### END /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_uefi-firmware ###
========================== sdb4/etc/fstab (filtered) ===========================
# <file system> <mount point> <type> <options> <dump> <pass>
UUID=cb4fb6ab-daa4-405d-a278-99d4c4ca5e63 / ext4 noatime,errors=remount-ro 0 1
======================= sdb4/etc/default/grub (filtered) =======================
GRUB_DEFAULT=0
#GRUB_TIMEOUT_STYLE=hidden
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"
#GRUB_TERMINAL=console
#GRUB_GFXMODE=640x480
#GRUB_DISABLE_LINUX_UUID=true
#GRUB_DISABLE_RECOVERY="true"
#GRUB_INIT_TUNE="480 440 1"
==================== sdb4: Location of files loaded by Grub ====================
GiB - GB File Fragment(s)
56.213134766 = 60.358393856 boot/grub/grub.cfg 4
54.364910126 = 58.373877760 boot/grub/i386-pc/core.img 1
57.391582489 = 61.623742464 boot/vmlinuz-4.15.0-88-generic 1
44.243148804 = 47.505719296 boot/vmlinuz-4.15.0-91-generic 1
39.215808868 = 42.107654144 boot/vmlinuz-4.15.0-99-generic 1
39.215808868 = 42.107654144 vmlinuz 1
44.243148804 = 47.505719296 vmlinuz.old 1
43.469017029 = 46.674501632 boot/initrd.img-4.15.0-88-generic 8
43.367458344 = 46.565453824 boot/initrd.img-4.15.0-91-generic 5
43.679962158 = 46.901002240 boot/initrd.img-4.15.0-99-generic 7
43.679962158 = 46.901002240 initrd.img 7
43.367458344 = 46.565453824 initrd.img.old 5
================================= User choice ==================================
Is sda (ATA LDLC) a removable disk? no
Suggested repair: ______________________________________________________________
The default repair of the Boot-Repair utility would purge (in order to reset grubenv) and reinstall the grub2 of
sda3 into the MBRs of all disks (except live-disks and removable disks without OS).
Grub-efi would not be selected by default because: legacy-win no-win-efi
Additional repair would be performed: unhide-bootmenu-10s
Advice in case of suggested repair: ____________________________________________
EFI detected. You may want to retry after activating the [Separate /boot/efi partition:] option.
Do you want to continue?
Final advice in case of suggested repair: ______________________________________
Please do not forget to make your BIOS boot on sda (ATA LDLC) disk!
Remarque sur le boot info.
================================ 8 OS detected =================================
OS#1: L'OS actuellement utilisé - Ubuntu 18.04.4 LTS CurrentSession on sda3
OS#2: Ubuntu 14.04.6 LTS on sda2
OS#3: Ubuntu 14.04.1 LTS on sdb3
OS#4: Ubuntu 18.04.4 LTS on sdb4
OS#5: Linux on sda1
OS#6: Linux on sdb1
OS#7: Linux on sdb5
OS#8: Ubuntu 18.04.4 LTS on sdb2
8 Os détectés ?.
Il n'y a que 5 Os dans la config. 1 Windows sur le SSD interne et 2 Linux. Et 2 Linux sur la clé de tests.
OS#5: Linux on sda1, non c'est WIndows7 qui y est installé.
OS#6: Linux on sdb1, la partition boot efi est prise pour un Os installé?.
OS#7: Linux on sdb5, partition FAT 32; test-multi, partition data sur la clé USB de tests, il n'y a pas d'Os installé. Mais contient 3 iso que je peux démarrer depuis le grub du 18.04 en /dev/sda3. C'est çà qui trompe boot-info?.
Il y a aussi une iso dans la partition système de Windows /dev/sda1 que je peux aussi lancer depuis ce Grub.
Est-ce que c'est çà qui trompe boot-info?.
Je reconnais que j'ai là une config peu ordinaire.
====================== sda3/boot/grub/grub.cfg (filtered) ======================
Ubuntu
Ubuntu, with Linux 4.15.0-99-generic
Ubuntu, with Linux 4.15.0-96-generic
Windows 7 (on /dev/sda1)
Ubuntu 14.04.6 LTS (14.04) (on /dev/sda2)
Ubuntu (on /dev/sda2)
Ubuntu, avec Linux 3.13.0-170-generic (on /dev/sda2)
Ubuntu, avec Linux 3.13.0-169-generic (on /dev/sda2)
### END /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_uefi-firmware ###
Iso Live ubuntu-budgie-17.04-desktop-i386.iso dans cle USB3-Emtec
Iso Live ubuntu-17.10-desktop-amd64.iso dans cle USB3-Emtec
Iso Live ubuntu-18.04.2-desktop-amd64.iso dans partition Windows-7-dell
Iso Live ubuntu-18.04.2-desktop-amd64.iso dans partition systeme-fusion-dell
Iso Live ubuntu-19.10-desktop-amd64.iso dans partition systeme-fusion-dell
En suivant;
====================== sdb3/boot/grub/grub.cfg (filtered) ======================
XUBUNTU 14.04 EFI GNU/Linux-usb-EMTEC
UBUNTU-18.04-usb-EMTEC
HYBRYDE FUSION 14.04_Dell-Latitude-E4310 GNU/Linux
Windows 7 (loader) (sur /dev/sda1)
------------------- Menu Grub Classique -------------------
XUBUNTU 14.04 EFI GNU/Linux
XUBUNTU 14.04 EFI GNU/Linux, avec Linux 3.13.0-117-generic
XUBUNTU 14.04 EFI GNU/Linux, avec Linux 3.13.0-32-generic
EFI/ubuntu/MokManager.efi
Ubuntu 14.04.6 LTS (14.04) (sur /dev/sda2)
Ubuntu (sur /dev/sda2)
Ubuntu, avec Linux 3.13.0-170-generic (sur /dev/sda2)
Ubuntu, avec Linux 3.13.0-169-generic (sur /dev/sda2)
Ubuntu 18.04.4 LTS (18.04) (sur /dev/sda3)
Ubuntu (sur /dev/sda3)
Ubuntu, with Linux 4.15.0-99-generic (sur /dev/sda3)
Ubuntu, with Linux 4.15.0-96-generic (sur /dev/sda3)
Ubuntu 18.04.4 LTS (18.04) (sur /dev/sdb4)
Ubuntu (sur /dev/sdb4)
Ubuntu, avec Linux 4.15.0-91-generic (sur /dev/sdb4)
Ubuntu, avec Linux 4.15.0-88-generic (sur /dev/sdb4)
Ubuntu, avec Linux 4.15.0-76-generic (sur /dev/sdb4)
Ubuntu 18.04.4 LTS (18.04) (sur /dev/sda3) (sur /dev/sdb4)
Ubuntu (sur /dev/sda3) (sur /dev/sdb4)
Ubuntu, avec Linux 4.15.0-91-generic (sur /dev/sda3) (sur /dev/sdb4)
Ubuntu, avec Linux 4.15.0-88-generic (sur /dev/sda3) (sur /dev/sdb4)
Ubuntu, avec Linux 4.15.0-76-generic (sur /dev/sda3) (sur /dev/sdb4)
### END /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_uefi-firmware ###
Iso Live ubuntu-budgie-17.04-desktop-i386.iso dans cle USB3
Iso Live ubuntu-artful-desktop-amd64.iso dans cle USB3-Emtec
Iso Live Ubuntu17.10-desktop-amd64.iso dans cle USB3-Emtec
Résultat du tests d'un script pour raccourcir les grub.cfg qui s'allongent depuis Grub V2.0 et suivants.
https://forum.ubuntu-fr.org/viewtopic.php?id=2004576
Alors là, chose intéressante;
================================= User choice ==================================
Is sda (ATA LDLC) a removable disk? no
Suggested repair: ______________________________________________________________
The default repair of the Boot-Repair utility would purge (in order to reset grubenv) and reinstall the grub2 of
sda3 into the MBRs of all disks (except live-disks and removable disks without OS).
Grub-efi would not be selected by default because: legacy-win no-win-efi
Additional repair would be performed: unhide-bootmenu-10s
Advice in case of suggested repair: ____________________________________________
EFI detected. You may want to retry after activating the [Separate /boot/efi partition:] option.
Do you want to continue?
Final advice in case of suggested repair: ______________________________________
Please do not forget to make your BIOS boot on sda (ATA LDLC) disk!
Bien que la machine soit démarrée en mode UEFI.
Depuis la session installée, la réparation recommandée propose de réinstaller correctement Grub-pc dans le système 18.04 installé en Bios_Legacy en /dev/sda3. Le boot info ne s'est pas laissé trompé.
Je n'ai pas tenté la réparation, mais j'ai un autre 18.04 installé en Bios_Legacy dans la clé de tests en /dev/sdb4.
Je vais tester la manip, pour voir...
@+. Babdu89 .
J'ai découvert Ubuntu avec la 07.10.... Et alors?!... Depuis je regarde de temps en temps si Windows marche toujours....
Hors ligne