Contenu | Rechercher | Menus

Annonce

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

À propos de l'équipe du forum.

#151 Le 20/03/2018, à 17:14

Sisiphe

Re : UBUNTU ne démarre plus Problème résolu (partiellement)

Je crois bien que je me suis planté lors de mon dernier envoi!
Je n'avais pas fait sudo update-grub avant de te l'envoyer!
J'ai re-fait la manip
d'abord tu demandes de mettre correctement l'option nomodeset dans le fichier /etc/default/grub!
La commande nano /etc/default/grub  répond pas de fichier à ce nom
J'ai donc procédé comme précédemment (msg page3)  sudo nano /boot/grub/grub.config
J'ai vérifié, aprè la modification , que nomodeset était toujours présent, et j'ai fai  sudo update-grub
Je mets le retour, assez long!, et à titre d'essai, je te le mets également avec paste.debian.net!

$ cat /boot/grub/grub.cfg | head -200
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
  set have_grubenv=true
  load_env
fi
if [ "${next_entry}" ] ; then
   set default="${next_entry}"
   set next_entry=
   save_env next_entry
   set boot_once=true
else
   set default="0"
fi

if [ x"${feature_menuentry_id}" = xy ]; then
  menuentry_id_option="--id"
else
  menuentry_id_option=""
fi

export menuentry_id_option

if [ "${prev_saved_entry}" ]; then
  set saved_entry="${prev_saved_entry}"
  save_env saved_entry
  set prev_saved_entry=
  save_env prev_saved_entry
  set boot_once=true
fi

function savedefault {
  if [ -z "${boot_once}" ]; then
    saved_entry="${chosen}"
    save_env saved_entry
  fi
}
function recordfail {
  set recordfail=1
  if [ -n "${have_grubenv}" ]; then if [ -z "${boot_once}" ]; then save_env recordfail; fi; fi
}
function load_video {
  if [ x$feature_all_video_module = xy ]; then
    insmod all_video
  else
    insmod efi_gop
    insmod efi_uga
    insmod ieee1275_fb
    insmod vbe
    insmod vga
    insmod video_bochs
    insmod video_cirrus
  fi
}

if [ x$feature_default_font_path = xy ] ; then
   font=unicode
else
insmod part_msdos
insmod ext2
set root='hd0,msdos7'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos7 --hint-efi=hd0,msdos7 --hint-baremetal=ahci0,msdos7  97a969cc-957d-4cd8-99d7-d2e42abad02a
else
  search --no-floppy --fs-uuid --set=root 97a969cc-957d-4cd8-99d7-d2e42abad02a
fi
    font="/usr/share/grub/unicode.pf2"
fi

if loadfont $font ; then
  set gfxmode=auto
  load_video
  insmod gfxterm
  set locale_dir=$prefix/locale
  set lang=fr_FR
  insmod gettext
fi
terminal_output gfxterm
if [ "${recordfail}" = 1 ] ; then
  set timeout=30
else
  if [ x$feature_timeout_style = xy ] ; then
    set timeout_style=menu
    set timeout=10
  # Fallback normal timeout code in case the timeout_style feature is
  # unavailable.
  else
    set timeout=10
  fi
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=white/black
set menu_color_highlight=black/light-gray
if background_color 44,0,30,0; then
  clear
fi
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
function gfxmode {
	set gfxpayload="${1}"
	if [ "${1}" = "keep" ]; then
		set vt_handoff=vt.handoff=7
	else
		set vt_handoff=
	fi
}
if [ "${recordfail}" != 1 ]; then
  if [ -e ${prefix}/gfxblacklist.txt ]; then
    if hwmatch ${prefix}/gfxblacklist.txt 3; then
      if [ ${match} = 0 ]; then
        set linux_gfx_mode=keep
      else
        set linux_gfx_mode=text
      fi
    else
      set linux_gfx_mode=text
    fi
  else
    set linux_gfx_mode=keep
  fi
else
  set linux_gfx_mode=text
