Page 1 sur 2
Mise à jour ne passe pas sur un Packard Bell LJ65 ?
Posté : jeu. 6 avr. 2023 19:51
par jpdc91
Bonjour la communauté,
Je possède un vieux portable Packard Bell Easynote LJ65-AU-344FR ( puce graphique Intel ) 4 GB de Ram et 500 GB de disque dur sata et essayé de mettre à jour la dernière version Linux Mint 21.1 en utilisant le script de Mint, j'ai également essayé en formatant la partition / et en laissant celle de Home intacte, jusqu' à ce jour tout ce passé bien mais la ça passe plus. :twisted:
Après l'installation le portable démarre normalement avec son logo LM et ensuite l'écran reste noir avec une barre qui clignote.
Pouvez-vous m'aider ?
PS: Je précise que j'ai déjà essayé le mode "nomodeset " ça changer rien sous 21.1 en version 20.3 ça passe ..
Re: Mise à jour ne passe pas sur un Packard Bell LJ65 ?
Posté : jeu. 6 avr. 2023 20:21
par capdeframint
Tu as quelle carte vidéo sur cet ordi?
Re: Mise à jour ne passe pas sur un Packard Bell LJ65 ?
Posté : jeu. 6 avr. 2023 20:24
par jpdc91
Salut,
Packard Bell Easynote LJ65-AU-344FR ( puce graphique Intel )
PS En capture le contenu du grub..

Re: Mise à jour ne passe pas sur un Packard Bell LJ65 ?
Posté : ven. 7 avr. 2023 11:37
par jpdc91
J'ai effectué d'autres tests depuis...
Quand je démarre en mode recovery et que je fais un update du Grub dans cet outil de réparation linux Mint 21.1 et que je reprends le démarrage normal le système démarre bien, je comprends pas le souci de grub
C'est le seul moyen que j'ai trouvé pour utiliser Mint sur ce portable avec cette version 21.1..

