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 09/12/2022, à 09:49

Flo06

Re : [résolu] Problème de sources.list? Linux 22.04.1

Oui j'ai bien redémarré

(base) florence@florence-Vostro-15-3515:~$ uname -r
5.14.0-1054-oem

Hors ligne

#27 Le 09/12/2022, à 09:56

nany

Re : [résolu] Problème de sources.list? Linux 22.04.1

Tiens, c’est bizarre que tu ne sois pas sur la version 5.15.0-56 du noyau.

Donne les retours de :

cat /etc/default/grub.d/oem-flavour.cfg
cat /boot/grub/grub.cfg

En ligne

#28 Le 09/12/2022, à 09:58

Flo06

Re : [résolu] Problème de sources.list? Linux 22.04.1

nany a écrit :

Tiens, c’est bizarre que tu ne sois pas sur la version 5.15.0-56 du noyau.

Donne les retours de :

cat /etc/default/grub.d/oem-flavour.cfg
(base) florence@florence-Vostro-15-3515:~$ cat /etc/default/grub.d/oem-flavour.cfg
# This file is automatically generated by oem-somerville-warcraft-amd-meta, and changes will be overriden
GRUB_FLAVOUR_ORDER=oem
cat /boot/grub/grub.cfg
(base) florence@florence-Vostro-15-3515:~$ cat /boot/grub/grub.cfg
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
  set have_grubenv=true
  load_env
fi
if [ "${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_gpt
insmod ext2
search --no-floppy --fs-uuid --set=root a70b131a-7a49-4cc3-bd45-679d1e125e88
    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=5
  # Fallback normal timeout code in case the timeout_style feature is
  # unavailable.
  else
    set timeout=5
  fi
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=cyan/blue
set menu_color_highlight=white/blue
### 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 'GNU/Linux' --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-a70b131a-7a49-4cc3-bd45-679d1e125e88' {
	recordfail
	load_video
	gfxmode $linux_gfx_mode
	insmod gzio
	if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
	insmod part_gpt
	insmod ext2
	search --no-floppy --fs-uuid --set=root a70b131a-7a49-4cc3-bd45-679d1e125e88
	linux	/boot/vmlinuz-5.14.0-1054-oem root=UUID=a70b131a-7a49-4cc3-bd45-679d1e125e88 ro  
	initrd	/boot/initrd.img-5.14.0-1054-oem
}
submenu 'Advanced options for GNU/Linux' $menuentry_id_option 'gnulinux-advanced-a70b131a-7a49-4cc3-bd45-679d1e125e88' {
	menuentry 'GNU/Linux, with Linux 5.14.0-1054-oem' --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-5.14.0-1054-oem-advanced-a70b131a-7a49-4cc3-bd45-679d1e125e88' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_gpt
		insmod ext2
		search --no-floppy --fs-uuid --set=root a70b131a-7a49-4cc3-bd45-679d1e125e88
		echo	'Loading Linux 5.14.0-1054-oem ...'
		linux	/boot/vmlinuz-5.14.0-1054-oem root=UUID=a70b131a-7a49-4cc3-bd45-679d1e125e88 ro  
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-5.14.0-1054-oem
	}
	menuentry 'GNU/Linux, with Linux 5.14.0-1054-oem (recovery mode)' --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-5.14.0-1054-oem-recovery-a70b131a-7a49-4cc3-bd45-679d1e125e88' {
		recordfail
		load_video
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_gpt
		insmod ext2
		search --no-floppy --fs-uuid --set=root a70b131a-7a49-4cc3-bd45-679d1e125e88
		echo	'Loading Linux 5.14.0-1054-oem ...'
		linux	/boot/vmlinuz-5.14.0-1054-oem root=UUID=a70b131a-7a49-4cc3-bd45-679d1e125e88 ro recovery nomodeset dis_ucode_ldr 
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-5.14.0-1054-oem
	}
	menuentry 'GNU/Linux, with Linux 5.15.0-56-generic' --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-5.15.0-56-generic-advanced-a70b131a-7a49-4cc3-bd45-679d1e125e88' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_gpt
		insmod ext2
		search --no-floppy --fs-uuid --set=root a70b131a-7a49-4cc3-bd45-679d1e125e88
		echo	'Loading Linux 5.15.0-56-generic ...'
		linux	/boot/vmlinuz-5.15.0-56-generic root=UUID=a70b131a-7a49-4cc3-bd45-679d1e125e88 ro  
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-5.15.0-56-generic
	}
	menuentry 'GNU/Linux, with Linux 5.15.0-56-generic (recovery mode)' --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-5.15.0-56-generic-recovery-a70b131a-7a49-4cc3-bd45-679d1e125e88' {
		recordfail
		load_video
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_gpt
		insmod ext2
		search --no-floppy --fs-uuid --set=root a70b131a-7a49-4cc3-bd45-679d1e125e88
		echo	'Loading Linux 5.15.0-56-generic ...'
		linux	/boot/vmlinuz-5.15.0-56-generic root=UUID=a70b131a-7a49-4cc3-bd45-679d1e125e88 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/20_memtest86+ ###