fi
export linux_gfx_mode
menuentry 'Ubuntu' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-97a969cc-957d-4cd8-99d7-d2e42abad02a' {
	recordfail
	load_video
	gfxmode $linux_gfx_mode
	insmod gzio
	if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos7'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos7 --hint-efi=hd0,msdos7 --hint-baremetal=ahci0,msdos7  97a969cc-957d-4cd8-99d7-d2e42abad02a
	else
	  search --no-floppy --fs-uuid --set=root 97a969cc-957d-4cd8-99d7-d2e42abad02a
	fi
        linux	/boot/vmlinuz-4.4.0-116-generic root=UUID=97a969cc-957d-4cd8-99d7-d2e42abad02a ro  quiet splash $vt_handoff
	initrd	/boot/initrd.img-4.4.0-116-generic
}
submenu 'Options avancées pour Ubuntu' $menuentry_id_option 'gnulinux-advanced-97a969cc-957d-4cd8-99d7-d2e42abad02a' {
	menuentry 'Ubuntu, avec Linux 4.4.0-116-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.4.0-116-generic-advanced-97a969cc-957d-4cd8-99d7-d2e42abad02a' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos7'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos7 --hint-efi=hd0,msdos7 --hint-baremetal=ahci0,msdos7  97a969cc-957d-4cd8-99d7-d2e42abad02a
		else
		  search --no-floppy --fs-uuid --set=root 97a969cc-957d-4cd8-99d7-d2e42abad02a
		fi
		echo	'Chargement de Linux 4.4.0-116-generic…'
	        linux	/boot/vmlinuz-4.4.0-116-generic root=UUID=97a969cc-957d-4cd8-99d7-d2e42abad02a ro  quiet splash $vt_handoff
		echo	'Chargement du disque mémoire initial…'
		initrd	/boot/initrd.img-4.4.0-116-generic
	}
	menuentry 'Ubuntu, with Linux 4.4.0-116-generic (upstart)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.4.0-116-generic-init-upstart-97a969cc-957d-4cd8-99d7-d2e42abad02a' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos7'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos7 --hint-efi=hd0,msdos7 --hint-baremetal=ahci0,msdos7  97a969cc-957d-4cd8-99d7-d2e42abad02a
		else
		  search --no-floppy --fs-uuid --set=root 97a969cc-957d-4cd8-99d7-d2e42abad02a
		fi
		echo	'Chargement de Linux 4.4.0-116-generic…'
	        linux	/boot/vmlinuz-4.4.0-116-generic root=UUID=97a969cc-957d-4cd8-99d7-d2e42abad02a ro  quiet splash $vt_handoff init=/sbin/upstart
		echo	'Chargement du disque mémoire initial…'
		initrd	/boot/initrd.img-4.4.0-116-generic
	}
	menuentry 'Ubuntu, with Linux 4.4.0-116-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.4.0-116-generic-recovery-97a969cc-957d-4cd8-99d7-d2e42abad02a' {
		recordfail
		load_video
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos7'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos7 --hint-efi=hd0,msdos7 --hint-baremetal=ahci0,msdos7  97a969cc-957d-4cd8-99d7-d2e42abad02a
		else
daniel@daniel-300E4A-300E5A-300E7A:~$ 

J'essaye de mettre le paste dans le msg suivant!

Hors ligne

#152 Le 20/03/2018, à 17:27

??

Re : UBUNTU ne démarre plus Problème résolu (partiellement)

Sisiphe a écrit :

Je crois bien que je me suis planté lors de mon dernier envoi!
Je n'avais pas fait sudo update-grub avant de te l'envoyer!
J'ai re-fait la manip===>
d'abord tu demandes de mettre correctement l'option nomodeset dans le fichier /etc/default/grub!
La commande nano /etc/default/grub  répond pas de fichier à ce nom!

Si je compare  à mon exemple
/etc/default/grub
Il y a une faute de frappe qui s'est glissée à un moment donné dans la discussion.       Cela ne se termine pas par un point d'exclamation
Ce fichier contient environ 34 lignes. Il existait bien à l'échange 41

donc du coup la modif a été éliminée et c'est revenu comme au tout début  (echange 69).

Dernière modification par ?? (Le 20/03/2018, à 17:32)


Utiliser REFIND au lieu du GRUB https://doc.ubuntu-fr.org/refind . Aidez à vous faire dépanner en suivant le guide et en utilisant les outils de diagnostic J'ai perdu ma gomme. Désolé pour les fautes d'orthographes non corrigées.

Hors ligne

#153 Le 20/03/2018, à 17:31

Sisiphe

Re : UBUNTU ne démarre plus Problème résolu (partiellement)

Je te communique la reference de l'envoi

Posting 1015712

J'aimerais savoir si ça a marché!
Sur le fichier /bootgrub/grub.cfg, il me semble que nomodeset a disparu, alors qu'il est toujours là si j'ouvre l'éditeur nano  /boot/grub/grub.cfg !!!?
Effet de la mise à jour update?

Hors ligne

#154 Le 20/03/2018, à 17:38

??

Re : UBUNTU ne démarre plus Problème résolu (partiellement)

http://paste.debian.net/1015712/
C'est bien arrivé.

posting 1015712 from Sisiphe posted at 2018-03-20 16:22:28 expires: 2018-03-23 16:22:28

$ cat /boot/grub/grub.cfg | head -200
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by gru...............etc........

Dans  le fichier /boot/grub/grub.cfg,  nomodeset a disparu, car il n'a pas été ajouté auparavant dans le fichier  que tu ne trouves pas .
C'est un effet de la mise à jour update


Donc on le recherche

cd /
ls -ls 
cd  /etc
ls  -ls
cd /etc/default
ls -ls
sudo gedit /etc/default/grub

Dernière modification par ?? (Le 20/03/2018, à 17:44)


Utiliser REFIND au lieu du GRUB https://doc.ubuntu-fr.org/refind . Aidez à vous faire dépanner en suivant le guide et en utilisant les outils de diagnostic J'ai perdu ma gomme. Désolé pour les fautes d'orthographes non corrigées.

Hors ligne

#155 Le 21/03/2018, à 13:44

Sisiphe

Re : UBUNTU ne démarre plus Problème résolu (partiellement)

Bonjour
Je viens de vérifier, avec l'éditeur nano en mode lecture, que nomodeset n'est plus là
Mais je pourais à nouveau la remettre! C'est ce que j'avais fait hier
Au fait, tu écris "on va le rechercher. Mais rechercher quoi exactement?  Le fichier qui comporte nomodeset? je me perd un peu!!
Comme tu l'écris, sans doute dû à update grub
Voilà le retour de la 1ère commande

/$ ls -ls 
total 24632
    4 drwxr-xr-x   2 root root     4096 févr. 15 22:57 bin
    4 drwxr-xr-x   3 root root     4096 mars   5 00:39 boot
    4 drwxrwxr-x   2 root root     4096 mai   20  2017 cdrom
24524 -rw-------   1 root root 25112576 janv. 11 21:07 core
    8 -rw-------   1 root root     5548 mars  21 10:39 dead.letter
    0 drwxr-xr-x  21 root root     4460 mars  17 18:59 dev
   12 drwxr-xr-x 135 root root    12288 mars  18 10:56 etc
    4 drwxr-xr-x   3 root root     4096 janv. 24 23:59 home
    0 lrwxrwxrwx   1 root root       33 févr. 27 12:41 initrd.img -> boot/initrd.img-4.4.0-116-generic
    0 lrwxrwxrwx   1 root root       33 janv. 24 23:27 initrd.img.old -> boot/initrd.img-4.4.0-112-generic
    4 drwxr-xr-x  23 root root     4096 janv. 18 14:16 lib
    4 drwxr-xr-x   2 root root     4096 janv. 18 14:16 lib64
   16 drwx------   2 root root    16384 mai   20  2017 lost+found
    4 drwxr-xr-x   5 root root     4096 févr. 27 13:41 media
    4 drwxr-xr-x   4 root root     4096 févr. 15 01:39 mnt
    4 drwxr-xr-x   4 root root     4096 janv. 26 21:34 opt
    0 dr-xr-xr-x 252 root root        0 mars  14 09:51 proc
    4 drwx------  11 root root     4096 mars  15 13:07 root
    0 drwxr-xr-x  28 root root      900 mars  21 10:18 run
   12 drwxr-xr-x   2 root root    12288 mars  18 10:55 sbin
    4 drwxr-xr-x   5 root root     4096 févr. 13 21:59 snap
    4 drwxr-xr-x   2 root root     4096 avril 21  2016 srv
    0 dr-xr-xr-x  13 root root        0 mars  21 12:26 sys
    4 drwxrwxrwt  23 root root     4096 mars  21 13:17 tmp
    4 drwxr-xr-x  11 root root     4096 avril 21  2016 usr
    4 drwxr-xr-x  14 root root     4096 avril 21  2016 var
    0 lrwxrwxrwx   1 root root       30 févr. 27 12:41 vmlinuz -> boot/vmlinuz-4.4.0-116-generic
    0 lrwxrwxrwx   1 root root       30 janv. 24 23:27 vmlinuz.old -> boot/vmlinuz-4.4.0-112-generic
daniel@daniel-300E4A-300E5A-300E7A:/$

La suivante étant assez longue je la passerai par paste debian

Hors ligne

#156 Le 21/03/2018, à 16:13

Sisiphe

Re : UBUNTU ne démarre plus Problème résolu (partiellement)

Voici la suite:
La deuxieme commande est envoyée: paste debian: 1015861
La troisième        1015862
Et la dernière aboutit sur une feuille de l'éditeur! Faut il faitre quelque chose sur cette feuille
Par ailleurs la commande répond:

/etc/default$ sudo gedit /etc/default/grub
[sudo] Mot de passe de daniel : 

** (gedit:4157): WARNING **: Set document metadata failed: La définition de l’attribut metadata::gedit-position n’est pas prise en charge
daniel@daniel-300E4A-300E5A-300E7A:/etc/default$

Y trouve s tu des éléments interessant?
Par paste.débian, je trouve ça assez laborieux!  avant de trouver la bonne façon de copier!

Comment récupérer le texte d'un message qui a disparu lorsque l'on essayer de l'envoyer alors que le temps  d'utilisation  de la connexion est dépassé; la connexion reste toujours affichée comme active! c'est très énervant!
Merci

Hors ligne

#157 Le 21/03/2018, à 16:56

??

Re : UBUNTU ne démarre plus Problème résolu (partiellement)

Bonjour
C'est déjà une bonne chose, on a retrouvé le fichier
Pour information, Voici le contenu de /etc

/etc$ ls -ls
total 1228
  4 drwxr-xr-x  3 root root     4096 avril 21  2016 acpi
  4 -rw-r--r--  1 root root     3028 avril 21  2016 adduser.conf
  4 drwxr-xr-x  2 root root     4096 mars  18 10:55 alternatives
  4 -rw-r--r--  1 root root      401 déc.  29  2014 anacrontab
  4 -rw-r--r--  1 root root      112 janv. 10  2014 apg.conf
  4 drwxr-xr-x  6 root root     4096 avril 21  2016 apm
  4 drwxr-xr-x  3 root root     4096 mars  14 11:15 apparmor
  4 drwxr-xr-x  8 root root     4096 mars  18 10:56 apparmor.d
  4 drwxr-xr-x  5 root root     4096 janv.  4 10:18 apport
  4 -rw-r--r--  1 root root      389 avril 18  2016 appstream.conf
  4 drwxr-xr-x  6 root root     4096 nov.   9 10:31 apt
  4 drwxr-xr-x  3 root root     4096 avril 21  2016 aptdaemon
  4 drwxr-xr-x  2 root root     4096 avril 21  2016 at-spi2
  4 drwxr-xr-x  3 root root     4096 avril 21  2016 avahi
  4 -rw-r--r--  1 root root     2188 sept.  1  2015 bash.bashrc
  4 -rw-r--r--  1 root root       45 août  12  2015 bash_completion
  4 drwxr-xr-x  2 root root     4096 févr. 27 12:42 bash_completion.d
  4 -rw-r--r--  1 root root      367 janv. 27  2016 bindresvport.blacklist
  4 drwxr-xr-x  2 root root     4096 avril 12  2016 binfmt.d
  4 drwxr-xr-x  2 root root     4096 sept. 25 17:16 bluetooth
  4 -rw-r--r--  1 root root       33 avril 21  2016 brlapi.key
  4 drwxr-xr-x  7 root root     4096 avril 21  2016 brltty
 24 -rw-r--r--  1 root root    23444 avril 11  2016 brltty.conf
  4 drwxr-xr-x  3 root root     4096 avril 21  2016 ca-certificates
 12 -rw-r--r--  1 root root     8464 oct.  31 10:40 ca-certificates.conf
  8 -rw-r--r--  1 root root     7788 avril 21  2016 ca-certificates.conf.dpkg-old
  4 drwxr-xr-x  2 root root     4096 avril 21  2016 calendar
  4 drwxr-s---  2 root dip      4096 avril 21  2016 chatscripts
  4 drwxr-xr-x  3 root root     4096 sept. 28 13:43 chromium-browser
  4 drwxr-xr-x  2 root root     4096 mars  12 12:12 compizconfig
  4 drwxr-xr-x  2 root root     4096 mai   23  2017 console-setup
  4 drwxr-xr-x  2 root root     4096 nov.   6 19:58 cracklib
  4 drwxr-xr-x  2 root root     4096 avril 21  2016 cron.d
  4 drwxr-xr-x  2 root root     4096 mars  18 10:55 cron.daily
  4 drwxr-xr-x  2 root root     4096 avril 21  2016 cron.hourly
  4 drwxr-xr-x  2 root root     4096 avril 21  2016 cron.monthly
  4 -rw-r--r--  1 root root      722 avril  5  2016 crontab
  4 drwxr-xr-x  2 root root     4096 mars  14 11:15 cron.weekly
  4 drwxr-xr-x  5 root lp       4096 mars  21 12:52 cups
  4 drwxr-xr-x  2 root root     4096 avril 21  2016 cupshelpers
  4 drwxr-xr-x  4 root root     4096 mai   23  2017 dbus-1
  4 drwxr-xr-x  4 root root     4096 avril 21  2016 dconf
  4 -rw-r--r--  1 root root     2969 nov.  10  2015 debconf.conf
  4 -rw-r--r--  1 root root       12 avril 30  2015 debian_version
  4 drwxr-xr-x  2 root root     4096 mars  20 15:13 default
  4 -rw-r--r--  1 root root      604 juil.  2  2015 deluser.conf
  4 drwxr-xr-x  2 root root     4096 sept. 12  2017 depmod.d
  4 drwxr-xr-x  4 root root     4096 mars  18 10:56 dhcp
  4 drwxr-xr-x  2 root root     4096 mai   20  2017 dictionaries-common
  4 drwxr-xr-x  2 root root     4096 janv. 18 14:21 dnsmasq.d
  4 drwxr-xr-x  3 root root     4096 avril 21  2016 doc-base
  4 drwxr-xr-x  4 root root     4096 mars  18 10:56 dpkg
 12 -rw-r--r--  1 root root     9129 janv. 13 09:57 drirc
  4 drwxr-xr-x  3 root root     4096 avril 21  2016 emacs
  4 -rw-r--r--  1 root root       96 avril 21  2016 environment
  4 drwxr-xr-x  3 root root     4096 mars  18 10:56 firefox
  4 drwxr-xr-x  4 root root     4096 mai   23  2017 fonts
  4 -rw-rw-r--  1 root root      707 mai   21  2017 fstab
  4 -rw-r--r--  1 root root      280 juin  20  2014 fuse.conf
  4 -rw-r--r--  1 root root      459 janv. 29 23:22 fwupd.conf
  4 -rw-r--r--  1 root root     2584 févr. 18  2016 gai.conf
  4 drwxr-xr-x  5 root root     4096 avril 21  2016 gconf
  4 drwxr-xr-x  2 root root     4096 juil. 27  2017 gdb
  4 drwxr-xr-x  4 root root     4096 avril 21  2016 ghostscript
  4 drwxr-xr-x  2 root root     4096 mai   23  2017 gnome
  4 drwxr-xr-x  2 root root     4096 avril 21  2016 gnome-app-install
  4 drwxr-xr-x  2 root root     4096 mars  16 16:50 gnome-system-tools
  4 drwxr-xr-x  2 root root     4096 avril 21  2016 groff
  4 -rw-r--r--  1 root root     1071 févr. 27 13:40 group
  4 -rw-------  1 root root     1051 janv. 18 19:52 group-
  4 drwxr-xr-x  2 root root     4096 févr. 27 12:40 grub.d
  4 drwxr-xr-x  2 root root     4096 févr.  8 20:54 grub.d.ori
  4 -rw-r-----  1 root shadow    899 févr. 27 13:40 gshadow
  4 -rw-------  1 root root      882 janv. 18 19:52 gshadow-
  4 drwxr-xr-x  3 root root     4096 avril 21  2016 gss
  4 drwxr-xr-x  2 root root     4096 sept. 12  2017 gtk-2.0
  4 drwxr-xr-x  2 root root     4096 mai   23  2017 gtk-3.0
  4 drwxr-xr-x  2 root root     4096 mars  31  2017 guest-session
  8 -rw-r--r--  1 root root     4781 mars  17  2016 hdparm.conf
  4 -rw-r--r--  1 root root       92 oct.  22  2015 host.conf
  4 -rw-r--r--  1 root root       28 mai   20  2017 hostname
  4 -rw-r--r--  1 root root      242 mai   20  2017 hosts
  4 -rw-r--r--  1 root root      411 avril 21  2016 hosts.allow
  4 -rw-r--r--  1 root root      711 avril 21  2016 hosts.deny
  4 drwxr-xr-x  2 root root     4096 nov.   6 21:43 hp
  4 drwxr-xr-x  3 root root     4096 avril 21  2016 ifplugd
  4 -rw-rw-r--  1 root root      158 mai   20  2017 iftab
  4 drwxr-xr-x  2 root root     4096 août   2  2017 ImageMagick-6
  4 drwxr-xr-x  2 root root     4096 mars  14 11:15 init
  4 drwxr-xr-x  2 root root     4096 mars  14 11:15 init.d
  4 drwxr-xr-x  5 root root     4096 janv. 18 14:20 initramfs-tools
  4 drwxr-xr-x  2 root root     4096 févr. 17 22:23 init.save20180217
  4 -rw-r--r--  1 root root     1748 févr.  4  2016 inputrc
  4 drwxr-xr-x  3 root root     4096 mars   6  2015 insserv
  4 -rw-r--r--  1 root root      771 mars   6  2015 insserv.conf
  4 drwxr-xr-x  2 root root     4096 mars   6  2015 insserv.conf.d
  4 drwxr-xr-x  2 root root     4096 janv. 18 14:20 iproute2
  4 -rw-r--r--  1 root root       26 févr. 20 09:44 issue
  4 -rw-r--r--  1 root root       19 févr. 20 09:44 issue.net
  4 drwxr-xr-x  2 root root     4096 mai   23  2017 kbd
  4 drwxr-xr-x  5 root root     4096 janv. 24 23:00 kernel
  4 -rw-r--r--  1 root root      110 mai   20  2017 kernel-img.conf
  4 -rw-r--r--  1 root root     1308 mars  10  2016 kerneloops.conf
  4 drwxr-xr-x  2 root root     4096 juin   2  2017 ldap
120 -rw-r--r--  1 root root   122178 mars  16 16:50 ld.so.cache
  4 -rw-r--r--  1 root root       34 janv. 27  2016 ld.so.conf
  4 drwxr-xr-x  2 root root     4096 janv. 18 14:17 ld.so.conf.d
  4 -rw-r--r--  1 root root      267 oct.  22  2015 legal
  4 -rw-r--r--  1 root root       27 janv.  8  2015 libao.conf
  4 -rw-r--r--  1 root root      191 janv. 19  2016 libaudit.conf
  4 drwxr-xr-x  2 root root     4096 juin   8  2017 libnl-3
  4 drwxr-xr-x  2 root root     4096 nov.   4  2015 libpaper.d
  4 drwxr-xr-x  2 root root     4096 févr. 27 12:42 libreoffice
  4 drwxr-xr-x  3 root root     4096 janv. 28 15:34 lightdm
  4 -rw-r--r--  1 root root     1151 avril  8  2016 lintianrc
  4 -rw-r--r--  1 root root     2995 avril 15  2016 locale.alias
 12 -rw-r--r--  1 root root     9149 janv. 18 14:19 locale.gen
  0 lrwxrwxrwx  1 root root       32 nov.  17 06:03 localtime -> /usr/share/zoneinfo/Europe/Paris
  4 drwxr-xr-x  4 root root     4096 avril 21  2016 logcheck
 12 -rw-r--r--  1 root root    10551 mars  29  2016 login.defs
  4 -rw-r--r--  1 root root      703 mai    6  2015 logrotate.conf
  4 drwxr-xr-x  2 root root     4096 mars  18 10:55 logrotate.d
  4 -rw-r--r--  1 root root      105 févr. 20 09:43 lsb-release
 16 -rw-r--r--  1 root root    14867 avril 12  2016 ltrace.conf
  4 -r--r--r--  1 root root       33 mai   20  2017 machine-id
  4 -rw-r--r--  1 root root      111 nov.  20  2015 magic
  4 -rw-r--r--  1 root root      111 nov.  20  2015 magic.mime
 52 -rw-r--r--  1 root root    52871 mars  18 10:56 mailcap
  4 -rw-r--r--  1 root root      449 oct.  30  2015 mailcap.order
  8 -rw-r--r--  1 root root     5170 nov.   7  2015 manpath.config
 24 -rw-r--r--  1 root root    24241 oct.  30  2015 mime.types
  4 -rw-r--r--  1 root root      967 oct.  30  2015 mke2fs.conf
  4 drwxr-xr-x  2 root root     4096 févr.  8 20:54 modprobe.d
  4 -rw-r--r--  1 root root      195 avril 21  2016 modules
  4 drwxr-xr-x  2 root root     4096 févr.  8 20:53 modules-load.d
  0 lrwxrwxrwx  1 root root       19 mai   20  2017 mtab -> ../proc/self/mounts
  4 -rw-r--r--  1 root root      624 août   8  2007 mtools.conf
 12 -rw-r--r--  1 root root     8338 mars  29  2016 nanorc
  4 drwxr-xr-x  7 root root     4096 avril 21  2016 network
  4 drwxr-xr-x  8 root root     4096 janv. 18 14:21 NetworkManager
  4 -rw-r--r--  1 root root       91 oct.  22  2015 networks
  4 drwxr-xr-x  2 root root     4096 avril 21  2016 newt
  4 -rw-r--r--  1 root root      529 avril 21  2016 nsswitch.conf
  4 drwxr-xr-x  2 root root     4096 avril 21  2016 opt
  0 lrwxrwxrwx  1 root root       21 févr. 20 09:44 os-release -> ../usr/lib/os-release
  4 -rw-r--r--  1 root root      552 mars  16  2016 pam.conf
  4 drwxr-xr-x  2 root root     4096 mars  12 12:12 pam.d
  4 -rw-rw-r--  1 root root        3 mai   20  2017 papersize
  4 -rw-r--r--  1 root root     2479 févr. 27 13:40 passwd
  4 -rw-------  1 root root     2420 janv. 18 19:52 passwd-
  4 drwxr-xr-x  2 root root     4096 avril 21  2016 pcmcia
  4 drwxr-xr-x  4 root root     4096 avril 21  2016 perl
  4 drwxr-xr-x  4 root root     4096 avril 21  2016 pki
  4 drwxr-xr-x  5 root root     4096 avril 21  2016 pm
  8 -rw-r--r--  1 root root     7649 avril 21  2016 pnm2ppa.conf
  4 drwxr-xr-x  5 root root     4096 avril 21  2016 polkit-1
  4 -rw-rw-r--  1 root root      350 mai   20  2017 popularity-contest.conf
  4 drwxr-xr-x  8 root root     4096 avril 21  2016 ppp
  0 lrwxrwxrwx  1 root root       22 févr. 21 15:08 printcap -> /var/run/cups/printcap
  4 -rw-r--r--  1 root root      575 oct.  22  2015 profile
  4 drwxr-xr-x  2 root root     4096 janv. 18 14:21 profile.d
  4 -rw-r--r--  1 root root     2932 oct.  25  2014 protocols
  4 drwxr-xr-x  2 root root     4096 févr. 27 12:41 pulse
  4 drwxr-xr-x  2 root root     4096 avril 21  2016 python
  4 drwxr-xr-x  2 root root     4096 janv. 24 23:26 python2.7
  4 drwxr-xr-x  2 root root     4096 avril 21  2016 python3
  4 drwxr-xr-x  2 root root     4096 nov.  29 13:16 python3.5
  4 drwxr-xr-x  2 root root     4096 févr. 15 22:57 rc0.d
  4 drwxr-xr-x  2 root root     4096 févr. 14 16:50 rc1.d
  4 drwxr-xr-x  2 root root     4096 févr. 14 16:50 rc2.d
  4 drwxr-xr-x  2 root root     4096 févr. 14 16:50 rc3.d
  4 drwxr-xr-x  2 root root     4096 févr. 14 16:50 rc4.d
  4 drwxr-xr-x  2 root root     4096 févr. 14 16:50 rc5.d
  4 drwxr-xr-x  2 root root     4096 févr. 15 22:57 rc6.d
  4 -rwxr-xr-x  1 root root      306 avril 21  2016 rc.local
  4 drwxr-xr-x  2 root root     4096 févr. 15 22:57 rcS.d
  4 drwxr-xr-x  5 root root     4096 févr. 13 21:56 resolvconf
  0 lrwxrwxrwx  1 root root       29 mai   20  2017 resolv.conf -> ../run/resolvconf/resolv.conf
  4 -rwxr-xr-x  1 root root      268 nov.  10  2015 rmt
  4 -rw-r--r--  1 root root      887 oct.  25  2014 rpc
  4 -rw-r--r--  1 root root     1371 janv. 27  2016 rsyslog.conf
  4 drwxr-xr-x  2 root root     4096 avril 21  2016 rsyslog.d
  4 drwxr-xr-x  3 root root     4096 mai   23  2017 sane.d
  4 -rw-r--r--  1 root root     4038 mars  29  2016 securetty
  4 drwxr-xr-x  4 root root     4096 avril 21  2016 security
  4 drwxr-xr-x  2 root root     4096 avril 21  2016 selinux
 12 -rw-r--r--  1 root root    10368 oct.   2  2015 sensors3.conf
  4 drwxr-xr-x  2 root root     4096 avril 21  2016 sensors.d
 20 -rw-r--r--  1 root root    19605 oct.  25  2014 services
  4 drwxr-xr-x  3 root root     4096 août  21  2017 sgml
  4 -rw-r-----  1 root shadow   1452 févr. 27 13:40 shadow
  4 -rw-------  1 root root     1425 janv. 24 22:53 shadow-
  4 -rw-r--r--  1 root root       73 avril 21  2016 shells
  4 -rw-r--r--  1 root root     1803 nov.   6  2015 signond.conf
  4 drwxr-xr-x  3 root root     4096 avril 21  2016 signon-ui
  4 drwxr-xr-x  2 root root     4096 mai   23  2017 skel
  8 -rw-r--r--  1 root root     7056 févr.  6  2016 smartd.conf
  4 drwxr-xr-x  4 root root     4096 févr. 14 16:50 smartmontools
  8 -rw-r--r--  1 root root     6299 janv.  2  2016 s-nail.rc
  4 drwxr-xr-x  4 root root     4096 avril 21  2016 speech-dispatcher
  4 drwxr-xr-x  2 root root     4096 janv. 24 23:26 ssh
  4 drwxr-xr-x  4 root root     4096 déc.  31 10:41 ssl
  4 -rw-r--r--  1 root root       20 mai   20  2017 subgid
  0 -rw-------  1 root root        0 avril 21  2016 subgid-
  4 -rw-r--r--  1 root root       20 mai   20  2017 subuid
  0 -rw-------  1 root root        0 avril 21  2016 subuid-
  4 -r--r-----  1 root root      755 janv. 20  2017 sudoers
  4 drwxr-xr-x  2 root root     4096 sept. 12  2017 sudoers.d
  4 -rw-r--r--  1 root root     2084 sept.  6  2015 sysctl.conf
  4 drwxr-xr-x  2 root root     4096 févr.  8 20:53 sysctl.d
  4 drwxr-xr-x  5 root root     4096 févr.  8 20:54 systemd
  4 drwxr-xr-x  2 root root     4096 avril 21  2016 terminfo
  4 drwxr-xr-x  2 root root     4096 mai   23  2017 thermald
  4 drwxr-xr-x  2 root root     4096 févr.  1 23:17 thunderbird
  4 -rw-r--r--  1 root root       13 nov.  17 06:03 timezone
  4 drwxr-xr-x  2 root root     4096 avril 12  2016 tmpfiles.d
  4 -rw-r--r--  1 root root     1260 mars  16  2016 ucf.conf
  4 drwxr-xr-x  4 root root     4096 févr.  8 20:54 udev
  4 drwxr-xr-x  2 root root     4096 avril  1  2016 udisks2
  4 drwxr-xr-x  3 root root     4096 avril 21  2016 ufw
  4 -rw-r--r--  1 root root      338 nov.  18  2014 updatedb.conf
  4 drwxr-xr-x  3 root root     4096 févr. 27 12:41 update-manager
  4 drwxr-xr-x  2 root root     4096 mars  14 11:15 update-motd.d
  4 drwxr-xr-x  2 root root     4096 avril 12  2016 update-notifier
  4 drwxr-xr-x  2 root root     4096 mai   23  2017 UPower
  4 -rw-r--r--  1 root root      270 févr. 29  2016 upstart-xsessions
  4 -rw-r--r--  1 root root     1018 oct.   5  2015 usb_modeswitch.conf
  4 drwxr-xr-x  2 root root     4096 nov.   2  2015 usb_modeswitch.d
  4 -rw-r--r--  1 root root       51 févr. 19  2016 vdpau_wrapper.cfg
  4 drwxr-xr-x  2 root root     4096 mai   23  2017 vim
  0 lrwxrwxrwx  1 root root       23 mai   20  2017 vtrgb -> /etc/alternatives/vtrgb
  8 -rw-r--r--  1 root root     4942 janv.  8  2016 wgetrc
  4 -rw-r--r--  1 root root       30 août  21  2017 whoopsie
  4 drwxr-xr-x  2 root root     4096 oct.  31 10:45 wpa_supplicant
  4 drwxr-xr-x 11 root root     4096 avril 21  2016 X11
  4 drwxr-xr-x  5 root root     4096 mai   23  2017 xdg
  4 drwxr-xr-x  2 root root     4096 août  21  2017 xml
  4 -rw-r--r--  1 root root      477 juil. 19  2015 zsh_command_not_found
daniel@daniel-300E4A-300E5A-300E7A:/etc$ 

Je ne vois pas trop pourquoi, tu ne l'as pas fait en copier/coller

Voici le contenu de /etc/default

/etc/default$ ls -ls
total 132
4 -rw-r--r-- 1 root root  346 févr.  9  2016 acpid
8 -rw-r--r-- 1 root root 4922 mai    1  2013 acpi-support
4 -rw-r--r-- 1 root root  638 avril 21  2016 alsa
4 -rw-r--r-- 1 root root  290 déc.  28  2014 anacron
4 -rw-r--r-- 1 root root  149 mars  31  2016 apport
4 -rw-r--r-- 1 root root  219 nov.   4  2015 avahi-daemon
4 -rw-r--r-- 1 root root  608 avril 11  2016 brltty
4 -rw-r--r-- 1 root root  222 mai   22  2012 bsdmainutils
4 -rw-r--r-- 1 root root  285 mai   23  2017 console-setup
4 -rw-r--r-- 1 root root  549 août  23  2014 crda
4 -rw-r--r-- 1 root root  183 avril  5  2016 cron
4 -rw-r--r-- 1 root root  297 déc.   2  2015 dbus
4 -rw-r--r-- 1 root root   92 janv. 19  2016 devpts
4 -rw-r--r-- 1 root root   58 juin   1  2017 google-chrome
4 -rw-r--r-- 1 root root 1238 mai   20  2017 grub
4 -rw-r--r-- 1 root root   86 janv. 19  2016 halt
4 -rw-r--r-- 1 root root 1127 mars  26  2016 im-config
4 -rw-r--r-- 1 root root 1029 janv. 22 13:37 intel-microcode
4 -rw-r--r-- 1 root root  126 avril 21  2016 irqbalance
4 -rw-r--r-- 1 root root   84 mars  28  2014 kerneloops
4 -rw-rw-r-- 1 root root  156 mai   23  2017 keyboard
4 -rw-r--r-- 1 root root   54 mai   20  2017 locale
4 -rw-r--r-- 1 root root  306 juin   2  2015 networking
4 -rw-r--r-- 1 root root 1756 avril 14  2016 nss
4 -rw-r--r-- 1 root root  620 mai   20  2017 rcS
4 -rw-r--r-- 1 root root 1768 sept. 30  2013 rsync
4 -rw-r--r-- 1 root root  124 janv. 27  2016 rsyslog
4 -rw-r--r-- 1 root root  209 mai   23  2017 saned
4 -rw-r--r-- 1 root root  428 janv. 26  2016 smartmontools
4 -rw-r--r-- 1 root root  132 févr. 18  2016 speech-dispatcher
4 -rw-r--r-- 1 root root 1754 avril 15  2016 ufw
4 -rw-r--r-- 1 root root 1118 mars  29  2016 useradd
daniel@daniel-300E4A-300E5A-300E7A:/etc/default$

Mais pour le contenu du fichier qu'il faut modifier, c'est bien de dire "faut-il faire quelque chose dans la feuille"
Et bien, oui il faut faire quelque chose, il faut ajouter l'option nomodeset dans la ligne adéquate.

Je vais te donner un exemple de comment cela peut se présenter afin que tu puisses ajouter le mot au bon endroit.
Je le mets en  gras  et en bleu uniquement pour qu'il soit mieux visible. Dans la pratique, il sera avec le même police que les autres.

# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
# For full documentation of the options in this file, see:
#   info -f grub -n 'Simple configuration'

GRUB_DEFAULT=0
GRUB_HIDDEN_TIMEOUT=0
GRUB_HIDDEN_TIMEOUT_QUIET=true
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash nomodeset "
GRUB_CMDLINE_LINUX=""

# Uncomment to enable BadRAM filtering, modify to suit your needs
# This works with Linux (no patch required) and with any kernel that obtains
# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"

# Uncomment to disable graphical terminal (grub-pc only)
#GRUB_TERMINAL=console

# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
#GRUB_GFXMODE=640x480

# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
#GRUB_DISABLE_LINUX_UUID=true

# Uncomment to disable generation of recovery mode menu entries
#GRUB_DISABLE_RECOVERY="true"

# Uncomment to get a beep at grub start
#GRUB_INIT_TUNE="480 440 1"

=> N'oublies pas de sauvegarder lorsque tu auras rajouté le mot.

Il parait qu'on peut récupérer un message en préparation,    Un jour, j'ai vu un mode d'emploi mais je n'ai jamais réussi.
J'ai deux astuces.
   1) Faire une sélection de ce qu'on prépare, et la copier....... Si c'est déconnecté, on ré-rouvre la discussion et on la colle.
   2) Faire fréquemment des prévisualisations.