Mon Grub;
Code : Tout sélectionner
#
# 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 [ "${initrdfail}" = 2 ]; then
set initrdfail=
elif [ "${initrdfail}" = 1 ]; then
set next_entry="${prev_entry}"
set prev_entry=
save_env prev_entry
if [ "${next_entry}" ]; then
set initrdfail=2
fi
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 initrdfail {
if [ -n "${have_grubenv}" ]; then if [ -n "${partuuid}" ]; then
if [ -z "${initrdfail}" ]; then
set initrdfail=1
if [ -n "${boot_once}" ]; then
set prev_entry="${default}"
save_env prev_entry
fi
fi
save_env initrdfail
fi; 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 c8e87852-f5c9-4bfd-98a4-4d356eacc706
else
search --no-floppy --fs-uuid --set=root c8e87852-f5c9-4bfd-98a4-4d356eacc706
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=hidden
set timeout=10
# Fallback hidden-timeout code in case the timeout_style feature is
# unavailable.
elif sleep --interruptible 10 ; then
set timeout=0
fi
fi
### END /etc/grub.d/00_header ###
### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=white/black
set menu_color_highlight=black/light-gray
### END /etc/grub.d/05_debian_theme ###
### BEGIN /etc/grub.d/10_linux ###
function gfxmode {
set gfxpayload="${1}"
if [ "${1}" = "keep" ]; then
set vt_handoff=vt.handoff=7
else
set vt_handoff=
fi
}
if [ "${recordfail}" != 1 ]; then
if [ -e ${prefix}/gfxblacklist.txt ]; then
if [ ${grub_platform} != pc ]; then
set linux_gfx_mode=keep
elif 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 'Linux Mint 21.1 MATE' --class linuxmint --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-c8e87852-f5c9-4bfd-98a4-4d356eacc706' {
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 c8e87852-f5c9-4bfd-98a4-4d356eacc706
else
search --no-floppy --fs-uuid --set=root c8e87852-f5c9-4bfd-98a4-4d356eacc706
fi
linux /boot/vmlinuz-5.15.0-69-generic root=UUID=c8e87852-f5c9-4bfd-98a4-4d356eacc706 ro quiet splash nomodeset
initrd /boot/initrd.img-5.15.0-69-generic
}
submenu 'Advanced options for Linux Mint 21.1 MATE' $menuentry_id_option 'gnulinux-advanced-c8e87852-f5c9-4bfd-98a4-4d356eacc706' {
menuentry 'Linux Mint 21.1 MATE, with Linux 5.15.0-69-generic' --class linuxmint --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-5.15.0-69-generic-advanced-c8e87852-f5c9-4bfd-98a4-4d356eacc706' {
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 c8e87852-f5c9-4bfd-98a4-4d356eacc706
else
search --no-floppy --fs-uuid --set=root c8e87852-f5c9-4bfd-98a4-4d356eacc706
fi
echo 'Loading Linux 5.15.0-69-generic ...'
linux /boot/vmlinuz-5.15.0-69-generic root=UUID=c8e87852-f5c9-4bfd-98a4-4d356eacc706 ro quiet splash nomodeset
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-5.15.0-69-generic
}
menuentry 'Linux Mint 21.1 MATE, with Linux 5.15.0-69-generic (recovery mode)' --class linuxmint --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-5.15.0-69-generic-recovery-c8e87852-f5c9-4bfd-98a4-4d356eacc706' {
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 c8e87852-f5c9-4bfd-98a4-4d356eacc706
else
search --no-floppy --fs-uuid --set=root c8e87852-f5c9-4bfd-98a4-4d356eacc706
fi
echo 'Loading Linux 5.15.0-69-generic ...'
linux /boot/vmlinuz-5.15.0-69-generic root=UUID=c8e87852-f5c9-4bfd-98a4-4d356eacc706 ro recovery nomodeset dis_ucode_ldr
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-5.15.0-69-generic
}
menuentry 'Linux Mint 21.1 MATE, with Linux 5.15.0-56-generic' --class linuxmint --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-5.15.0-56-generic-advanced-c8e87852-f5c9-4bfd-98a4-4d356eacc706' {
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 c8e87852-f5c9-4bfd-98a4-4d356eacc706
else
search --no-floppy --fs-uuid --set=root c8e87852-f5c9-4bfd-98a4-4d356eacc706
fi
echo 'Loading Linux 5.15.0-56-generic ...'
linux /boot/vmlinuz-5.15.0-56-generic root=UUID=c8e87852-f5c9-4bfd-98a4-4d356eacc706 ro quiet splash nomodeset
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-5.15.0-56-generic
}
menuentry 'Linux Mint 21.1 MATE, with Linux 5.15.0-56-generic (recovery mode)' --class linuxmint --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-5.15.0-56-generic-recovery-c8e87852-f5c9-4bfd-98a4-4d356eacc706' {
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 c8e87852-f5c9-4bfd-98a4-4d356eacc706
else
search --no-floppy --fs-uuid --set=root c8e87852-f5c9-4bfd-98a4-4d356eacc706
fi
echo 'Loading Linux 5.15.0-56-generic ...'
linux /boot/vmlinuz-5.15.0-56-generic root=UUID=c8e87852-f5c9-4bfd-98a4-4d356eacc706 ro recovery nomodeset dis_ucode_ldr
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-5.15.0-56-generic
}
}
### END /etc/grub.d/10_linux ###
### BEGIN /etc/grub.d/10_linux_zfs ###
### END /etc/grub.d/10_linux_zfs ###
### BEGIN /etc/grub.d/20_linux_xen ###
### END /etc/grub.d/20_linux_xen ###
### BEGIN /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_os-prober ###
### BEGIN /etc/grub.d/30_uefi-firmware ###
### END /etc/grub.d/30_uefi-firmware ###
### BEGIN /etc/grub.d/35_fwupd ###
### END /etc/grub.d/35_fwupd ###
### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries. Simply type the
# menu entries you want to add after this comment. Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###
### BEGIN /etc/grub.d/41_custom ###
if [ -f ${config_directory}/custom.cfg ]; then
source ${config_directory}/custom.cfg
elif [ -z "${config_directory}" -a -f $prefix/custom.cfg ]; then
source $prefix/custom.cfg
fi
### END /etc/grub.d/41_custom ###
Re: Mise à jour ne passe pas sur un Packard Bell LJ65 ?
Posté : ven. 7 avr. 2023 17:35
par jpdc91
Update..
Est-ce qu'il est possible que le noyau de la version 21.1 soit trop récent par rapport à l'ancienneté de mon portable ?

Re: Mise à jour ne passe pas sur un Packard Bell LJ65 ?
Posté : ven. 7 avr. 2023 18:39
par jpdc91
cyrille a écrit : ven. 7 avr. 2023 18:37
le nomodeset c'est bien dans ce fichier que tu l'as inséré ?
?
Puis tu as bien relancé l'upgrade du grub ?
Salut,
Bonne question je pense plutôt qu'il se trouve dans /Boot/grub chez moi...
Je vais m'en assurer