### END /etc/grub.d/20_memtest86+ ###

### BEGIN /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/30_uefi-firmware ###
menuentry 'UEFI Firmware Settings' $menuentry_id_option 'uefi-firmware' {
	fwsetup
}
### 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 ###

### BEGIN /etc/grub.d/99_dell_recovery ###
menuentry "Restore OS to factory state" {
        search --no-floppy --hint '(hd0,gpt2)' --set --fs-uuid 0032-E4E8
        set uuid_options="uuid=0032-E4E8"
        if [ -s /factory/common.cfg ]; then
            source /factory/common.cfg
        else
            set options="boot=casper automatic-ubiquity noprompt quiet splash nomodeset nopersistent"
        fi
        if [ -s /factory/post-rts-gfx.cfg ]; then
            source /factory/post-rts-gfx.cfg
        fi
        if [ -s /factory/post-rts-wlan.cfg ]; then
            source /factory/post-rts-wlan.cfg
        fi
        #Support starting from a loopback mount (Only support ubuntu.iso for filename)
        if [ -f /ubuntu.iso ]; then
            loopback loop /ubuntu.iso
            set root=(loop)
            set options="iso-scan/filename=/ubuntu.iso $options"
        fi
        if [ -n "${lang}" ]; then
            set options="locale=$lang $options"
        fi
        if [ -s /factory/dual_enable ]; then
            set options="dell-recovery/dual_boot=true $options"
        fi

        kernel=/casper/vmlinuz
        if [ ! -f  ]; then
            kernel=/casper/vmlinuz.efi
        fi
        linux   $kernel dell-recovery/recovery_type=hdd $uuid_options $options
	    initrd	/casper/initrd
}
### END /etc/grub.d/99_dell_recovery ###

Hors ligne

#29 Le 09/12/2022, à 10:04

nany

Re : [résolu] Problème de sources.list? Linux 22.04.1

Je vois, donne les retours de :

cd /etc/default/grub.d && sudo rm -v oem-flavour.cfg ; cd
sudo update-grub

Puis redémarre à nouveau et redonne le retour de :

uname -r

En ligne

#30 Le 09/12/2022, à 10:07

Flo06

Re : [résolu] Problème de sources.list? Linux 22.04.1

nany a écrit :

Je vois, donne les retours de :