Dernière modification par ?? (Le 21/03/2018, à 16:59)


Utiliser REFIND au lieu du GRUB https://doc.ubuntu-fr.org/refind . Aidez à vous faire dépanner en suivant le guide et en utilisant les outils de diagnostic J'ai perdu ma gomme. Désolé pour les fautes d'orthographes non corrigées.

Hors ligne

#158 Le 22/03/2018, à 02:54

Sisiphe

Re : UBUNTU ne démarre plus Problème résolu (partiellement)

Bonsoir

C'est fait! le problème est que je faisais la modification telle que tu me l'avais indiquée dans ton #msg 69 (page 3)
Lorsque tu m'as demandé dans ton message #110, j'ai fait, et refait la même opération.
Je ne t'ai pas transmis les retours de commande par copier dans le message, car je pensais qu'ils étaient trop long, et trop encombrant dans le forum!
Je n'arrive pas à mettre le retour de la commande de sudo gedit etc/default/grub
Mais j'ai vérifié, nomodeset est bien présent!
Pour contrer la perte de message, je pratiquaie de la même façon que toi; mais je pensais que une récupération pouvait être faite plus facilement car parfois on oublie.
Bonne nuit

Hors ligne

#159 Le 22/03/2018, à 03:02

Sisiphe

Re : UBUNTU ne démarre plus Problème résolu (partiellement)

