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.

#1 Le 07/05/2024, à 17:39

Christellle

Problème avec le package phpmyadmin

Bonjour,

J'ai un soucis avec le package phpmyadmin.
J'ai fait un
"
apt update \
    && apt upgrade --yes \
    && apt-get autoremove --yes
"
et apparemment cela m'a supprimé phpmyadmin (en partie en tout cas).

Voilà ce que j'obtiens lorsque j'essaie de le configurer, de le supprimer ou de l'installer :

 
christelle@DESKTOP-FOF3H0T:~/www$ sudo dpkg-reconfigure phpMyAdmin
dpkg-query: package 'phpmyadmin' is not installed and no information is available
Use dpkg --info (= dpkg-deb --info) to examine archive files.
/usr/sbin/dpkg-reconfigure: phpMyAdmin is not installed
christelle@DESKTOP-FOF3H0T:~/www$ sudo apt-cache search phpmyadmin
adminer - Web-based database administration tool
php-phpmyadmin-motranslator - translation API for PHP using Gettext MO files
php-phpmyadmin-shapefile - translation API for PHP using Gettext MO files
php-phpmyadmin-sql-parser - validating SQL lexer and parser
phpliteadmin - web-based SQLite database admin tool
phpliteadmin-themes - web-based SQLite database admin tool - themes
phpmyadmin - MySQL web administration tool
christelle@DESKTOP-FOF3H0T:~/www$ sudo apt-get update && sudo apt-get upgrade
Hit:1 http://security.ubuntu.com/ubuntu focal-security InRelease
Hit:2 http://ppa.launchpad.net/redislabs/redis/ubuntu focal InRelease
Hit:3 https://dl.google.com/linux/chrome/deb stable InRelease
Hit:4 http://ppa.launchpad.net/ubuntu-toolchain-r/test/ubuntu focal InRelease
Hit:5 http://archive.ubuntu.com/ubuntu focal InRelease
Ign:6 https://download.docker.com/linux/debian focal InRelease
Hit:7 http://archive.ubuntu.com/ubuntu focal-updates InRelease
Hit:8 http://archive.ubuntu.com/ubuntu focal-backports InRelease
Err:9 https://download.docker.com/linux/debian focal Release
  404  Not Found [IP: 52.222.169.49 443]
Reading package lists... Done
E: The repository 'https://download.docker.com/linux/debian focal Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.
christelle@DESKTOP-FOF3H0T:~/www$ sudo apt-get install phpMyAdmin
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package phpMyAdmin
christelle@DESKTOP-FOF3H0T:~/www$ sudo apt-get autoremove --purge phpmyadmin
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package 'phpmyadmin' is not installed, so not removed
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
christelle@DESKTOP-FOF3H0T:~/www$
christelle@DESKTOP-FOF3H0T:~/www$ sudo apt-get install phpMyAdmin
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package phpMyAdmin
christelle@DESKTOP-FOF3H0T:~/www$ sudo apt-get purge phpmyadmin
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package 'phpmyadmin' is not installed, so not removed
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
christelle@DESKTOP-FOF3H0T:~/www$ sudo apt-get install phpMyAdmin
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package phpMyAdmin
christelle@DESKTOP-FOF3H0T:~/www$

une idée ? Merci

Hors ligne

#2 Le 07/05/2024, à 17:47

xubu1957

Re : Problème avec le package phpmyadmin

Bonjour,

Vu [resolu] Probleme d'installation de phpmyadmin

Montre le sources.list avec la numérotation :

find /etc/apt -type f -regex ".*\(list\|sources\).*" -exec bash -c 'echo -e "\n\t$1\n" ; [ "${1##*.}" = "list" -o "${1##*.}" = "sources" ] && cat -n "$1"' _ '{}' \;

Dernière modification par xubu1957 (Le 07/05/2024, à 17:48)


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

Hors ligne

#3 Le 07/05/2024, à 17:51

ylag

Re : Problème avec le package phpmyadmin

Bomjour,

Le nom du paquet à installer serait phpmyadmin, pas phpMyAdmin. Il faut respecter la casse dans les noms de paquets.

Assure-toi que la section universe des dépôts est activée dans tes sources, le paquet s'y trouve.

