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.

#26 Le 11/02/2018, à 15:56

zlotz

Re : Le redémarrage post-installation ne donne rien

Je n'ai pas les fichiers que tu évoques dans /mnt/var/log :

ubuntu@ubuntu:~$ tail -50  /mnt/var/log/syslog
tail: impossible d'ouvrir '/mnt/var/log/syslog' en lecture: Aucun fichier ou dossier de ce type
ubuntu@ubuntu:~$ cd /mnt
ubuntu@ubuntu:/mnt$ cd var
ubuntu@ubuntu:/mnt/var$ cd log
ubuntu@ubuntu:/mnt/var/log$ ls
alternatives.log  btmp          faillog         lastlog              wtmp
apt               cups          fontconfig.log  lightdm
boot-info         dist-upgrade  fsck            speech-dispatcher
boot-repair       dmesg         hp              unattended-upgrades
bootstrap.log     dpkg.log      installer       upstart

Hors ligne

#27 Le 11/02/2018, à 16:58

??

Re : Le redémarrage post-installation ne donne rien

tail -150  /mnt/var/log/dmsg

Dernière modification par ?? (Le 11/02/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

#28 Le 11/02/2018, à 17:24

malbo

Re : Le redémarrage post-installation ne donne rien

La commande correcte est :

tail -150  /mnt/var/log/dmesg

Mais elle doit donner seulement ça :

(Nothing has been logged yet.)

Parce que ce fichier dmesg ne contient que cette ligne.

Dernière modification par malbo (Le 11/02/2018, à 17:29)

Hors ligne

#29 Le 11/02/2018, à 17:39

zlotz

Re : Le redémarrage post-installation ne donne rien

@ malbo :
Oui, effectivement.

Hors ligne

#30 Le 11/02/2018, à 17:53

??

Re : Le redémarrage post-installation ne donne rien

Donnes le contenu de

head  -200  /mnt/boot/grub/grub.cfg

Merci Malbo pour la correction du nom


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

#31 Le 11/02/2018, à 22:39

zlotz

Re : Le redémarrage post-installation ne donne rien

Voilà :

#
# 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,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  475c8bd3-ab3c-4962-93a3-ac91a40d57d2
else
  search --no-floppy --fs-uuid --set=root 475c8bd3-ab3c-4962-93a3-ac91a40d57d2
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=10
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-475c8bd3-ab3c-4962-93a3-ac91a40d57d2' {
	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,msdos1'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  475c8bd3-ab3c-4962-93a3-ac91a40d57d2
	else
	  search --no-floppy --fs-uuid --set=root 475c8bd3-ab3c-4962-93a3-ac91a40d57d2
	fi
	linux	/boot/vmlinuz-4.4.0-31-generic root=UUID=475c8bd3-ab3c-4962-93a3-ac91a40d57d2 ro  quiet splash nomodeset acpi=off noapic $vt_handoff
	initrd	/boot/initrd.img-4.4.0-31-generic
}
submenu 'Advanced options for Ubuntu' $menuentry_id_option 'gnulinux-advanced-475c8bd3-ab3c-4962-93a3-ac91a40d57d2' {
	menuentry 'Ubuntu, with Linux 4.4.0-31-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.4.0-31-generic-advanced-475c8bd3-ab3c-4962-93a3-ac91a40d57d2' {
		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,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  475c8bd3-ab3c-4962-93a3-ac91a40d57d2
		else
		  search --no-floppy --fs-uuid --set=root 475c8bd3-ab3c-4962-93a3-ac91a40d57d2
		fi
		echo	'Loading Linux 4.4.0-31-generic ...'
		linux	/boot/vmlinuz-4.4.0-31-generic root=UUID=475c8bd3-ab3c-4962-93a3-ac91a40d57d2 ro  quiet splash nomodeset acpi=off noapic $vt_handoff
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-4.4.0-31-generic
	}
	menuentry 'Ubuntu, with Linux 4.4.0-31-generic (upstart)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.4.0-31-generic-init-upstart-475c8bd3-ab3c-4962-93a3-ac91a40d57d2' {
		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,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  475c8bd3-ab3c-4962-93a3-ac91a40d57d2
		else
		  search --no-floppy --fs-uuid --set=root 475c8bd3-ab3c-4962-93a3-ac91a40d57d2
		fi
		echo	'Loading Linux 4.4.0-31-generic ...'
		linux	/boot/vmlinuz-4.4.0-31-generic root=UUID=475c8bd3-ab3c-4962-93a3-ac91a40d57d2 ro  quiet splash nomodeset acpi=off noapic $vt_handoff init=/sbin/upstart
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-4.4.0-31-generic
	}
	menuentry 'Ubuntu, with Linux 4.4.0-31-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.4.0-31-generic-recovery-475c8bd3-ab3c-4962-93a3-ac91a40d57d2' {
		recordfail
		load_video
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  475c8bd3-ab3c-4962-93a3-ac91a40d57d2
		else

Dernière modification par zlotz (Le 11/02/2018, à 22:42)

Hors ligne

#32 Le 11/02/2018, à 23:18

??

Re : Le redémarrage post-installation ne donne rien

zlotz a écrit :

Voilà :

......
	linux	/boot/vmlinuz-4.4.0-31-generic root=UUID=475c8bd3-ab3c-4962-93a3-ac91a40d57d2 ro  quiet splash nomodeset acpi=off noapic $vt_handoff
	initrd	/boot/initrd.img-4.4...........

Les options de boot sont bien positionnées,
L'absence des fichiers de trace  ( syslog et kern.log ) devrait être une piste que je ne sais comprendre.
En tout cas c'est avant la gestion de l'écran,


Peux-tu réaccéder à ce fichier, accéder à la ligne suivante:

	linux	/boot/vmlinuz-4.4.0-31-generic root=UUID=475c8bd3-ab3c-4962-93a3-ac91a40d57d2 ro  quiet splash nomodeset acpi=off noapic $vt_handoff

supprimer les deux mots quiet splash sauver et rebooter. 

Espérons que ce  qu'il dira à l'écran ouvrira une piste...

Dernière modification par ?? (Le 11/02/2018, à 23:27)


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

#33 Le 12/02/2018, à 00:05

zlotz

Re : Le redémarrage post-installation ne donne rien

J'ai essayé avec vi, le fichier est en read-only.

D'ailleurs, il commence par :

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

Dois-je aller fouiller dans ces templates et ces settings ?

Hors ligne

#34 Le 12/02/2018, à 10:00

??

Re : Le redémarrage post-installation ne donne rien

Bonjour
Si tu as booté avec le support d'installation et monté la partition sur /mnt ( https://forum.ubuntu-fr.org/viewtopic.p … #p21869404 ) je suis surpris que le fichier soit en read only.
  Si tel est le cas, on a un début de ste expliquant pourquoi cela n'a pas écrit dans le répertoire /var/log
Tu aurais des éditeurs du style gedit ou nano plus accessibles que vi.

Dans le fichier, il y a des commentaires disant que cette modification ne restera pas éternellement gardée. Mais ne t'inquiétes pas, lorsqu'on aura trouvé ce qui cloche, on rectifiera de façon définive...

Il serait bon que tu donnes l'état du disque paragraphe 1 et 3.1 de smartctl https://doc.ubuntu-fr.org/smartmontools

Dernière modification par ?? (Le 12/02/2018, à 10:09)


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

#35 Le 12/02/2018, à 20:57

zlotz

Re : Le redémarrage post-installation ne donne rien

Ça semble vraiment en read-only :

ubuntu@ubuntu:~$ sudo   mount   -v   /dev/sda1 /mnt
mount: /dev/sda1 mounted on /mnt.
ubuntu@ubuntu:~$ cd /mnt/boot/grub
ubuntu@ubuntu:/mnt/boot/grub$ ls -l
total 2384
drwxr-xr-x 2 root root    4096 Feb  7 22:33 fonts
-rw-r--r-- 1 root root     712 Jul 19  2016 gfxblacklist.txt
-r--r--r-- 1 root root    8479 Feb 10 11:19 grub.cfg
-rw-rw-r-- 1 root root    1024 Feb  7 22:33 grubenv
drwxr-xr-x 2 root root   12288 Feb 10 11:19 i386-pc
drwxr-xr-x 2 root root    4096 Feb 10 11:19 locale
-rw-r--r-- 1 root root 2398585 Jul 19  2016 unicode.pf2

Je peux ouvrir le fichier avec gedit, le rectifier, mais pas le sauver.

Voilà le résultat du smartctl (j'ai mis aussi la log de l'installation de smartmontools car une erreur est reportée ; je ne sais pas si ça peut avoir un rapport mais j'ai dû m'y reprendre à plusieurs fois) :

ubuntu@ubuntu:~$ sudo apt-get install smartmontools 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following additional packages will be installed:
  bsd-mailx liblockfile-bin liblockfile1 postfix
Suggested packages:
  procmail postfix-mysql postfix-pgsql postfix-ldap postfix-pcre sasl2-bin
  dovecot-common postfix-cdb postfix-doc gsmartcontrol smart-notifier
The following NEW packages will be installed:
  bsd-mailx liblockfile-bin liblockfile1 postfix smartmontools
0 upgraded, 5 newly installed, 0 to remove and 0 not upgraded.
Need to get 0 B/1,677 kB of archives.
After this operation, 5,683 kB of additional disk space will be used.
Do you want to continue? [Y/n] Y
debconf: DbDriver "config": /var/cache/debconf/config.dat is locked by another process: Resource temporarily unavailable
Selecting previously unselected package liblockfile-bin.
(Reading database ... 191931 files and directories currently installed.)
Preparing to unpack .../liblockfile-bin_1.09-6ubuntu1_amd64.deb ...
Unpacking liblockfile-bin (1.09-6ubuntu1) ...
Selecting previously unselected package liblockfile1:amd64.
Preparing to unpack .../liblockfile1_1.09-6ubuntu1_amd64.deb ...
Unpacking liblockfile1:amd64 (1.09-6ubuntu1) ...
Selecting previously unselected package postfix.
Preparing to unpack .../postfix_3.1.0-3_amd64.deb ...
debconf: DbDriver "config": /var/cache/debconf/config.dat is locked by another process: Resource temporarily unavailable
dpkg: error processing archive /var/cache/apt/archives/postfix_3.1.0-3_amd64.deb (--unpack):
 subprocess new pre-installation script returned error exit status 1
Selecting previously unselected package bsd-mailx.
Preparing to unpack .../bsd-mailx_8.1.2-0.20160123cvs-2_amd64.deb ...
Unpacking bsd-mailx (8.1.2-0.20160123cvs-2) ...
Selecting previously unselected package smartmontools.
Preparing to unpack .../smartmontools_6.4+svn4214-1_amd64.deb ...
Unpacking smartmontools (6.4+svn4214-1) ...
Processing triggers for man-db (2.7.5-1) ...
Processing triggers for libc-bin (2.23-0ubuntu3) ...
Processing triggers for systemd (229-4ubuntu7) ...
Processing triggers for ureadahead (0.100.0-19) ...
Errors were encountered while processing:
 /var/cache/apt/archives/postfix_3.1.0-3_amd64.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)
ubuntu@ubuntu:~$ sudo smartctl -s on -a /dev/sda
smartctl 6.5 2016-01-24 r4214 [x86_64-linux-4.4.0-31-generic] (local build)
Copyright (C) 2002-16, Bruce Allen, Christian Franke, www.smartmontools.org

=== START OF INFORMATION SECTION ===
Model Family:     Seagate Barracuda 7200.14 (AF)
Device Model:     ST1000DM003-1CH162
Serial Number:    Z1D2ZJXC
LU WWN Device Id: 5 000c50 04f5b8530
Firmware Version: CC44
User Capacity:    1,000,204,886,016 bytes [1.00 TB]
Sector Sizes:     512 bytes logical, 4096 bytes physical
Rotation Rate:    7200 rpm
Form Factor:      3.5 inches
Device is:        In smartctl database [for details use: -P show]
ATA Version is:   ATA8-ACS T13/1699-D revision 4
SATA Version is:  SATA 3.0, 6.0 Gb/s (current: 6.0 Gb/s)
Local Time is:    Mon Feb 12 19:55:09 2018 UTC
SMART support is: Available - device has SMART capability.
SMART support is: Enabled

=== START OF ENABLE/DISABLE COMMANDS SECTION ===
SMART Enabled.

=== START OF READ SMART DATA SECTION ===
SMART overall-health self-assessment test result: PASSED

General SMART Values:
Offline data collection status:  (0x82)	Offline data collection activity
					was completed without error.
					Auto Offline Data Collection: Enabled.
Self-test execution status:      (   0)	The previous self-test routine completed
					without error or no self-test has ever 
					been run.
Total time to complete Offline 
data collection: 		(  575) seconds.
Offline data collection
capabilities: 			 (0x7b) SMART execute Offline immediate.
					Auto Offline data collection on/off support.
					Suspend Offline collection upon new
					command.
					Offline surface scan supported.
					Self-test supported.
					Conveyance Self-test supported.
					Selective Self-test supported.
SMART capabilities:            (0x0003)	Saves SMART data before entering
					power-saving mode.
					Supports SMART auto save timer.
Error logging capability:        (0x01)	Error logging supported.
					General Purpose Logging supported.
Short self-test routine 
recommended polling time: 	 (   1) minutes.
Extended self-test routine
recommended polling time: 	 ( 108) minutes.
Conveyance self-test routine
recommended polling time: 	 (   2) minutes.
SCT capabilities: 	       (0x3085)	SCT Status supported.

SMART Attributes Data Structure revision number: 10
Vendor Specific SMART Attributes with Thresholds:
ID# ATTRIBUTE_NAME          FLAG     VALUE WORST THRESH TYPE      UPDATED  WHEN_FAILED RAW_VALUE
  1 Raw_Read_Error_Rate     0x000f   115   099   006    Pre-fail  Always       -       94936744
  3 Spin_Up_Time            0x0003   097   097   000    Pre-fail  Always       -       0
  4 Start_Stop_Count        0x0032   099   099   020    Old_age   Always       -       1645
  5 Reallocated_Sector_Ct   0x0033   100   100   010    Pre-fail  Always       -       0
  7 Seek_Error_Rate         0x000f   083   060   030    Pre-fail  Always       -       208233823
  9 Power_On_Hours          0x0032   081   081   000    Old_age   Always       -       16925
 10 Spin_Retry_Count        0x0013   100   100   097    Pre-fail  Always       -       0
 12 Power_Cycle_Count       0x0032   099   099   020    Old_age   Always       -       1648
183 Runtime_Bad_Block       0x0032   100   100   000    Old_age   Always       -       0
184 End-to-End_Error        0x0032   100   100   099    Old_age   Always       -       0
187 Reported_Uncorrect      0x0032   100   100   000    Old_age   Always       -       0
188 Command_Timeout         0x0032   100   100   000    Old_age   Always       -       0 0 0
189 High_Fly_Writes         0x003a   100   100   000    Old_age   Always       -       0
190 Airflow_Temperature_Cel 0x0022   072   058   045    Old_age   Always       -       28 (Min/Max 17/28)
191 G-Sense_Error_Rate      0x0032   100   100   000    Old_age   Always       -       0
192 Power-Off_Retract_Count 0x0032   100   100   000    Old_age   Always       -       215
193 Load_Cycle_Count        0x0032   040   040   000    Old_age   Always       -       121204
194 Temperature_Celsius     0x0022   028   042   000    Old_age   Always       -       28 (0 11 0 0 0)
197 Current_Pending_Sector  0x0012   100   100   000    Old_age   Always       -       0
198 Offline_Uncorrectable   0x0010   100   100   000    Old_age   Offline      -       0
199 UDMA_CRC_Error_Count    0x003e   200   200   000    Old_age   Always       -       0
240 Head_Flying_Hours       0x0000   100   253   000    Old_age   Offline      -       15345h+19m+40.355s
241 Total_LBAs_Written      0x0000   100   253   000    Old_age   Offline      -       18327714115
242 Total_LBAs_Read         0x0000   100   253   000    Old_age   Offline      -       19443065392

SMART Error Log Version: 1
No Errors Logged

SMART Self-test log structure revision number 1
No self-tests have been logged.  [To run self-tests, use: smartctl -t]

SMART Selective self-test log data structure revision number 1
 SPAN  MIN_LBA  MAX_LBA  CURRENT_TEST_STATUS
    1        0        0  Not_testing
    2        0        0  Not_testing
    3        0        0  Not_testing
    4        0        0  Not_testing
    5        0        0  Not_testing
Selective self-test flags (0x0):
  After scanning selected spans, do NOT read-scan remainder of disk.
If Selective self-test is pending on power-up, resume after 0 minute delay.

Dernière modification par zlotz (Le 12/02/2018, à 20:59)

Hors ligne

#36 Le 13/02/2018, à 00:16

??

Re : Le redémarrage post-installation ne donne rien

et si tu fais

sudo gedit /mnt/boot/grub/grub.cfg

NOTA: Le disque dur n'a pas de problème inquiètant.
Un peu  d'usure. Spécialement le compteur 193

ID# ATTRIBUTE_NAME          FLAG     VALUE WORST THRESH TYPE      UPDATED  WHEN_FAILED RAW_VALUE
  7 Seek_Error_Rate         0x000f   083   060   030    Pre-fail  Always       -       208233823
  9 Power_On_Hours          0x0032   081   081   000    Old_age   Always       -       16925
193 Load_Cycle_Count        0x0032   040   040   000    Old_age   Always       -       121204

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


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

#37 Le 13/02/2018, à 00:36

zlotz

Re : Le redémarrage post-installation ne donne rien

J'obtiens les warnings suivantes :

ubuntu@ubuntu:~$ sudo gedit /mnt/boot/grub/grub.cfg

(gedit:9465): Gtk-WARNING **: Calling Inhibit failed: GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name org.gnome.SessionManager was not provided by any .service files

** (gedit:9465): WARNING **: Set document metadata failed: Setting attribute metadata::gedit-spell-enabled not supported

** (gedit:9465): WARNING **: Set document metadata failed: Setting attribute metadata::gedit-encoding not supported

Après avoir fermé puis réouvert le fichier, il semble que je l'ai modifié.

J'essaie de redémarrer, mais rien ne change.

Dernière modification par zlotz (Le 13/02/2018, à 00:44)

Hors ligne

#38 Le 13/02/2018, à 01:02

??

Re : Le redémarrage post-installation ne donne rien

As-tu quelques  lignes qui s'écrivent sur l'écran ou est-il désespérement noir?


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

#39 Le 13/02/2018, à 12:00

zlotz

Re : Le redémarrage post-installation ne donne rien

J'ai le menu suivant :
- Ubuntu
- Advanced options for Ubuntu
- Memory test (...des trucs...)
- Memory test (...des trucs...)

Puis, si je choisis Ubuntu (ou si j'attends), j'ai un écran noir avec seulement un curseur clignotant en haut à gauche.

Hors ligne