retour de la commande!


# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
# For full documentation of the options in this file, see:
#   info -f grub -n 'Simple configuration'

GRUB_DEFAULT=0
#GRUB_HIDDEN_TIMEOUT=0
GRUB_HIDDEN_TIMEOUT_QUIET=true
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash nomodset"
GRUB_CMDLINE_LINUX=""

# Uncomment to enable BadRAM filtering, modify to suit your needs
# This works with Linux (no patch required) and with any kernel that obtains
# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"

# Uncomment to disable graphical terminal (grub-pc only)
#GRUB_TERMINAL=console

# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
#GRUB_GFXMODE=640x480

# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
#GRUB_DISABLE_LINUX_UUID=true

# Uncomment to disable generation of recovery mode menu entries
#GRUB_DISABLE_RECOVERY="true"

# Uncomment to get a beep at grub start
#GRUB_INIT_TUNE="480 440 1"

Hors ligne

#160 Le 22/03/2018, à 09:29

??

Re : UBUNTU ne démarre plus Problème résolu (partiellement)

Tu t'es trompé dans l'écriture du mot. Merci de rectifier.


Utiliser REFIND au lieu du GRUB https://doc.ubuntu-fr.org/refind . Aidez à vous faire dépanner en suivant le guide et en utilisant les outils de diagnostic J'ai perdu ma gomme. Désolé pour les fautes d'orthographes non corrigées.