Re: Mise à jour ne passe pas sur un Packard Bell LJ65 ?
Posté : ven. 7 avr. 2023 18:50
par jpdc91
J'ai ceci dans /etc+Default/grub
Code : Tout sélectionner
# 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_TIMEOUT_STYLE=hidden
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"
Et ceci quand j'édite le fichier micro:
Code : Tout sélectionner
1 # If you change this file, run 'update-grub' afterwards to update
2 # /boot/grub/grub.cfg.
3 # For full documentation of the options in this file, see:
4 # info -f grub -n 'Simple configuration'
5
6 GRUB_DEFAULT=0
7 GRUB_TIMEOUT_STYLE=hidden
8 GRUB_TIMEOUT=10
9 GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
10 GRUB_CMDLINE_LINUX_DEFAULT="quiet splash nomodeset"
11 GRUB_CMDLINE_LINUX=""
12
13 # Uncomment to enable BadRAM filtering, modify to suit your needs
14 # This works with Linux (no patch required) and with any kernel that obtains
15 # the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
16 #GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"
17
18 # Uncomment to disable graphical terminal (grub-pc only)
19 #GRUB_TERMINAL=console
20
21 # The resolution used on graphical terminal
22 # note that you can use only modes which your graphic card supports via VBE
23 # you can see them in real GRUB with the command `vbeinfo'
24 #GRUB_GFXMODE=640x480
25
26 # Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
27 #GRUB_DISABLE_LINUX_UUID=true
28
29 # Uncomment to disable generation of recovery mode menu entries
30 #GRUB_DISABLE_RECOVERY="true"
31
32 # Uncomment to get a beep at grub start
33 #GRUB_INIT_TUNE="480 440 1"
34
/etc/default/grub (1,1) | ft:unknown | unix | utf-8 Alt-g: bindings, Ctrl-g: help
Re: Mise à jour ne passe pas sur un Packard Bell LJ65 ?
Posté : ven. 7 avr. 2023 18:57
par jpdc91
cyrille a écrit : ven. 7 avr. 2023 18:54
C'est bon alors
Comme tu arrives à booter, que retourne
Voici:
Code : Tout sélectionner
sudo dmesg | egrep 'fail|error|warn|firmw'
[sudo] Mot de passe de edvy80 :
[ 19.680949] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro. Quota mode: none.
[ 20.865516] systemd[1]: Dependency failed for Swaps.
[ 20.865697] systemd[1]: swap.target: Job swap.target/start failed with result 'dependency'.
[ 27.717895] iwlwifi 0000:04:00.0: loaded firmware version 18.168.6.1 6000g2a-6.ucode op_mode iwldvm
Code : Tout sélectionner
sudo update-grub2
Sourcing file `/etc/default/grub'
Sourcing file `/etc/default/grub.d/50_linuxmint.cfg'
Sourcing file `/etc/default/grub.d/init-select.cfg'
Generating grub configuration file ...
Found linux image: /boot/vmlinuz-5.15.0-69-generic
Found initrd image: /boot/initrd.img-5.15.0-69-generic
Found linux image: /boot/vmlinuz-5.15.0-56-generic
Found initrd image: /boot/initrd.img-5.15.0-56-generic
Warning: os-prober will be executed to detect other bootable partitions.
Its output will be used to detect bootable binaries on them and create new boot entries.
done
Re: Mise à jour ne passe pas sur un Packard Bell LJ65 ?
Posté : ven. 7 avr. 2023 19:06
par jpdc91
cyrille a écrit : ven. 7 avr. 2023 19:03
Tu peux faire voir ton fstab ?
Voici:
Code : Tout sélectionner
edvy80@edvy80-EasyNote-LJ65:~$ cat /etc/fstab
# <file system> <mount point> <type> <options> <dump> <pass>
UUID=baedbc83-4a2c-46e2-8327-0a1e050000c8 / ext4 errors=remount-ro 0 1
UUID=f791f3b6-719b-4738-86bc-890352b91fbe /home ext4 defaults 02
/swapfile none swap sw 0 0
edvy80@edvy80-EasyNote-LJ65:~$
Re: Mise à jour ne passe pas sur un Packard Bell LJ65 ?
Posté : ven. 7 avr. 2023 19:13
par jpdc91
cyrille a écrit : ven. 7 avr. 2023 18:54
C'est bon alors
Comme tu arrives à booter, que retourne
Le pc démarre qu'en utilisant le mode recovery et que je fais un update du Grub dans l'outil de réparation linux Mint 21.1 quand je clique sur " reprendre le " démarrage normal " le système démarre bien.