Il faudrait aussi retirer le dépôt download.docker.com de tes sources, il semble ne pas avoir de version pour focal et sa présence risque de nuire au processus de mise à jour.

A+

Dernière modification par ylag (Le 07/05/2024, à 17:54)

Hors ligne

#4 Le 07/05/2024, à 22:15

Christellle

Re : Problème avec le package phpmyadmin

Bonsoir à vous deux,

c'était bien une histoire de nom du paquet. Je n'avais pas le recul nécessaire pour le voir. roll
ça fonctionne. smile

@ylag Comment est-ce qu'on retire le dépôts des sources ? 

Merci beaucoup

Hors ligne

#5 Le 07/05/2024, à 22:26

ylag

Re : Problème avec le package phpmyadmin

Bonsoir,

Christelle a écrit :

Comment est-ce qu'on retire le dépôts des sources ?

Faudrait voir le résultat complet de la commande suggérée par @xubu1957 au message #2 pour se faire une idée.

A+

Hors ligne

#6 Le 07/05/2024, à 22:33

krodelabestiole

Re : Problème avec le package phpmyadmin

ylag a écrit :

il semble ne pas avoir de version pour focal

si si : https://download.docker.com/linux/ubuntu/dists/focal/

ce qui est louche par contre c'est

https://download.docker.com/linux/debian focal

au lieu de

https://download.docker.com/linux/ubuntu focal

sûrement un mix de documentations... la bonne est celle-ci : https://docs.docker.com/engine/install/ubuntu/

Hors ligne

#7 Le 07/05/2024, à 22:37

iznobe

Re : Problème avec le package phpmyadmin

Christellle a écrit :

une idée ? Merci

Bonjour ,
donne ces 2 commandes :

sudo add-apt-repository universe
sudo apt install phpmyadmin

retour COMPLET et utilisable de commande
MSI Z490A-pro , i7 10700 , 32 GB RAM .

Hors ligne

#8 Le 07/05/2024, à 22:44

ylag

Re : Problème avec le package phpmyadmin

Bonsoir,

@krodelabestiole :
Merci ! Un simple remplacement de debian par ubuntu dans la ligne du dépôt devrait suffire.

@iznobe :
C'est corrigé si on se fie au message #4.

A+

Hors ligne

#9 Le 07/05/2024, à 22:49

ylag

Re : Problème avec le package phpmyadmin

@Christelle :

Bonsoir,

Il suffira probablement de modifier l'entrée du dépôt docker dans les sources pour l'activer correctement, voir le message #6 de @krodelabestiole.
Serait toujours pertinent de voir le résultat de la commande du message #2.

A+

Hors ligne

#10 Le 13/05/2024, à 10:33

Christellle

Re : Problème avec le package phpmyadmin

Bonjour, merci pour vos retours.

Voici le résultat de la commande :