cd /etc/default/grub.d && sudo rm -v oem-flavour.cfg ; cd
(base) florence@florence-Vostro-15-3515:~$ cd /etc/default/grub.d && sudo rm -v oem-flavour.cfg ; cd
[sudo] Mot de passe de florence : 
'oem-flavour.cfg' supprimé
sudo update-grub
(base) florence@florence-Vostro-15-3515:~$ sudo update-grub
Sourcing file `/etc/default/grub.d/init-select.cfg'
Generating grub configuration file ...
Found linux image: /boot/vmlinuz-5.15.0-56-generic
Found initrd image: /boot/initrd.img-5.15.0-56-generic
Found linux image: /boot/vmlinuz-5.14.0-1054-oem
Found initrd image: /boot/initrd.img-5.14.0-1054-oem
Memtest86+ needs a 16-bit boot, that is not available on EFI, exiting
Warning: os-prober will not be executed to detect other bootable partitions.
Systems on them will not be added to the GRUB boot configuration.
Check GRUB_DISABLE_OS_PROBER documentation entry.
Adding boot menu entry for UEFI Firmware Settings ...
done

Puis redémarre à nouveau et redonne le retour de :

uname -r

Hors ligne

#31 Le 09/12/2022, à 10:11

Flo06

Re : [résolu] Problème de sources.list? Linux 22.04.1

Flo06 a écrit :
nany a écrit :

Puis redémarre à nouveau et redonne le retour de :

uname -r
(base) florence@florence-Vostro-15-3515:~$ uname -r
5.15.0-56-generic

Hors ligne

#32 Le 09/12/2022, à 10:18

nany

Re : [résolu] Problème de sources.list? Linux 22.04.1

C’est mieux.
Maintenant, donne les retours de :

sudo apt purge linux-{headers,image}-oem-20.04d
dpkg -l | awk '!/^rc/ && / linux-(c|g|h|i|lo|m|si|t)/{print $1,$2,$3,$4 | "sort -k3V | column -t"}'
find /etc/apt -type f \( -name '*.list*' -o -name '*.sources' \) -exec bash -c 'echo -e "\n\t$1\n"; [ "${1##*.}" = "list" -o "${1##*.}" = "sources" ] && cat -n "$1"' _ '{}' \;

En ligne

#33 Le 09/12/2022, à 10:24

Flo06

Re : [résolu] Problème de sources.list? Linux 22.04.1

nany a écrit :

C’est mieux.
Maintenant, donne les retours de :

sudo apt purge linux-{headers,image}-oem-20.04d
florence@florence-Vostro-15-3515:~$ sudo apt clean && sudo apt update
[sudo] Mot de passe de florence : 
Atteint :1 http://security.ubuntu.com/ubuntu jammy-security InRelease
Atteint :2 http://distrib-coffee.ipsl.jussieu.fr/pub/linux/ubuntu jammy InRelease
Atteint :3 http://oem.archive.canonical.com jammy InRelease                    
Atteint :4 http://distrib-coffee.ipsl.jussieu.fr/pub/linux/ubuntu jammy-updates InRelease
Atteint :5 http://distrib-coffee.ipsl.jussieu.fr/pub/linux/ubuntu jammy-security InRelease
Atteint :6 https://repo.protonvpn.com/debian stable InRelease                  
Lecture des listes de paquets... Fait
Construction de l'arbre des dépendances... Fait
Lecture des informations d'état... Fait      
10 paquets peuvent être mis à jour. Exécutez « apt list --upgradable » pour les voir.
(base) florence@florence-Vostro-15-3515:~$ sudo apt purge linux-{headers,image}-oem-20.04d
Lecture des listes de paquets... Fait
Construction de l'arbre des dépendances... Fait
Lecture des informations d'état... Fait      
Les paquets suivants seront ENLEVÉS :
  linux-headers-oem-20.04d* linux-image-oem-20.04d* linux-oem-20.04b*
  linux-oem-20.04d* oem-somerville-warcraft-amd-meta*
0 mis à jour, 0 nouvellement installés, 5 à enlever et 10 non mis à jour.
Après cette opération, 59,4 ko d'espace disque seront libérés.
Souhaitez-vous continuer ? [O/n] o
(Lecture de la base de données... 290488 fichiers et répertoires déjà installés.
)
Suppression de oem-somerville-warcraft-amd-meta (20.04ubuntu3) ...
/usr/sbin/update-grub
Sourcing file `/etc/default/grub.d/init-select.cfg'
Generating grub configuration file ...
Found linux image: /boot/vmlinuz-5.15.0-56-generic
Found initrd image: /boot/initrd.img-5.15.0-56-generic
Found linux image: /boot/vmlinuz-5.14.0-1054-oem
Found initrd image: /boot/initrd.img-5.14.0-1054-oem
Memtest86+ needs a 16-bit boot, that is not available on EFI, exiting
Warning: os-prober will not be executed to detect other bootable partitions.
Systems on them will not be added to the GRUB boot configuration.
Check GRUB_DISABLE_OS_PROBER documentation entry.
Adding boot menu entry for UEFI Firmware Settings ...
done
Suppression de linux-oem-20.04b (5.14.0.1054.52) ...
Suppression de linux-oem-20.04d (5.14.0.1054.52) ...
Suppression de linux-headers-oem-20.04d (5.14.0.1054.52) ...
Suppression de linux-image-oem-20.04d (5.14.0.1054.52) ...
(Lecture de la base de données... 290471 fichiers et répertoires déjà installés.
)
Purge des fichiers de configuration de oem-somerville-warcraft-amd-meta (20.04ub
untu3) ...
/usr/sbin/update-grub
Sourcing file `/etc/default/grub.d/init-select.cfg'
Generating grub configuration file ...
Found linux image: /boot/vmlinuz-5.15.0-56-generic
Found initrd image: /boot/initrd.img-5.15.0-56-generic
Found linux image: /boot/vmlinuz-5.14.0-1054-oem
Found initrd image: /boot/initrd.img-5.14.0-1054-oem
Memtest86+ needs a 16-bit boot, that is not available on EFI, exiting
Warning: os-prober will not be executed to detect other bootable partitions.
Systems on them will not be added to the GRUB boot configuration.
Check GRUB_DISABLE_OS_PROBER documentation entry.
Adding boot menu entry for UEFI Firmware Settings ...
done
(base) florence@florence-Vostro-15-3515:~$ 
dpkg -l | awk '!/^rc/ && / linux-(c|g|h|i|lo|m|si|t)/{print $1,$2,$3,$4 | "sort -k3V | column -t"}'
(base) florence@florence-Vostro-15-3515:~$ dpkg -l | awk '!/^rc/ && / linux-(c|g|h|i|lo|m|si|t)/{print $1,$2,$3,$4 | "sort -k3V | column -t"}'
ii  linux-headers-5.10.0-1023-oem          5.10.0-1023.24  amd64
ii  linux-headers-5.14.0-1054-oem          5.14.0-1054.61  amd64
ii  linux-image-5.14.0-1054-oem            5.14.0-1054.61  amd64
ii  linux-modules-5.14.0-1054-oem          5.14.0-1054.61  amd64
ii  linux-headers-5.15.0-56                5.15.0-56.62    all
ii  linux-headers-5.15.0-56-generic        5.15.0-56.62    amd64
ii  linux-image-5.15.0-56-generic          5.15.0-56.62    amd64
ii  linux-modules-5.15.0-56-generic        5.15.0-56.62    amd64
ii  linux-modules-extra-5.15.0-56-generic  5.15.0-56.62    amd64
ii  linux-generic-hwe-22.04                5.15.0.56.54    amd64
ii  linux-headers-generic-hwe-22.04        5.15.0.56.54    amd64
ii  linux-image-generic-hwe-22.04          5.15.0.56.54    amd64
find /etc/apt -type f \( -name '*.list*' -o -name '*.sources' \) -exec bash -c 'echo -e "\n\t$1\n"; [ "${1##*.}" = "list" -o "${1##*.}" = "sources" ] && cat -n "$1"' _ '{}' \;
(base) florence@florence-Vostro-15-3515:~$ find /etc/apt -type f \( -name '*.list*' -o -name '*.sources' \) -exec bash -c 'echo -e "\n\t$1\n"; [ "${1##*.}" = "list" -o "${1##*.}" = "sources" ] && cat -n "$1"' _ '{}' \;

	/etc/apt/sources.list

     1	
     2	# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
     3	# newer versions of the distribution.
     4	deb http://distrib-coffee.ipsl.jussieu.fr/pub/linux/ubuntu/ jammy restricted main
     5	# deb-src http://archive.ubuntu.com/ubuntu/ focal main restricted
     6	
     7	## Major bug fix updates produced after the final release of the
     8	## distribution.
     9	deb http://distrib-coffee.ipsl.jussieu.fr/pub/linux/ubuntu/ jammy-updates restricted main
    10	# deb-src http://archive.ubuntu.com/ubuntu/ focal-updates main restricted
    11	
    12	## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
    13	## team. Also, please note that software in universe WILL NOT receive any
    14	## review or updates from the Ubuntu security team.
    15	deb http://distrib-coffee.ipsl.jussieu.fr/pub/linux/ubuntu/ jammy universe
    16	# deb-src http://archive.ubuntu.com/ubuntu/ focal universe
    17	deb http://distrib-coffee.ipsl.jussieu.fr/pub/linux/ubuntu/ jammy-updates universe
    18	# deb-src http://archive.ubuntu.com/ubuntu/ focal-updates universe
    19	
    20	## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
    21	## team, and may not be under a free licence. Please satisfy yourself as to
    22	## your rights to use the software. Also, please note that software in
    23	## multiverse WILL NOT receive any review or updates from the Ubuntu
    24	## security team.
    25	deb http://distrib-coffee.ipsl.jussieu.fr/pub/linux/ubuntu/ jammy multiverse
    26	# deb-src http://archive.ubuntu.com/ubuntu/ focal multiverse
    27	deb http://distrib-coffee.ipsl.jussieu.fr/pub/linux/ubuntu/ jammy-updates multiverse
    28	# deb-src http://archive.ubuntu.com/ubuntu/ focal-updates multiverse
    29	
    30	## N.B. software from this repository may not have been tested as
    31	## extensively as that contained in the main release, although it includes
    32	## newer versions of some applications which may provide useful features.
    33	## Also, please note that software in backports WILL NOT receive any review
    34	## or updates from the Ubuntu security team.
    35	# deb-src http://archive.ubuntu.com/ubuntu/ focal-backports main restricted universe multiverse
    36	
    37	
    38	deb http://distrib-coffee.ipsl.jussieu.fr/pub/linux/ubuntu/ jammy-security restricted main
    39	# deb-src http://security.ubuntu.com/ubuntu focal-security main restricted
    40	deb http://distrib-coffee.ipsl.jussieu.fr/pub/linux/ubuntu/ jammy-security universe
    41	# deb-src http://security.ubuntu.com/ubuntu focal-security universe
    42	deb http://distrib-coffee.ipsl.jussieu.fr/pub/linux/ubuntu/ jammy-security multiverse
    43	# deb-src http://security.ubuntu.com/ubuntu focal-security multiverse
    44	
    45	
    46	deb http://security.ubuntu.com/ubuntu/ jammy-security restricted multiverse main universe

	/etc/apt/sources.list.d/somerville-dla-team-ubuntu-ppa-bionic.list

     1	# deb http://ppa.launchpad.net/somerville-dla-team/ppa/ubuntu bionic main # désactivé pour la mise à niveau vers jammy
     2	# deb-src http://ppa.launchpad.net/somerville-dla-team/ppa/ubuntu bionic main
     3	# deb-src http://ppa.launchpad.net/somerville-dla-team/ppa/ubuntu bionic main

	/etc/apt/sources.list.d/opera-stable.list

     1	# This file makes sure that Opera Browser is kept up-to-date
     2	# as part of regular system upgrades
     3	
     4	# deb https://deb.opera.com/opera-stable/ stable non-free #Opera Browser (final releases) désactivé pour la mise à niveau vers jammy

	/etc/apt/sources.list.d/focal-oem.list

     1	deb http://oem.archive.canonical.com/ jammy oem
     2	# deb-src http://oem.archive.canonical.com/ focal oem

	/etc/apt/sources.list.d/vscode.list

     1	### THIS FILE IS AUTOMATICALLY CONFIGURED ###
     2	# You may comment out this entry, but any other modifications may be lost.
     3	# deb [arch=amd64,arm64,armhf] http://packages.microsoft.com/repos/code stable main # désactivé pour la mise à niveau vers jammy

	/etc/apt/sources.list.d/google-chrome.list

     1	### THIS FILE IS AUTOMATICALLY CONFIGURED ###
     2	# You may comment out this entry, but any other modifications may be lost.
     3	# deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main # désactivé pour la mise à niveau vers jammy

	/etc/apt/sources.list.d/protonvpn-stable.list

     1	#
     2	# ProtonVPN stable release
     3	#
     4	deb [arch="all", signed-by=/usr/share/keyrings/protonvpn-stable-archive-keyring.gpg] https://repo.protonvpn.com/debian stable main
	/etc/apt/sources.list.d/somerville-dla-team-ubuntu-ppa-focal.list

     1	# deb http://ppa.launchpad.net/somerville-dla-team/ppa/ubuntu jammy main # désactivé pour la mise à niveau vers jammy
     2	# deb-src http://ppa.launchpad.net/somerville-dla-team/ppa/ubuntu focal main

Hors ligne

#34 Le 09/12/2022, à 10:29

nany

Re : [résolu] Problème de sources.list? Linux 22.04.1

On progresse. Donne le retour de :

sudo apt purge linux-headers-5.10.0-1023-oem

Bon, je dois m’absenter une petite demi-heure.

En ligne

#35 Le 09/12/2022, à 10:32

Flo06

Re : [résolu] Problème de sources.list? Linux 22.04.1

Ok pas de soucis

(base) florence@florence-Vostro-15-3515:~$ sudo apt purge linux-headers-5.10.0-1023-oem
Lecture des listes de paquets... Fait
Construction de l'arbre des dépendances... Fait
Lecture des informations d'état... Fait      
Le paquet suivant a été installé automatiquement et n'est plus nécessaire :
  linux-oem-5.10-headers-5.10.0-1023
Veuillez utiliser « sudo apt autoremove » pour le supprimer.
Les paquets suivants seront ENLEVÉS :
  linux-headers-5.10.0-1023-oem*
0 mis à jour, 0 nouvellement installés, 1 à enlever et 10 non mis à jour.
Après cette opération, 15,4 Mo d'espace disque seront libérés.
Souhaitez-vous continuer ? [O/n] o
(Lecture de la base de données... 290470 fichiers et répertoires déjà installés.
)
Suppression de linux-headers-5.10.0-1023-oem (5.10.0-1023.24) ...

Hors ligne

#36 Le 09/12/2022, à 11:13

nany

Re : [résolu] Problème de sources.list? Linux 22.04.1

Il ne reste plus qu’à voir si les mises à jour (s’il ne s’agit pas de mises à jour progressives) se font :

sudo apt full-upgrade

En ligne

#37 Le 09/12/2022, à 12:17

Flo06

Re : [résolu] Problème de sources.list? Linux 22.04.1

Je crois que ça ne fonctionne toujours pas

(base) florence@florence-Vostro-15-3515:~$ sudo apt full-upgrade
[sudo] Mot de passe de florence : 
Lecture des listes de paquets... Fait
Construction de l'arbre des dépendances... Fait
Lecture des informations d'état... Fait      
Calcul de la mise à jour... Fait
Le paquet suivant a été installé automatiquement et n'est plus nécessaire :
  linux-oem-5.10-headers-5.10.0-1023
Veuillez utiliser « sudo apt autoremove » pour le supprimer.
#
# News about significant security updates, features and services will
# appear here to raise awareness and perhaps tease /r/Linux ;)
# Use 'pro config set apt_news=false' to hide this and future APT news.
#
Les paquets suivants ont été conservés :
  libsmbclient libwbclient0 python3-distupgrade samba-libs
  ubuntu-release-upgrader-core ubuntu-release-upgrader-gtk xserver-common
  xserver-xephyr xserver-xorg-core xserver-xorg-legacy
0 mis à jour, 0 nouvellement installés, 0 à enlever et 10 non mis à jour.

Hors ligne

#38 Le 09/12/2022, à 12:23

nany

Re : [résolu] Problème de sources.list? Linux 22.04.1

Non, tout va bien. Il s’agit de mises à jour progressives. Elle seront effective ultérieurement.

En revanche, tu peux passer :

sudo apt autoremove --purge -y

En ligne

#39 Le 09/12/2022, à 12:26

Flo06

Re : [résolu] Problème de sources.list? Linux 22.04.1

Je viens de le faire, et si tu me dis que c'est ok, super! Je te remercie vraiment

Hors ligne

#40 Le 09/12/2022, à 12:29

nany

Re : [résolu] Problème de sources.list? Linux 22.04.1

Flo06 a écrit :

et si tu me dis que c'est ok, super!

Alors je le dis : tout est OK.

En ligne

#41 Le 09/12/2022, à 12:38

Flo06

Re : [résolu] Problème de sources.list? Linux 22.04.1

RESOLU
Merci Super Nany!

Dernière modification par Flo06 (Le 09/12/2022, à 13:15)

Hors ligne

#42 Le 09/12/2022, à 13:12

xubu1957

Re : [résolu] Problème de sources.list? Linux 22.04.1

Pour rajouter [Résolu] au début du titre, en éditant ta discussion, il faut utiliser le bouton Modifier au bas de ton premier message.

Merci wink


Conseils pour les nouveaux demandeurs et pas qu'eux
Important : Pensez à passer vos sujets en [Réso|u] lorsque ceux-ci le sont, au début du titre en cliquant sur Modifier sous le premier message, et un bref récapitulatif de la solution à la fin de celui-ci. Merci.                   Membre de Linux-Azur

En ligne