Hors ligne

#161 Le 22/03/2018, à 11:28

Sisiphe

Re : UBUNTU ne démarre plus Problème résolu (partiellement)

Bonjour
probablement déjà endormi!
Mais ces action utiliant un éditeur ne me sont pas encore très famillières..... (le deviendront elles???
C'est fait, et voici le retour! de sudo gedit  /etc/default/grub

# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
# For full documentation of the options in this file, see:
#   info -f grub -n 'Simple configuration'

GRUB_DEFAULT=0
#GRUB_HIDDEN_TIMEOUT=0
GRUB_HIDDEN_TIMEOUT_QUIET=true
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash nomodeset"
GRUB_CMDLINE_LINUX=""

# Uncomment to enable BadRAM filtering, modify to suit your needs
# This works with Linux (no patch required) and with any kernel that obtains
# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"

# Uncomment to disable graphical terminal (grub-pc only)
#GRUB_TERMINAL=console

# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
#GRUB_GFXMODE=640x480

# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
#GRUB_DISABLE_LINUX_UUID=true

# Uncomment to disable generation of recovery mode menu entries
#GRUB_DISABLE_RECOVERY="true"

# Uncomment to get a beep at grub start
#GRUB_INIT_TUNE="480 440 1"

Mes excuses!

Hors ligne

#162 Le 22/03/2018, à 13:05

??

Re : UBUNTU ne démarre plus Problème résolu (partiellement)

Maintenant, prise en charge via la commande

sudo update-grub

Et vérification par

 cat /boot/grub/grub.cfg | head -200

Utiliser REFIND au lieu du GRUB https://doc.ubuntu-fr.org/refind . Aidez à vous faire dépanner en suivant le guide et en utilisant les outils de diagnostic J'ai perdu ma gomme. Désolé pour les fautes d'orthographes non corrigées.

Hors ligne

#163 Le 22/03/2018, à 13:35

nam1962

Re : UBUNTU ne démarre plus Problème résolu (partiellement)

Ho, les Dupondt, certes vous me dépassez totalement, mais il serait temps d’atterrir !

Entre moustache vers le haut qui ne veut pas réinstaller depuis bientôt deux mois mais veut mettre du BSD “pour voir” (sic), et moustache vers le bas, qui envoie du “sudo gedit” (re-sic), histoire de pourrir encore plus l’install moisie.

Entre moustache vers le haut qui continue à ne pas donner de retours lisibles (ni même balisés) et moustache vers le bas qui la joue W$ avec des logiciels d’optimisation (de démarrage, d’analyse, de machin, de truc)…

…on est quand même arrivés à 120 posts et 6 semaines (sic) après la recommandation de réinstallation. (qui prend 40 minutes, finalisation comprise..)

Et toujours rien… Enfin si : l’install qui était déjà bien moisie est désormais incompréhensible à qui que ce soit ! (Bref elle dépasse tout le monde…)

Ce qui est ennuyeux c’est que ce fil vaguement drôlatique pour un habitué est surtout affolant pour le visiteur inopiné qui n’en pige pas le ridicule.

Ce n’est plus un fil c’est juste de la pollution…


[ Modéré ]

Hors ligne

#164 Le 22/03/2018, à 20:22

??

Re : UBUNTU ne démarre plus Problème résolu (partiellement)

Pastis ou Whishy ou hashish?


Utiliser REFIND au lieu du GRUB https://doc.ubuntu-fr.org/refind . Aidez à vous faire dépanner en suivant le guide et en utilisant les outils de diagnostic J'ai perdu ma gomme. Désolé pour les fautes d'orthographes non corrigées.

Hors ligne

#165 Le 22/03/2018, à 20:48

Sisiphe

Re : UBUNTU ne démarre plus Problème résolu (partiellement)

Plutôt que ton langage ésotérique, ne te serait il pas possible d'être plus explicite?
Si j'ai contre venu aux règles du forum, dis moi ce qui te froisse?
En quoi un système que tu estimes pourri fonctionnerait il parfaitement une fois démarré?
J'ai essayé de trouver , dans ton sit  mon tuto pour optimiser, mais je n'y ai rien trouvé me permettant de progresser.
Ubuntu souffre , d'une façon générale, auprès des nombreux utilissateurs lambda , d'un discrédit, qui s'exprime par: trop compliqué, et personne n'est en mesure de nous dépanner ou de nous expliquer comment il faut faire!
Si , au lieu de t'esclaffer parce que j'ai utilisé sudo gedit, accompagné du sic pour bien en montrer le ridicule, tu expliquerais pourquoi c'est stupide, ce serait plus positif.
Le problème que j'ai, se retrouve souvent parmis les difficultés rencontrées par les utilisateurs
En quoi en rechercher objectivement l'origine est il condamnable.



D'une façon générale, la documentation et les tutoriels d'Ubuntu sont très bien écris; cependant il me semble que des tutoriels synthétiques, avec des exemples d'écrire de commande seraient bienvenus!


---> ??
le sudo upgrade-grub avait été fait avant l'envoi du retour de commande (malencontreusement nommé!)

~$  cat /boot/grub/grub.cfg | head -200
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
  set have_grubenv=true
  load_env
fi
if [ "${next_entry}" ] ; then
   set default="${next_entry}"
   set next_entry=
   save_env next_entry
   set boot_once=true
else
   set default="0"
fi

if [ x"${feature_menuentry_id}" = xy ]; then
  menuentry_id_option="--id"
else
  menuentry_id_option=""
fi

export menuentry_id_option

if [ "${prev_saved_entry}" ]; then
  set saved_entry="${prev_saved_entry}"
  save_env saved_entry
  set prev_saved_entry=
  save_env prev_saved_entry
  set boot_once=true
fi

function savedefault {
  if [ -z "${boot_once}" ]; then
    saved_entry="${chosen}"
    save_env saved_entry
  fi
}
function recordfail {
  set recordfail=1
  if [ -n "${have_grubenv}" ]; then if [ -z "${boot_once}" ]; then save_env recordfail; fi; fi
}
function load_video {
  if [ x$feature_all_video_module = xy ]; then
    insmod all_video
  else
    insmod efi_gop
    insmod efi_uga
    insmod ieee1275_fb
    insmod vbe
    insmod vga
    insmod video_bochs
    insmod video_cirrus
  fi
}

if [ x$feature_default_font_path = xy ] ; then
   font=unicode
else
insmod part_msdos
insmod ext2
set root='hd0,msdos7'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos7 --hint-efi=hd0,msdos7 --hint-baremetal=ahci0,msdos7  97a969cc-957d-4cd8-99d7-d2e42abad02a
else
  search --no-floppy --fs-uuid --set=root 97a969cc-957d-4cd8-99d7-d2e42abad02a
fi
    font="/usr/share/grub/unicode.pf2"
fi

if loadfont $font ; then
  set gfxmode=auto
  load_video
  insmod gfxterm
  set locale_dir=$prefix/locale
  set lang=fr_FR
  insmod gettext
fi
terminal_output gfxterm
if [ "${recordfail}" = 1 ] ; then
  set timeout=30
else
  if [ x$feature_timeout_style = xy ] ; then
    set timeout_style=menu
    set timeout=10
  # Fallback normal timeout code in case the timeout_style feature is
  # unavailable.
  else
    set timeout=10
  fi
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=white/black
set menu_color_highlight=black/light-gray
if background_color 44,0,30,0; then
  clear
fi
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
function gfxmode {
	set gfxpayload="${1}"
	if [ "${1}" = "keep" ]; then
		set vt_handoff=vt.handoff=7
	else
		set vt_handoff=
	fi
}
if [ "${recordfail}" != 1 ]; then
  if [ -e ${prefix}/gfxblacklist.txt ]; then
    if hwmatch ${prefix}/gfxblacklist.txt 3; then
      if [ ${match} = 0 ]; then
        set linux_gfx_mode=keep
      else
        set linux_gfx_mode=text
      fi
    else
      set linux_gfx_mode=text
    fi
  else
    set linux_gfx_mode=keep
  fi
else
  set linux_gfx_mode=text
fi
export linux_gfx_mode
menuentry 'Ubuntu' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-97a969cc-957d-4cd8-99d7-d2e42abad02a' {
	recordfail
	load_video
	gfxmode $linux_gfx_mode
	insmod gzio
	if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos7'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos7 --hint-efi=hd0,msdos7 --hint-baremetal=ahci0,msdos7  97a969cc-957d-4cd8-99d7-d2e42abad02a
	else
	  search --no-floppy --fs-uuid --set=root 97a969cc-957d-4cd8-99d7-d2e42abad02a
	fi
        linux	/boot/vmlinuz-4.4.0-116-generic root=UUID=97a969cc-957d-4cd8-99d7-d2e42abad02a ro  quiet splash nomodeset $vt_handoff
	initrd	/boot/initrd.img-4.4.0-116-generic
}
submenu 'Options avancées pour Ubuntu' $menuentry_id_option 'gnulinux-advanced-97a969cc-957d-4cd8-99d7-d2e42abad02a' {
	menuentry 'Ubuntu, avec Linux 4.4.0-116-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.4.0-116-generic-advanced-97a969cc-957d-4cd8-99d7-d2e42abad02a' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos7'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos7 --hint-efi=hd0,msdos7 --hint-baremetal=ahci0,msdos7  97a969cc-957d-4cd8-99d7-d2e42abad02a
		else
		  search --no-floppy --fs-uuid --set=root 97a969cc-957d-4cd8-99d7-d2e42abad02a
		fi
		echo	'Chargement de Linux 4.4.0-116-generic…'
	        linux	/boot/vmlinuz-4.4.0-116-generic root=UUID=97a969cc-957d-4cd8-99d7-d2e42abad02a ro  quiet splash nomodeset $vt_handoff
		echo	'Chargement du disque mémoire initial…'
		initrd	/boot/initrd.img-4.4.0-116-generic
	}
	menuentry 'Ubuntu, with Linux 4.4.0-116-generic (upstart)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.4.0-116-generic-init-upstart-97a969cc-957d-4cd8-99d7-d2e42abad02a' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos7'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos7 --hint-efi=hd0,msdos7 --hint-baremetal=ahci0,msdos7  97a969cc-957d-4cd8-99d7-d2e42abad02a
		else
		  search --no-floppy --fs-uuid --set=root 97a969cc-957d-4cd8-99d7-d2e42abad02a
		fi
		echo	'Chargement de Linux 4.4.0-116-generic…'
	        linux	/boot/vmlinuz-4.4.0-116-generic root=UUID=97a969cc-957d-4cd8-99d7-d2e42abad02a ro  quiet splash nomodeset $vt_handoff init=/sbin/upstart
		echo	'Chargement du disque mémoire initial…'
		initrd	/boot/initrd.img-4.4.0-116-generic
	}
	menuentry 'Ubuntu, with Linux 4.4.0-116-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.4.0-116-generic-recovery-97a969cc-957d-4cd8-99d7-d2e42abad02a' {
		recordfail
		load_video
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos7'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos7 --hint-efi=hd0,msdos7 --hint-baremetal=ahci0,msdos7  97a969cc-957d-4cd8-99d7-d2e42abad02a
		else
daniel@daniel-300E4A-300E5A-300E7A:~$

Dois je changer de forum??
Merci

Hors ligne

#166 Le 22/03/2018, à 20:57

??

Re : UBUNTU ne démarre plus Problème résolu (partiellement)

tout vient à point à qui sait attendre

linux	/boot/vmlinuz-4.4.0-116-generic root=UUID=97a969cc-957d-4cd8-99d7-d2e42abad02a ro  quiet splash nomodeset $vt_handoff

Cela me semble correct.
Si cela va résoudre ton problème, je t'affirme que tu aurais pu réinstaller ubuntu 1001 fois sans succès.

Dernière modification par ?? (Le 22/03/2018, à 21:00)


Utiliser REFIND au lieu du GRUB https://doc.ubuntu-fr.org/refind . Aidez à vous faire dépanner en suivant le guide et en utilisant les outils de diagnostic J'ai perdu ma gomme. Désolé pour les fautes d'orthographes non corrigées.

Hors ligne

#167 Le 22/03/2018, à 23:34

??

Re : UBUNTU ne démarre plus Problème résolu (partiellement)

nam1962 a écrit :

Ho,

…on est quand même arrivés à 120 posts et 6 semaines (sic).
...
Ce n’est plus un fil c’est juste de la pollution…

Ne t'inquiètes pas, ton record ne risque  rien.
https://forum.ubuntu-fr.org/viewtopic.p … #p21766657
23 juillet post numéro 132

https://forum.ubuntu-fr.org/viewtopic.p … #p21811166
18 octobre post numéro 488

Dernière modification par ?? (Le 22/03/2018, à 23:45)


Utiliser REFIND au lieu du GRUB https://doc.ubuntu-fr.org/refind . Aidez à vous faire dépanner en suivant le guide et en utilisant les outils de diagnostic J'ai perdu ma gomme. Désolé pour les fautes d'orthographes non corrigées.

Hors ligne

#168 Le 22/03/2018, à 23:58

cqfd93

Re : UBUNTU ne démarre plus Problème résolu (partiellement)

Sisiphe a écrit :

Ubuntu souffre , d'une façon générale, auprès des nombreux utilissateurs lambda , d'un discrédit, qui s'exprime par: trop compliqué,

Euh non, ne prends pas ton cas pour une généralité. Pour de très nombreux utilisateurs, même lambda, il marche bien et après une phase de désadaptation aux pratiques windowsiennes que beaucoup prétendent naturelles, ça n'est pas compliqué. C'est juste différent.

et personne n'est en mesure de nous dépanner ou de nous expliquer comment il faut faire!

Ah bon ? C'est quoi ces centaines de milliers de sujets dont beaucoup sont marqués comme résolus ? Et les membres qui ont participé à tes discussions n'ont pas aidé ?

D'ailleurs, en regardant l'historique de tes discussions on constate que souvent tu as obtenu des réponses auxquelles tu n'as même pas pris la peine de répondre. Le minimum pour avoir une aide efficace est de faire ce qui t'est demandé ou de dire si tu ne comprends pas, au lieu de ça, tu fais silence radio.

Dois je changer de forum??Merci

Essaye d'en trouver un où il y aura autant de bonnes volontés bénévoles et efficaces…


cqfd93

Hors ligne

#169 Le 23/03/2018, à 08:50

nam1962

Re : UBUNTU ne démarre plus Problème résolu (partiellement)

+1. Tu remarqueras que j'ai fait partie de ceux qui t'ont accompagné pendant deux pages.. (à peu près jusqu'à ce que tu envoies Malbo ballader).

Tu dis que ton système tourne rond, si c'est le cas clos le fil et mets [Résolu] dans le titre du premier post. Si tu dois toujours passer en recovery, réinstalle comme il t'a été suggéré il y a 6 semaines (il n'y a rien d'ésotérique dans le fait de réinstaller.)

Pour le sudo gedit, tu n'as fait qu'appliquer ce qui t'es indiqué, invoquer un programme graphique avec sudo peut l'amener à changer les privilèges des fichiers (grosso rendre root propriétaire et toi en lecture seule => potentiel comportement incohérent voire blocages) pour pallier il faut

sudo -H leprogrammegraphique

.

Il n'y a pas énormément de choses à retenir dans les commandes (on les retrouve toujours, on peut se faire des pense bête, mais il faut un peu de syntaxe, ça ça en fait partie quand on prétend aider.


[ Modéré ]

Hors ligne

#170 Le 23/03/2018, à 12:55

Sisiphe

Re : UBUNTU ne démarre plus Problème résolu (partiellement)

Bonjour la Communauté
-->nam 162
on, il y en a plus que 120
De plus ce fil est la suite et la conséquence du fil précédent, c'est à dire celui qui se termine  le 03 02  18, comportant 113 msg
Le plantage auquel j'ai été confronté est intervenu après une commande d'arrêt puis redémarrage, demandée par xubu1957 (msg#34 et précédents du 18 01!! Les boot info , à l'époque n'ont pas pu être interprètés!
Après une récupération effectuée par un extérieur, j'ai retrouvé des problèmes faisant partie du présent fil
  --> cqfd93
Mais oui il marche bien! Si je n'en n'était pas convaincu, j'aurais changé de portage!
Si je persévère, c'est que je suis vraissemblablement tombé sur un os!
Mais fais l'essai autour de toi, demande dans un salon professionnel si les logiciels qu'ils proposent fonctionnet sous Linux, va acheter des composants à China town, en demandant si ça tourne sous Linux; Je pense que tu obtiendras des réponses qui corrigeront ton optimisme!
Par ailleurs, je recherche toujours les causes des difficultés, et ce fil constitue pour moi une excellente méthode d'apprentissage.
Je regrette, mais je ne vois pas de rmessage auxquels j'ai négligé de répondre;
Si parfois, je n'ai pas suivi les conseils recommandés, c'est parce que d'autres intervenants m'ont proposés des actions qui me semblaient mieux correspondre à la situation; je suis , me semble t'il assez bavard, et j'essaye d'être le plus précis possible dans mes réponses!
-->nam 1962
Comment peux tu écrire que j'ai envoyé malbo ballader??? c'est inexact
Il m'a proposé de re-installer,
mais un autre membre du forum m'a proposé une procédure qui permettait d'en savoir un peu plus sur le dysfonctionnement, sans mettre en cause une posibilité de re-installation; installation d'un deuxième OS "à côté du 1er"
Il me semble que c'est toi qui a décidé de quitter le fil!!   car tu n'étais pas aussi directif que malbo, et ta décision de quitter le fil m'a surpris! mais apparemment tu ne partageais pas le point de vue de  ??.
Mon système tourne rond, et il ne me souviens plus si actuellement , je suis en mode recovery?Mais je ne pense pas cartous les paramètres ressemblent à ceux d'un démarrage normal
Ma seule crainte actuelle est d'avoir, à nouveau des difficultés de re-démarrer!
Cette commande "sudo  -H le programme graphique "
La première fois que je la vois!
Les commandes son simples!!! Il suffit de lire man "une commande" pour en être persuadé !!!!
Et si j'ai évoqué BSD, qui t'as fait s'esclaffer,  peut être parce que tu as invoqué Debian dans ton site Almanet dolys!
Pour finir, l'un des  Dupon(d/t) se tourne vers l'ouest poursaluer   le Pr Tournesol,

Hors ligne

#171 Le 23/03/2018, à 13:10

nam1962

Re : UBUNTU ne démarre plus Problème résolu (partiellement)

J'apprends donc que ton ordi fonctionne. Ravi de le savoir d'ailleurs.
Donc tu peux mettre [Résolu] dans le titre de ton premier post.

Maintenant, je pense que ce fil doit filer illico dans le café, car 170 posts qui en suivent 113 pour vérifier qu'il n'y a pas de problème, ça ne va pas aider les novices qui débarquent sur l'aide à l'installation d'Ubuntu.

Sinon, je ne vois pas le rapport entre ce fil et un tuto sur l'installation de Debian, ni entre Debian et BSD...


[ Modéré ]

Hors ligne

#172 Le 23/03/2018, à 13:34

malbo

Re : UBUNTU ne démarre plus Problème résolu (partiellement)

@nam1962 : bien qu'il soit respectable, ce fil n'est pas dans le peloton de tête : il y a eu d'autres fils plus conséquents comme celui de pascal88 qui est mon fil de référence (219 posts) : https://forum.ubuntu-fr.org/viewtopic.php?id=1997903

Hors ligne

#173 Le 23/03/2018, à 13:52

cqfd93

Re : UBUNTU ne démarre plus Problème résolu (partiellement)

Sisiphe a écrit :

Mais fais l'essai autour de toi,

Autour de moi, je ne vois que des gens qui tournent sous windows et qui sont obligés de réinstaller tous les 6 mois ou pire de payer un professionnel parce que leur mise à jour a complètement planté.

demande dans un salon professionnel si les logiciels qu'ils proposent fonctionnet sous Linux

Je ne fréquente pas les salons professionnels et n'ai pas besoin de leurs produits.

va acheter des composants à China town, en demandant si ça tourne sous Linux; Je pense que tu obtiendras des réponses qui corrigeront ton optimisme!

China town, la rue Montgallet… ce ne sont que des pousse-cartons dont on n'a pas grand chose à attendre.

Je regrette, mais je ne vois pas de rmessage auxquels j'ai négligé de répondre;

Quelques exemples :
./viewtopic.php?pid=21834840#p21834840
./viewtopic.php?pid=21639679#p21639679
./viewtopic.php?pid=12457671#p12457671


cqfd93

Hors ligne

#174 Le 23/03/2018, à 13:52

Elzen

Re : UBUNTU ne démarre plus Problème résolu (partiellement)

Salut,

quelle que soit sa taille, ce sujet reste un sujet de support. Sa place est donc en section support, et pas dans le café.

En revanche, si la question initialement posée a été résolue, ce serait bien de l'indiquer dans le titre du sujet, en effet smile

Hors ligne

#175 Le 23/03/2018, à 13:55

cqfd93

Re : UBUNTU ne démarre plus Problème résolu (partiellement)

Elzen a écrit :

quelle que soit sa taille, ce sujet reste un sujet de support. Sa place est donc en section support, et pas dans le café.

En revanche, si la question initialement posée a été résolue, ce serait bien de l'indiquer dans le titre du sujet, en effet smile

Et ça serait bien aussi de préciser dans le premier message à quel moment le problème a été résolu (en donnant un lien vers le message qui confirme la résolution).


cqfd93

Hors ligne