christelle@DESKTOP-FOF3H0T:~$ find /etc/apt -type f -regex ".*\(list\|sources\).*" -exec bash -c 'echo -e "\n\t$1\n" ; [ "${1##*.}" = "list" -o "${1##*.}" = "sources" ] && cat -n "$1"' _ '{}' \;

        /etc/apt/sources.list

     1  # See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
     2  # newer versions of the distribution.
     3  deb http://archive.ubuntu.com/ubuntu/ focal main restricted
     4  # deb-src http://archive.ubuntu.com/ubuntu/ focal main restricted
     5
     6  ## Major bug fix updates produced after the final release of the
     7  ## distribution.
     8  deb http://archive.ubuntu.com/ubuntu/ focal-updates main restricted
     9  # deb-src http://archive.ubuntu.com/ubuntu/ focal-updates main restricted
    10
    11  ## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
    12  ## team. Also, please note that software in universe WILL NOT receive any
    13  ## review or updates from the Ubuntu security team.
    14  deb http://archive.ubuntu.com/ubuntu/ focal universe
    15  # deb-src http://archive.ubuntu.com/ubuntu/ focal universe
    16  deb http://archive.ubuntu.com/ubuntu/ focal-updates universe
    17  # deb-src http://archive.ubuntu.com/ubuntu/ focal-updates universe
    18
    19  ## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
    20  ## team, and may not be under a free licence. Please satisfy yourself as to
    21  ## your rights to use the software. Also, please note that software in
    22  ## multiverse WILL NOT receive any review or updates from the Ubuntu
    23  ## security team.
    24  deb http://archive.ubuntu.com/ubuntu/ focal multiverse
    25  # deb-src http://archive.ubuntu.com/ubuntu/ focal multiverse
    26  deb http://archive.ubuntu.com/ubuntu/ focal-updates multiverse
    27  # deb-src http://archive.ubuntu.com/ubuntu/ focal-updates multiverse
    28
    29  ## N.B. software from this repository may not have been tested as
    30  ## extensively as that contained in the main release, although it includes
    31  ## newer versions of some applications which may provide useful features.
    32  ## Also, please note that software in backports WILL NOT receive any review
    33  ## or updates from the Ubuntu security team.
    34  deb http://archive.ubuntu.com/ubuntu/ focal-backports main restricted universe multiverse
    35  # deb-src http://archive.ubuntu.com/ubuntu/ focal-backports main restricted universe multiverse
    36
    37  ## Uncomment the following two lines to add software from Canonical's
    38  ## 'partner' repository.
    39  ## This software is not part of Ubuntu, but is offered by Canonical and the
    40  ## respective vendors as a service to Ubuntu users.
    41  # deb http://archive.canonical.com/ubuntu focal partner
    42  # deb-src http://archive.canonical.com/ubuntu focal partner
    43
    44  deb http://security.ubuntu.com/ubuntu/ focal-security main restricted
    45  # deb-src http://security.ubuntu.com/ubuntu/ focal-security main restricted
    46  deb http://security.ubuntu.com/ubuntu/ focal-security universe
    47  # deb-src http://security.ubuntu.com/ubuntu/ focal-security universe
    48  deb http://security.ubuntu.com/ubuntu/ focal-security multiverse
    49  # deb-src http://security.ubuntu.com/ubuntu/ focal-security multiverse
    50  # deb-src [arch=arm64,s390x,amd64,ppc64el] https://mirror.mva-n.net/mariadb/repo/10.6/ubuntu focal main

        /etc/apt/sources.list.d/ubuntu-toolchain-r-ubuntu-test-focal.list.save


        /etc/apt/sources.list.d/ubuntu-toolchain-r-ubuntu-test-focal.list

     1  deb http://ppa.launchpad.net/ubuntu-toolchain-r/test/ubuntu focal main
     2  # deb-src http://ppa.launchpad.net/ubuntu-toolchain-r/test/ubuntu focal main

        /etc/apt/sources.list.d/redislabs-ubuntu-redis-focal.list

     1  deb http://ppa.launchpad.net/redislabs/redis/ubuntu focal main
     2  # deb-src http://ppa.launchpad.net/redislabs/redis/ubuntu focal main

        /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] https://dl.google.com/linux/chrome/deb/ stable main

        /etc/apt/sources.list.d/redislabs-ubuntu-redis-focal.list.save


        /etc/apt/sources.list.d/docker.list

     1  deb [arch=amd64 signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/debian         focal stable

        /etc/apt/sources.list.save

christelle@DESKTOP-FOF3H0T:~$

Hors ligne

#11 Le 13/05/2024, à 10:37

iznobe

Re : Problème avec le package phpmyadmin

vu :

...
/etc/apt/sources.list.d/docker.list

     1  deb [arch=amd64 signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/debian         focal stable
...

ca n' a pas l ' air d ' avoir été corrigé .


retour COMPLET et utilisable de commande
MSI Z490A-pro , i7 10700 , 32 GB RAM .

Hors ligne

#12 Le 13/05/2024, à 10:48

Christellle

Re : Problème avec le package phpmyadmin

@iznobe 
Là c'est mieux ? smile J'ai édité le fichier   /etc/apt/sources.list.d/docker.list

christelle@DESKTOP-FOF3H0T:/$ find /etc/apt -type f -regex ".*\(list\|sources\).*" -exec bash -c 'echo -e "\n\t$1\n" ; [ "${1##*.}" = "list" -o "${1##*.}" = "sources" ] && cat -n "$1"' _ '{}' \;

        /etc/apt/sources.list

     1  # See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
     2  # newer versions of the distribution.
     3  deb http://archive.ubuntu.com/ubuntu/ focal main restricted
     4  # deb-src http://archive.ubuntu.com/ubuntu/ focal main restricted
     5
     6  ## Major bug fix updates produced after the final release of the
     7  ## distribution.
     8  deb http://archive.ubuntu.com/ubuntu/ focal-updates main restricted
     9  # deb-src http://archive.ubuntu.com/ubuntu/ focal-updates main restricted
    10
    11  ## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
    12  ## team. Also, please note that software in universe WILL NOT receive any
    13  ## review or updates from the Ubuntu security team.
    14  deb http://archive.ubuntu.com/ubuntu/ focal universe
    15  # deb-src http://archive.ubuntu.com/ubuntu/ focal universe
    16  deb http://archive.ubuntu.com/ubuntu/ focal-updates universe
    17  # deb-src http://archive.ubuntu.com/ubuntu/ focal-updates universe
    18
    19  ## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
    20  ## team, and may not be under a free licence. Please satisfy yourself as to
    21  ## your rights to use the software. Also, please note that software in
    22  ## multiverse WILL NOT receive any review or updates from the Ubuntu
    23  ## security team.
    24  deb http://archive.ubuntu.com/ubuntu/ focal multiverse
    25  # deb-src http://archive.ubuntu.com/ubuntu/ focal multiverse
    26  deb http://archive.ubuntu.com/ubuntu/ focal-updates multiverse
    27  # deb-src http://archive.ubuntu.com/ubuntu/ focal-updates multiverse
    28
    29  ## N.B. software from this repository may not have been tested as
    30  ## extensively as that contained in the main release, although it includes
    31  ## newer versions of some applications which may provide useful features.
    32  ## Also, please note that software in backports WILL NOT receive any review
    33  ## or updates from the Ubuntu security team.
    34  deb http://archive.ubuntu.com/ubuntu/ focal-backports main restricted universe multiverse
    35  # deb-src http://archive.ubuntu.com/ubuntu/ focal-backports main restricted universe multiverse
    36
    37  ## Uncomment the following two lines to add software from Canonical's
    38  ## 'partner' repository.
    39  ## This software is not part of Ubuntu, but is offered by Canonical and the
    40  ## respective vendors as a service to Ubuntu users.
    41  # deb http://archive.canonical.com/ubuntu focal partner
    42  # deb-src http://archive.canonical.com/ubuntu focal partner
    43
    44  deb http://security.ubuntu.com/ubuntu/ focal-security main restricted
    45  # deb-src http://security.ubuntu.com/ubuntu/ focal-security main restricted
    46  deb http://security.ubuntu.com/ubuntu/ focal-security universe
    47  # deb-src http://security.ubuntu.com/ubuntu/ focal-security universe
    48  deb http://security.ubuntu.com/ubuntu/ focal-security multiverse
    49  # deb-src http://security.ubuntu.com/ubuntu/ focal-security multiverse
    50  # deb-src [arch=arm64,s390x,amd64,ppc64el] https://mirror.mva-n.net/mariadb/repo/10.6/ubuntu focal main

        /etc/apt/sources.list.d/ubuntu-toolchain-r-ubuntu-test-focal.list.save


        /etc/apt/sources.list.d/ubuntu-toolchain-r-ubuntu-test-focal.list

     1  deb http://ppa.launchpad.net/ubuntu-toolchain-r/test/ubuntu focal main
     2  # deb-src http://ppa.launchpad.net/ubuntu-toolchain-r/test/ubuntu focal main

        /etc/apt/sources.list.d/redislabs-ubuntu-redis-focal.list

     1  deb http://ppa.launchpad.net/redislabs/redis/ubuntu focal main
     2  # deb-src http://ppa.launchpad.net/redislabs/redis/ubuntu focal main

        /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] https://dl.google.com/linux/chrome/deb/ stable main

        /etc/apt/sources.list.d/redislabs-ubuntu-redis-focal.list.save


        /etc/apt/sources.list.d/docker.list

     1  deb [arch=amd64 signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu         focal stable

        /etc/apt/sources.list.save

christelle@DESKTOP-FOF3H0T:/$

Hors ligne

#13 Le 13/05/2024, à 10:58

iznobe

Re : Problème avec le package phpmyadmin

c ' est mieux tongue
reste a verifier:

sudo apt update
apt policy docker

retour COMPLET et utilisable de commande
MSI Z490A-pro , i7 10700 , 32 GB RAM .

Hors ligne

#14 Le 13/05/2024, à 11:03

Christellle

Re : Problème avec le package phpmyadmin

apparemment oui, j'ai fais la mise à jour, il n'y a plus d'erreurs, merci smile
Par contre il a mis " Installed: (none)"
Après ce n'est pas très grave pour le moment.
Je vais faire quelques tests et si j'ai besoin de la source, j'ouvrirais un autre ticket wink

christelle@DESKTOP-FOF3H0T:/$ sudo apt-get update
Hit:1 http://ppa.launchpad.net/redislabs/redis/ubuntu focal InRelease
Hit:2 http://ppa.launchpad.net/ubuntu-toolchain-r/test/ubuntu focal InRelease
Hit:3 http://archive.ubuntu.com/ubuntu focal InRelease
Get:4 https://download.docker.com/linux/ubuntu focal InRelease [57.7 kB]
Get:5 http://archive.ubuntu.com/ubuntu focal-updates InRelease [114 kB]
Get:6 http://security.ubuntu.com/ubuntu focal-security InRelease [114 kB]
Hit:7 http://archive.ubuntu.com/ubuntu focal-backports InRelease
Get:8 https://dl.google.com/linux/chrome/deb stable InRelease [1825 B]
Get:9 https://download.docker.com/linux/ubuntu focal/stable amd64 Packages [43.0 kB]
Get:10 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 Packages [3296 kB]
Get:11 http://security.ubuntu.com/ubuntu focal-security/main amd64 Packages [2919 kB]
Get:12 https://dl.google.com/linux/chrome/deb stable/main amd64 Packages [1083 B]
Get:13 http://archive.ubuntu.com/ubuntu focal-updates/main Translation-en [521 kB]
Get:14 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 Packages [1185 kB]
Get:15 http://archive.ubuntu.com/ubuntu focal-updates/universe Translation-en [284 kB]
Get:16 http://security.ubuntu.com/ubuntu focal-security/main Translation-en [438 kB]
Get:17 http://security.ubuntu.com/ubuntu focal-security/restricted amd64 Packages [2799 kB]
Get:18 http://security.ubuntu.com/ubuntu focal-security/restricted Translation-en [391 kB]
Get:19 http://security.ubuntu.com/ubuntu focal-security/universe amd64 Packages [959 kB]
Get:20 http://security.ubuntu.com/ubuntu focal-security/universe Translation-en [202 kB]
Fetched 13.3 MB in 2s (6822 kB/s)
Reading package lists... Done
christelle@DESKTOP-FOF3H0T:/$ sudo apt-get upgrade
Reading package lists... Done
Building dependency tree
Reading state information... Done
Calculating upgrade... Done
The following packages will be upgraded:
  docker-ce docker-ce-cli docker-ce-rootless-extras google-chrome-stable libglib2.0-0 libglib2.0-bin libglib2.0-data
  snapd
8 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Need to get 183 MB of archives.
After this operation, 2834 kB of additional disk space will be used.
Do you want to continue? [Y/n] y
Get:1 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libglib2.0-data all 2.64.6-1~ubuntu20.04.7 [5944 B]
Get:2 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libglib2.0-bin amd64 2.64.6-1~ubuntu20.04.7 [72.8 kB]
Get:3 https://download.docker.com/linux/ubuntu focal/stable amd64 docker-ce-cli amd64 5:26.1.2-1~ubuntu.20.04~focal [14.6 MB]
Get:4 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libglib2.0-0 amd64 2.64.6-1~ubuntu20.04.7 [1289 kB]
Get:5 https://dl.google.com/linux/chrome/deb stable/main amd64 google-chrome-stable amd64 124.0.6367.201-1 [107 MB]
Get:6 https://download.docker.com/linux/ubuntu focal/stable amd64 docker-ce amd64 5:26.1.2-1~ubuntu.20.04~focal [25.3 MB]
Get:7 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 snapd amd64 2.62+20.04 [25.1 MB]
Get:8 https://download.docker.com/linux/ubuntu focal/stable amd64 docker-ce-rootless-extras amd64 5:26.1.2-1~ubuntu.20.04~focal [9329 kB]
Fetched 183 MB in 10s (18.7 MB/s)
(Reading database ... 92483 files and directories currently installed.)
Preparing to unpack .../0-libglib2.0-data_2.64.6-1~ubuntu20.04.7_all.deb ...
Unpacking libglib2.0-data (2.64.6-1~ubuntu20.04.7) over (2.64.6-1~ubuntu20.04.6) ...
Preparing to unpack .../1-libglib2.0-bin_2.64.6-1~ubuntu20.04.7_amd64.deb ...
Unpacking libglib2.0-bin (2.64.6-1~ubuntu20.04.7) over (2.64.6-1~ubuntu20.04.6) ...
Preparing to unpack .../2-libglib2.0-0_2.64.6-1~ubuntu20.04.7_amd64.deb ...
Unpacking libglib2.0-0:amd64 (2.64.6-1~ubuntu20.04.7) over (2.64.6-1~ubuntu20.04.6) ...
Preparing to unpack .../3-google-chrome-stable_124.0.6367.201-1_amd64.deb ...
Unpacking google-chrome-stable (124.0.6367.201-1) over (124.0.6367.118-1) ...
Preparing to unpack .../4-docker-ce-cli_5%3a26.1.2-1~ubuntu.20.04~focal_amd64.deb ...
Unpacking docker-ce-cli (5:26.1.2-1~ubuntu.20.04~focal) over (5:26.1.1-1~ubuntu.20.04~focal) ...
Preparing to unpack .../5-docker-ce_5%3a26.1.2-1~ubuntu.20.04~focal_amd64.deb ...
Unpacking docker-ce (5:26.1.2-1~ubuntu.20.04~focal) over (5:26.1.1-1~ubuntu.20.04~focal) ...
Preparing to unpack .../6-docker-ce-rootless-extras_5%3a26.1.2-1~ubuntu.20.04~focal_amd64.deb ...
Unpacking docker-ce-rootless-extras (5:26.1.2-1~ubuntu.20.04~focal) over (5:26.1.1-1~ubuntu.20.04~focal) ...
Preparing to unpack .../7-snapd_2.62+20.04_amd64.deb ...
Unpacking snapd (2.62+20.04) over (2.61.3+20.04) ...
Setting up snapd (2.62+20.04) ...
error: cannot read the state file: open /var/lib/snapd/state.json: no such file or directory
Setting up libglib2.0-0:amd64 (2.64.6-1~ubuntu20.04.7) ...
Setting up libglib2.0-data (2.64.6-1~ubuntu20.04.7) ...
Setting up docker-ce-cli (5:26.1.2-1~ubuntu.20.04~focal) ...
Setting up docker-ce-rootless-extras (5:26.1.2-1~ubuntu.20.04~focal) ...
Setting up google-chrome-stable (124.0.6367.201-1) ...
Setting up libglib2.0-bin (2.64.6-1~ubuntu20.04.7) ...
Setting up docker-ce (5:26.1.2-1~ubuntu.20.04~focal) ...
invoke-rc.d: could not determine current runlevel
Processing triggers for desktop-file-utils (0.24-1ubuntu3) ...
Processing triggers for mime-support (3.64ubuntu1) ...
Processing triggers for libc-bin (2.31-0ubuntu9.15) ...
/sbin/ldconfig.real: Can't link /usr/lib/wsl/lib/libnvoptix_loader.so.1 to libnvoptix.so.1
/sbin/ldconfig.real: /usr/lib/wsl/lib/libcuda.so.1 is not a symbolic link

Processing triggers for systemd (245.4-4ubuntu3.23) ...
Processing triggers for man-db (2.9.1-1) ...
Processing triggers for dbus (1.12.16-2ubuntu2.3) ...
christelle@DESKTOP-FOF3H0T:/$

christelle@DESKTOP-FOF3H0T:/$ apt policy docker
docker:
  Installed: (none)
  Candidate: 1.5-2
  Version table:
     1.5-2 500
        500 http://archive.ubuntu.com/ubuntu focal/universe amd64 Packages
christelle@DESKTOP-FOF3H0T:/$

Dernière modification par Christellle (Le 13/05/2024, à 11:11)

Hors ligne