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 18/05/2019, à 10:18

poumtatalia

ubuntu 18.04 - unable to install: cannot perform the following task:

Bonjour

Depuis quelques jours, dès que j'essaie d'installer une appli via "Ubuntu Software" j'obtiens systématiquement:

ubuntu unable to install:
cannot perform the following task: 

... sans nom d'appli ou de tâche listée. J'ai essayé:

sudo apt update
sudo apt upgrade
sudo apt autoremove

... sans plus de résultats. Etant assez ignorant en la matière, je ne sais trop qu'essayer ensuite. Des idées?

Merci d'avance pour votre aide!
Poum

Dernière modification par poumtatalia (Le 18/05/2019, à 10:19)


Toujours sur du LTS, en ce moment Ubuntu 20.04...

Hors ligne

#2 Le 18/05/2019, à 10:20

nam1962

Re : ubuntu 18.04 - unable to install: cannot perform the following task:

Peux-tu nous donner :

cat /etc/apt/sources.list
ls /etc/apt/sources.list.d -1

[ Modéré ]

Hors ligne

#3 Le 18/05/2019, à 10:26

poumtatalia

Re : ubuntu 18.04 - unable to install: cannot perform the following task:

Bonjour,

Avec joie wink

cat /etc/apt/sources.list

# deb cdrom:[Ubuntu 16.04.2 LTS _Xenial Xerus_ - Release amd64 (20170215.2)]/ xenial main restricted

# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
# newer versions of the distribution.
deb http://archive.ubuntu.com/ubuntu bionic main restricted
# deb-src http://fr.archive.ubuntu.com/ubuntu/ xenial main restricted

## Major bug fix updates produced after the final release of the
## distribution.
deb http://archive.ubuntu.com/ubuntu bionic-updates main restricted
# deb-src http://fr.archive.ubuntu.com/ubuntu/ xenial-updates main restricted

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team. Also, please note that software in universe WILL NOT receive any
## review or updates from the Ubuntu security team.
deb http://archive.ubuntu.com/ubuntu bionic universe
# deb-src http://fr.archive.ubuntu.com/ubuntu/ xenial universe
deb http://archive.ubuntu.com/ubuntu bionic-updates universe
# deb-src http://fr.archive.ubuntu.com/ubuntu/ xenial-updates universe

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu 
## team, and may not be under a free licence. Please satisfy yourself as to 
## your rights to use the software. Also, please note that software in 
## multiverse WILL NOT receive any review or updates from the Ubuntu
## security team.
deb http://archive.ubuntu.com/ubuntu bionic multiverse
# deb-src http://fr.archive.ubuntu.com/ubuntu/ xenial multiverse
deb http://archive.ubuntu.com/ubuntu bionic-updates multiverse
# deb-src http://fr.archive.ubuntu.com/ubuntu/ xenial-updates multiverse

## N.B. software from this repository may not have been tested as
## extensively as that contained in the main release, although it includes
## newer versions of some applications which may provide useful features.
## Also, please note that software in backports WILL NOT receive any review
## or updates from the Ubuntu security team.
# deb-src http://fr.archive.ubuntu.com/ubuntu/ xenial-backports main restricted universe multiverse

## Uncomment the following two lines to add software from Canonical's
## 'partner' repository.
## This software is not part of Ubuntu, but is offered by Canonical and the
## respective vendors as a service to Ubuntu users.
deb http://archive.canonical.com/ubuntu bionic partner
deb-src http://archive.canonical.com/ubuntu bionic partner

deb http://archive.ubuntu.com/ubuntu bionic-security main restricted
# deb-src http://security.ubuntu.com/ubuntu xenial-security main restricted
deb http://archive.ubuntu.com/ubuntu bionic-security universe
# deb-src http://security.ubuntu.com/ubuntu xenial-security universe
deb http://archive.ubuntu.com/ubuntu bionic-security multiverse
# deb-src http://security.ubuntu.com/ubuntu xenial-security multiverse
deb https://dl.winehq.org/wine-builds/ubuntu/ bionic main
# deb-src https://dl.winehq.org/wine-builds/ubuntu/ bionic main

ls /etc/apt/sources.list.d -1

megasync.list
megasync.list.distUpgrade
megasync.list.save
slack.list
slack.list.save
teamviewer.list

Toujours sur du LTS, en ce moment Ubuntu 20.04...

Hors ligne

#4 Le 18/05/2019, à 10:34

nam1962

Re : ubuntu 18.04 - unable to install: cannot perform the following task:

Hmm, tes dépôts ne sont pas propres.

On va mettre au propre  (Donne tous les retours) :

gedit admin:///etc/apt/sources.list

Remplace tout par :

#------------------------------------------------------------------------------#
#                            OFFICIAL UBUNTU REPOS                             #
#------------------------------------------------------------------------------#


###### Ubuntu Main Repos
deb http://fr.archive.ubuntu.com/ubuntu/ bionic main restricted universe multiverse 

###### Ubuntu Update Repos
deb http://fr.archive.ubuntu.com/ubuntu/ bionic-security main restricted universe multiverse 
deb http://fr.archive.ubuntu.com/ubuntu/ bionic-updates main restricted universe multiverse 
deb http://fr.archive.ubuntu.com/ubuntu/ bionic-backports main restricted universe multiverse 

###### Ubuntu Partner Repo
deb http://archive.canonical.com/ubuntu bionic partner

Virer tous les PPA (on les remettra après, si indispensables - pour teamviewer, il y a mieux : anydesk ou dwservice) :

sudo rm /etc/apt/sources.list.d/*

Puis nettoyage et mise à jour (passe ligne après ligne en triple cliquant pour sélectionner chaque commande) :

sudo apt clean
[[ $(dpkg -l | grep ^rc) ]] && sudo dpkg -P $(dpkg -l | grep ^rc | tr -s " " | cut -d " " -f 2)
sudo apt update
sudo apt full-upgrade
[[ $(apt-mark showmanual | egrep 'linux-.*[0-9]' | grep -v "hwe") ]] && sudo apt-mark auto $(apt-mark showmanual | egrep linux-.*[0-9] | grep -v "hwe")
sudo apt autoremove --purge

[ Modéré ]

Hors ligne

#5 Le 18/05/2019, à 10:45

poumtatalia

Re : ubuntu 18.04 - unable to install: cannot perform the following task:

pouma@pupidesk:~$ gedit admin:///etc/apt/sources.list

** (gedit:10140): WARNING **: 11:35:21.107: The specified location is not mounted
pouma@pupidesk:~$ sudo rm /etc/apt/sources.list.d/*
[sudo] password for pouma: 
pouma@pupidesk:~$ sudo apt clean
pouma@pupidesk:~$ [[ $(dpkg -l | grep ^rc) ]] && sudo dpkg -P $(dpkg -l | grep ^rc | tr -s " " | cut -d " " -f 2)
(Reading database ... 218778 files and directories currently installed.)
Purging configuration files for account-plugin-facebook (0.12+16.04.20160126-0ubuntu1) ...
Purging configuration files for account-plugin-flickr (0.12+16.04.20160126-0ubuntu1) ...
Purging configuration files for account-plugin-google (0.12+16.04.20160126-0ubuntu1) ...
Purging configuration files for appmenu-qt5 (0.3.0+16.04.20170216-0ubuntu1) ...
Purging configuration files for breeze-icon-theme (4:5.44.0-0ubuntu1) ...
Purging configuration files for docbook-xml (4.5-8) ...
Purging configuration files for docbook-xsl (1.79.1+dfsg-2) ...
Purging configuration files for flashplugin-installer (31.0.0.108ubuntu0.18.04.1) ...
Purging configuration files for fonts-unfonts-core (1:1.0.2-080608-14) ...
Purging configuration files for fonts-wqy-microhei (0.2.0-beta-3) ...
Purging configuration files for freepats (20060219-1) ...
Purging configuration files for initscripts (2.88dsf-59.3ubuntu2) ...
Purging configuration files for insserv (1.14.0-5ubuntu3) ...
Purging configuration files for javascript-common (11) ...
Purging configuration files for kde-runtime (4:17.08.3-0ubuntu1) ...
Purging configuration files for kde-runtime-data (4:17.08.3-0ubuntu1) ...
Purging configuration files for kdelibs5-data (4:4.14.38-0ubuntu3) ...
Purging configuration files for kerneloops-daemon (0.12+git20140509-2ubuntu1) ...
userdel: user kernoops is currently used by process 1323
/usr/sbin/deluser: `/usr/sbin/userdel kernoops' returned error code 8. Exiting.
Purging configuration files for keyutils (1.5.9-9.2ubuntu2) ...
Purging configuration files for libattica0.4:amd64 (0.4.2-2) ...
Purging configuration files for libdirectfb-1.2-9:amd64 (1.2.10.0-5.1) ...
Purging configuration files for libdouble-conversion1v5:amd64 (2.0.1-3ubuntu2) ...
Purging configuration files for libgdbm3:amd64 (1.8.3-13.1) ...
Purging configuration files for libhybris (0.1.0+git20151016+6d424c9-0ubuntu7) ...
Purging configuration files for libjson-c2:amd64 (0.11-4ubuntu2) ...
Purging configuration files for libjson-c2:i386 (0.11-4ubuntu2) ...
Purging configuration files for libntrack-qt4-1 (016-1.3) ...
Purging configuration files for libntrack0 (016-1.3) ...
Purging configuration files for libopenjpeg5:amd64 (1:1.5.2-3.1) ...
Purging configuration files for libperl5.22:amd64 (5.22.1-9ubuntu0.5) ...
Purging configuration files for libqmi-glib1:amd64 (1.12.6-1) ...
Purging configuration files for libquvi7:amd64 (0.4.1-3) ...
Purging configuration files for libschroedinger-1.0-0:amd64 (1.0.11-2.1build1) ...
Purging configuration files for libsidplay2v5 (2.1.1-14ubuntu2) ...
Purging configuration files for libsm6:i386 (2:1.2.2-1) ...
Purging configuration files for libssl1.0.0:i386 (1.0.2n-1ubuntu5.1) ...
Purging configuration files for libtidy-0.99-0 (20091223cvs-1.5) ...
Purging configuration files for libtinyxml2-2v5:amd64 (2.2.0-1.1ubuntu1) ...
Purging configuration files for libtxc-dxtn-s2tc0:amd64 (0~git20131104-1.1) ...
Purging configuration files for libtxc-dxtn-s2tc0:i386 (0~git20131104-1.1) ...
Purging configuration files for libvlccore8 (2.2.2-5ubuntu0.16.04.4) ...
Purging configuration files for libvo-aacenc0:amd64 (0.1.3-1) ...
Purging configuration files for libvo-amrwbenc0:amd64 (0.1.3-1) ...
Purging configuration files for libwebrtc-audio-processing-0:amd64 (0.1-3ubuntu1~gcc5.1) ...
Purging configuration files for libwildmidi-config (0.4.2-1) ...
Purging configuration files for libwildmidi1:amd64 (0.3.8-2) ...
Purging configuration files for linux-image-4.10.0-27-generic (4.10.0-27.30~16.04.2) ...
Examining /etc/kernel/postrm.d .
run-parts: executing /etc/kernel/postrm.d/initramfs-tools 4.10.0-27-generic /boot/vmlinuz-4.10.0-27-generic
run-parts: executing /etc/kernel/postrm.d/zz-update-grub 4.10.0-27-generic /boot/vmlinuz-4.10.0-27-generic
Purging configuration files for linux-image-4.10.0-30-generic (4.10.0-30.34~16.04.1) ...
Examining /etc/kernel/postrm.d .
run-parts: executing /etc/kernel/postrm.d/initramfs-tools 4.10.0-30-generic /boot/vmlinuz-4.10.0-30-generic
run-parts: executing /etc/kernel/postrm.d/zz-update-grub 4.10.0-30-generic /boot/vmlinuz-4.10.0-30-generic
Purging configuration files for linux-image-4.10.0-32-generic (4.10.0-32.36~16.04.1) ...
Examining /etc/kernel/postrm.d .
run-parts: executing /etc/kernel/postrm.d/initramfs-tools 4.10.0-32-generic /boot/vmlinuz-4.10.0-32-generic
run-parts: executing /etc/kernel/postrm.d/zz-update-grub 4.10.0-32-generic /boot/vmlinuz-4.10.0-32-generic
Purging configuration files for linux-image-4.10.0-33-generic (4.10.0-33.37~16.04.1) ...
Examining /etc/kernel/postrm.d .
run-parts: executing /etc/kernel/postrm.d/initramfs-tools 4.10.0-33-generic /boot/vmlinuz-4.10.0-33-generic
run-parts: executing /etc/kernel/postrm.d/zz-update-grub 4.10.0-33-generic /boot/vmlinuz-4.10.0-33-generic
Purging configuration files for linux-image-4.10.0-35-generic (4.10.0-35.39~16.04.1) ...
Examining /etc/kernel/postrm.d .
run-parts: executing /etc/kernel/postrm.d/initramfs-tools 4.10.0-35-generic /boot/vmlinuz-4.10.0-35-generic
run-parts: executing /etc/kernel/postrm.d/zz-update-grub 4.10.0-35-generic /boot/vmlinuz-4.10.0-35-generic
Purging configuration files for linux-image-4.10.0-42-generic (4.10.0-42.46~16.04.1) ...
Examining /etc/kernel/postrm.d .
run-parts: executing /etc/kernel/postrm.d/initramfs-tools 4.10.0-42-generic /boot/vmlinuz-4.10.0-42-generic
run-parts: executing /etc/kernel/postrm.d/zz-update-grub 4.10.0-42-generic /boot/vmlinuz-4.10.0-42-generic
Purging configuration files for linux-image-4.13.0-26-generic (4.13.0-26.29~16.04.2) ...
Examining /etc/kernel/postrm.d .
run-parts: executing /etc/kernel/postrm.d/initramfs-tools 4.13.0-26-generic /boot/vmlinuz-4.13.0-26-generic
run-parts: executing /etc/kernel/postrm.d/zz-update-grub 4.13.0-26-generic /boot/vmlinuz-4.13.0-26-generic
Purging configuration files for linux-image-4.13.0-32-generic (4.13.0-32.35~16.04.1) ...
Examining /etc/kernel/postrm.d .
run-parts: executing /etc/kernel/postrm.d/initramfs-tools 4.13.0-32-generic /boot/vmlinuz-4.13.0-32-generic
run-parts: executing /etc/kernel/postrm.d/zz-update-grub 4.13.0-32-generic /boot/vmlinuz-4.13.0-32-generic
Purging configuration files for linux-image-4.13.0-36-generic (4.13.0-36.40~16.04.1) ...
Examining /etc/kernel/postrm.d .
run-parts: executing /etc/kernel/postrm.d/initramfs-tools 4.13.0-36-generic /boot/vmlinuz-4.13.0-36-generic
run-parts: executing /etc/kernel/postrm.d/zz-update-grub 4.13.0-36-generic /boot/vmlinuz-4.13.0-36-generic
Purging configuration files for linux-image-4.13.0-37-generic (4.13.0-37.42~16.04.1) ...
Examining /etc/kernel/postrm.d .
run-parts: executing /etc/kernel/postrm.d/initramfs-tools 4.13.0-37-generic /boot/vmlinuz-4.13.0-37-generic
run-parts: executing /etc/kernel/postrm.d/zz-update-grub 4.13.0-37-generic /boot/vmlinuz-4.13.0-37-generic
Purging configuration files for linux-image-4.13.0-38-generic (4.13.0-38.43~16.04.1) ...
Examining /etc/kernel/postrm.d .
run-parts: executing /etc/kernel/postrm.d/initramfs-tools 4.13.0-38-generic /boot/vmlinuz-4.13.0-38-generic
run-parts: executing /etc/kernel/postrm.d/zz-update-grub 4.13.0-38-generic /boot/vmlinuz-4.13.0-38-generic
Purging configuration files for linux-image-4.13.0-39-generic (4.13.0-39.44~16.04.1) ...
Examining /etc/kernel/postrm.d .
run-parts: executing /etc/kernel/postrm.d/initramfs-tools 4.13.0-39-generic /boot/vmlinuz-4.13.0-39-generic
run-parts: executing /etc/kernel/postrm.d/zz-update-grub 4.13.0-39-generic /boot/vmlinuz-4.13.0-39-generic
Purging configuration files for linux-image-4.13.0-41-generic (4.13.0-41.46~16.04.1) ...
Examining /etc/kernel/postrm.d .
run-parts: executing /etc/kernel/postrm.d/initramfs-tools 4.13.0-41-generic /boot/vmlinuz-4.13.0-41-generic
run-parts: executing /etc/kernel/postrm.d/zz-update-grub 4.13.0-41-generic /boot/vmlinuz-4.13.0-41-generic
Purging configuration files for linux-image-4.13.0-43-generic (4.13.0-43.48~16.04.1) ...
Examining /etc/kernel/postrm.d .
run-parts: executing /etc/kernel/postrm.d/initramfs-tools 4.13.0-43-generic /boot/vmlinuz-4.13.0-43-generic
run-parts: executing /etc/kernel/postrm.d/zz-update-grub 4.13.0-43-generic /boot/vmlinuz-4.13.0-43-generic
Purging configuration files for linux-image-4.13.0-45-generic (4.13.0-45.50~16.04.1) ...
Examining /etc/kernel/postrm.d .
run-parts: executing /etc/kernel/postrm.d/initramfs-tools 4.13.0-45-generic /boot/vmlinuz-4.13.0-45-generic
run-parts: executing /etc/kernel/postrm.d/zz-update-grub 4.13.0-45-generic /boot/vmlinuz-4.13.0-45-generic
Purging configuration files for linux-image-4.15.0-29-generic (4.15.0-29.31~16.04.1) ...
Purging configuration files for linux-image-4.15.0-32-generic (4.15.0-32.35~16.04.1) ...
Purging configuration files for linux-image-4.15.0-33-generic (4.15.0-33.36) ...
Purging configuration files for linux-image-4.15.0-34-generic (4.15.0-34.37) ...
Purging configuration files for linux-image-4.15.0-36-generic (4.15.0-36.39) ...
Purging configuration files for linux-image-4.15.0-38-generic (4.15.0-38.41) ...
Purging configuration files for linux-image-4.15.0-39-generic (4.15.0-39.42) ...
Purging configuration files for linux-image-4.15.0-42-generic (4.15.0-42.45) ...
Purging configuration files for linux-image-4.15.0-43-generic (4.15.0-43.46) ...
Purging configuration files for linux-image-4.15.0-45-generic (4.15.0-45.48) ...
Purging configuration files for linux-image-4.15.0-46-generic (4.15.0-46.49) ...
Purging configuration files for linux-image-4.15.0-47-generic (4.15.0-47.50) ...
Purging configuration files for linux-image-4.8.0-36-generic (4.8.0-36.36~16.04.1) ...
Examining /etc/kernel/postrm.d .
run-parts: executing /etc/kernel/postrm.d/initramfs-tools 4.8.0-36-generic /boot/vmlinuz-4.8.0-36-generic
run-parts: executing /etc/kernel/postrm.d/zz-update-grub 4.8.0-36-generic /boot/vmlinuz-4.8.0-36-generic
Purging configuration files for linux-image-4.8.0-58-generic (4.8.0-58.63~16.04.1) ...
Examining /etc/kernel/postrm.d .
run-parts: executing /etc/kernel/postrm.d/initramfs-tools 4.8.0-58-generic /boot/vmlinuz-4.8.0-58-generic
run-parts: executing /etc/kernel/postrm.d/zz-update-grub 4.8.0-58-generic /boot/vmlinuz-4.8.0-58-generic
Purging configuration files for linux-image-extra-4.10.0-27-generic (4.10.0-27.30~16.04.2) ...
Purging configuration files for linux-image-extra-4.10.0-30-generic (4.10.0-30.34~16.04.1) ...
Purging configuration files for linux-image-extra-4.10.0-32-generic (4.10.0-32.36~16.04.1) ...
Purging configuration files for linux-image-extra-4.10.0-33-generic (4.10.0-33.37~16.04.1) ...
Purging configuration files for linux-image-extra-4.10.0-35-generic (4.10.0-35.39~16.04.1) ...
Purging configuration files for linux-image-extra-4.10.0-42-generic (4.10.0-42.46~16.04.1) ...
Purging configuration files for linux-image-extra-4.13.0-26-generic (4.13.0-26.29~16.04.2) ...
Purging configuration files for linux-image-extra-4.13.0-32-generic (4.13.0-32.35~16.04.1) ...
Purging configuration files for linux-image-extra-4.13.0-36-generic (4.13.0-36.40~16.04.1) ...
Purging configuration files for linux-image-extra-4.13.0-37-generic (4.13.0-37.42~16.04.1) ...
Purging configuration files for linux-image-extra-4.13.0-38-generic (4.13.0-38.43~16.04.1) ...
Purging configuration files for linux-image-extra-4.13.0-39-generic (4.13.0-39.44~16.04.1) ...
Purging configuration files for linux-image-extra-4.13.0-41-generic (4.13.0-41.46~16.04.1) ...
Purging configuration files for linux-image-extra-4.13.0-43-generic (4.13.0-43.48~16.04.1) ...
Purging configuration files for linux-image-extra-4.13.0-45-generic (4.13.0-45.50~16.04.1) ...
Purging configuration files for linux-image-extra-4.8.0-36-generic (4.8.0-36.36~16.04.1) ...
Purging configuration files for linux-image-extra-4.8.0-58-generic (4.8.0-58.63~16.04.1) ...
Purging configuration files for linux-modules-4.15.0-29-generic (4.15.0-29.31~16.04.1) ...
Purging configuration files for linux-modules-4.15.0-32-generic (4.15.0-32.35~16.04.1) ...
Purging configuration files for linux-modules-4.15.0-33-generic (4.15.0-33.36) ...
Purging configuration files for linux-modules-4.15.0-34-generic (4.15.0-34.37) ...
Purging configuration files for linux-modules-4.15.0-36-generic (4.15.0-36.39) ...
Purging configuration files for linux-modules-4.15.0-38-generic (4.15.0-38.41) ...
Purging configuration files for linux-modules-4.15.0-39-generic (4.15.0-39.42) ...
Purging configuration files for linux-modules-4.15.0-42-generic (4.15.0-42.45) ...
Purging configuration files for linux-modules-4.15.0-43-generic (4.15.0-43.46) ...
Purging configuration files for linux-modules-4.15.0-45-generic (4.15.0-45.48) ...
Purging configuration files for linux-modules-4.15.0-46-generic (4.15.0-46.49) ...
Purging configuration files for linux-modules-4.15.0-47-generic (4.15.0-47.50) ...
Purging configuration files for linux-modules-extra-4.15.0-29-generic (4.15.0-29.31~16.04.1) ...
Purging configuration files for linux-modules-extra-4.15.0-32-generic (4.15.0-32.35~16.04.1) ...
Purging configuration files for linux-modules-extra-4.15.0-33-generic (4.15.0-33.36) ...
Purging configuration files for linux-modules-extra-4.15.0-34-generic (4.15.0-34.37) ...
Purging configuration files for linux-modules-extra-4.15.0-36-generic (4.15.0-36.39) ...
Purging configuration files for linux-modules-extra-4.15.0-38-generic (4.15.0-38.41) ...
Purging configuration files for linux-modules-extra-4.15.0-39-generic (4.15.0-39.42) ...
Purging configuration files for linux-modules-extra-4.15.0-42-generic (4.15.0-42.45) ...
Purging configuration files for linux-modules-extra-4.15.0-43-generic (4.15.0-43.46) ...
Purging configuration files for linux-modules-extra-4.15.0-45-generic (4.15.0-45.48) ...
Purging configuration files for linux-modules-extra-4.15.0-46-generic (4.15.0-46.49) ...
Purging configuration files for linux-modules-extra-4.15.0-47-generic (4.15.0-47.50) ...
Purging configuration files for mattermost-desktop (3.7.0-3.7.0) ...
Purging configuration files for mountall (2.54ubuntu1) ...
Purging configuration files for ntrack-module-libnl-0 (016-1.3) ...
Purging configuration files for odbcinst (2.3.4-1.1ubuntu3) ...
Purging configuration files for oxygen-icon-theme (5:5.44.0-0ubuntu1) ...
Purging configuration files for phonon:amd64 (4:4.10.0-2) ...
Purging configuration files for python-pygments (2.2.0+dfsg-1) ...
Purging configuration files for python3-aptdaemon.pkcompat (1.1.1+bzr982-0ubuntu14) ...
Purging configuration files for python3.5-minimal (3.5.2-2ubuntu0~16.04.4) ...
Purging configuration files for sgml-data (2.0.10) ...
Purging configuration files for snap-confine (2.29.4.2) ...
Purging configuration files for snapd-login-service (1.13-0ubuntu0.16.04.1) ...
Purging configuration files for sysv-rc (2.88dsf-59.3ubuntu2) ...
Purging configuration files for toshset (1.76-4) ...
Purging configuration files for unity-webapps-common (2.4.17+15.10.20150616-0ubuntu2) ...
Purging configuration files for unity-webapps-service (2.5.0~+16.04.20160201-0ubuntu1) ...
Purging configuration files for upstart (1.13.2-0ubuntu21.1) ...
Purging configuration files for vlc-nox (2.2.2-5ubuntu0.16.04.4) ...
Purging configuration files for webbrowser-app (0.23+16.04.20161028-0ubuntu2) ...
Processing triggers for sgml-base (1.29) ...
Processing triggers for ureadahead (0.100.0-21) ...
Processing triggers for systemd (237-3ubuntu10.21) ...
Processing triggers for dbus (1.12.2-1ubuntu1) ...
pouma@pupidesk:~$ sudo apt update
Get:1 http://fr.archive.ubuntu.com/ubuntu bionic InRelease [242 kB]
Hit:2 http://archive.canonical.com/ubuntu bionic InRelease
Get:3 http://fr.archive.ubuntu.com/ubuntu bionic-security InRelease [88,7 kB]
Get:4 http://fr.archive.ubuntu.com/ubuntu bionic-updates InRelease [88,7 kB]
Get:5 http://fr.archive.ubuntu.com/ubuntu bionic-backports InRelease [74,6 kB]
Get:6 http://fr.archive.ubuntu.com/ubuntu bionic/main amd64 Packages [1019 kB]      
Get:7 http://fr.archive.ubuntu.com/ubuntu bionic/main i386 Packages [1007 kB]       
Get:8 http://fr.archive.ubuntu.com/ubuntu bionic/main Translation-en [516 kB]            
Get:9 http://fr.archive.ubuntu.com/ubuntu bionic/main amd64 DEP-11 Metadata [477 kB]       
Get:10 http://fr.archive.ubuntu.com/ubuntu bionic/main DEP-11 48x48 Icons [118 kB]           
Get:11 http://fr.archive.ubuntu.com/ubuntu bionic/main DEP-11 64x64 Icons [245 kB]       
Get:12 http://fr.archive.ubuntu.com/ubuntu bionic/restricted amd64 Packages [9184 B]   
Get:13 http://fr.archive.ubuntu.com/ubuntu bionic/restricted i386 Packages [9156 B]
Get:14 http://fr.archive.ubuntu.com/ubuntu bionic/restricted Translation-en [3584 B]     
Get:15 http://fr.archive.ubuntu.com/ubuntu bionic/universe amd64 Packages [8570 kB]
Get:16 http://fr.archive.ubuntu.com/ubuntu bionic/universe i386 Packages [8531 kB]       
Get:17 http://fr.archive.ubuntu.com/ubuntu bionic/universe Translation-en [4941 kB]
Get:18 http://fr.archive.ubuntu.com/ubuntu bionic/universe amd64 DEP-11 Metadata [3287 kB]
Get:19 http://fr.archive.ubuntu.com/ubuntu bionic/universe DEP-11 48x48 Icons [2151 kB]
Get:20 http://fr.archive.ubuntu.com/ubuntu bionic/universe DEP-11 64x64 Icons [8420 kB]
Get:21 http://fr.archive.ubuntu.com/ubuntu bionic/multiverse i386 Packages [144 kB]
Get:22 http://fr.archive.ubuntu.com/ubuntu bionic/multiverse amd64 Packages [151 kB]
Get:23 http://fr.archive.ubuntu.com/ubuntu bionic/multiverse Translation-en [108 kB]
Get:24 http://fr.archive.ubuntu.com/ubuntu bionic/multiverse amd64 DEP-11 Metadata [49,7 kB]
Get:25 http://fr.archive.ubuntu.com/ubuntu bionic/multiverse DEP-11 48x48 Icons [8931 B]
Get:26 http://fr.archive.ubuntu.com/ubuntu bionic/multiverse DEP-11 64x64 Icons [225 kB]
Get:27 http://fr.archive.ubuntu.com/ubuntu bionic-security/main i386 Packages [261 kB]
Get:28 http://fr.archive.ubuntu.com/ubuntu bionic-security/main amd64 Packages [349 kB]
Get:29 http://fr.archive.ubuntu.com/ubuntu bionic-security/main Translation-en [125 kB]
Get:30 http://fr.archive.ubuntu.com/ubuntu bionic-security/main amd64 DEP-11 Metadata [14,9 kB]
Get:31 http://fr.archive.ubuntu.com/ubuntu bionic-security/main DEP-11 48x48 Icons [10,4 kB]
Get:32 http://fr.archive.ubuntu.com/ubuntu bionic-security/main DEP-11 64x64 Icons [20,9 kB]
Get:33 http://fr.archive.ubuntu.com/ubuntu bionic-security/restricted i386 Packages [4280 B]
Get:34 http://fr.archive.ubuntu.com/ubuntu bionic-security/restricted amd64 Packages [4296 B]
Get:35 http://fr.archive.ubuntu.com/ubuntu bionic-security/restricted Translation-en [2192 B]
Get:36 http://fr.archive.ubuntu.com/ubuntu bionic-security/universe amd64 Packages [244 kB]
Get:37 http://fr.archive.ubuntu.com/ubuntu bionic-security/universe i386 Packages [240 kB]
Get:38 http://fr.archive.ubuntu.com/ubuntu bionic-security/universe Translation-en [140 kB]
Get:39 http://fr.archive.ubuntu.com/ubuntu bionic-security/universe amd64 DEP-11 Metadata [35,8 kB]
Get:40 http://fr.archive.ubuntu.com/ubuntu bionic-security/universe DEP-11 48x48 Icons [16,4 kB]
Get:41 http://fr.archive.ubuntu.com/ubuntu bionic-security/universe DEP-11 64x64 Icons [92,5 kB]
Get:42 http://fr.archive.ubuntu.com/ubuntu bionic-security/multiverse amd64 Packages [4004 B]
Get:43 http://fr.archive.ubuntu.com/ubuntu bionic-security/multiverse i386 Packages [4152 B]                                                                                                                     
Get:44 http://fr.archive.ubuntu.com/ubuntu bionic-security/multiverse Translation-en [2060 B]                                                                                                                    
Get:45 http://fr.archive.ubuntu.com/ubuntu bionic-security/multiverse amd64 DEP-11 Metadata [2464 B]                                                                                                             
Get:46 http://fr.archive.ubuntu.com/ubuntu bionic-security/multiverse DEP-11 48x48 Icons [29 B]                                                                                                                   
Get:47 http://fr.archive.ubuntu.com/ubuntu bionic-security/multiverse DEP-11 64x64 Icons [2638 B]                                                                                                                
Get:48 http://fr.archive.ubuntu.com/ubuntu bionic-updates/main i386 Packages [516 kB]                                                                                                                             
Get:49 http://fr.archive.ubuntu.com/ubuntu bionic-updates/main amd64 Packages [617 kB]                                                                                                                            
Get:50 http://fr.archive.ubuntu.com/ubuntu bionic-updates/main Translation-en [229 kB]                                                                                                                            
Get:51 http://fr.archive.ubuntu.com/ubuntu bionic-updates/main amd64 DEP-11 Metadata [276 kB]                                                                                                                     
Get:52 http://fr.archive.ubuntu.com/ubuntu bionic-updates/main DEP-11 48x48 Icons [66,7 kB]                                                                                                                       
Get:53 http://fr.archive.ubuntu.com/ubuntu bionic-updates/main DEP-11 64x64 Icons [123 kB]                                                                                                                        
Get:54 http://fr.archive.ubuntu.com/ubuntu bionic-updates/restricted amd64 Packages [6996 B]                                                                                                                     
Get:55 http://fr.archive.ubuntu.com/ubuntu bionic-updates/restricted i386 Packages [6960 B]                                                                                                                      
Get:56 http://fr.archive.ubuntu.com/ubuntu bionic-updates/restricted Translation-en [3076 B]                                                                                                                     
Get:57 http://fr.archive.ubuntu.com/ubuntu bionic-updates/universe amd64 Packages [936 kB]                                                                                                                        
Get:58 http://fr.archive.ubuntu.com/ubuntu bionic-updates/universe i386 Packages [924 kB]                                                                                                                         
Get:59 http://fr.archive.ubuntu.com/ubuntu bionic-updates/universe Translation-en [274 kB]                                                                                                                        
Get:60 http://fr.archive.ubuntu.com/ubuntu bionic-updates/universe amd64 DEP-11 Metadata [227 kB]                                                                                                                 
Get:61 http://fr.archive.ubuntu.com/ubuntu bionic-updates/universe DEP-11 48x48 Icons [180 kB]                                                                                                                    
Get:62 http://fr.archive.ubuntu.com/ubuntu bionic-updates/universe DEP-11 64x64 Icons [387 kB]                                                                                                                    
Get:63 http://fr.archive.ubuntu.com/ubuntu bionic-updates/multiverse i386 Packages [6788 B]                                                                                                                      
Get:64 http://fr.archive.ubuntu.com/ubuntu bionic-updates/multiverse amd64 Packages [6644 B]                                                                                                                     
Get:65 http://fr.archive.ubuntu.com/ubuntu bionic-updates/multiverse Translation-en [3556 B]                                                                                                                     
Get:66 http://fr.archive.ubuntu.com/ubuntu bionic-updates/multiverse amd64 DEP-11 Metadata [2468 B]                                                                                                              
Get:67 http://fr.archive.ubuntu.com/ubuntu bionic-updates/multiverse DEP-11 48x48 Icons [29 B]                                                                                                                    
Get:68 http://fr.archive.ubuntu.com/ubuntu bionic-updates/multiverse DEP-11 64x64 Icons [2638 B]                                                                                                                 
Get:69 http://fr.archive.ubuntu.com/ubuntu bionic-backports/main i386 Packages [1024 B]                                                                                                                          
Get:70 http://fr.archive.ubuntu.com/ubuntu bionic-backports/main amd64 Packages [1024 B]                                                                                                                         
Get:71 http://fr.archive.ubuntu.com/ubuntu bionic-backports/main Translation-en [448 B]                                                                                                                           
Get:72 http://fr.archive.ubuntu.com/ubuntu bionic-backports/universe i386 Packages [3496 B]                                                                                                                      
Get:73 http://fr.archive.ubuntu.com/ubuntu bionic-backports/universe amd64 Packages [3496 B]                                                                                                                     
Get:74 http://fr.archive.ubuntu.com/ubuntu bionic-backports/universe Translation-en [1604 B]                                                                                                                     
Get:75 http://fr.archive.ubuntu.com/ubuntu bionic-backports/universe amd64 DEP-11 Metadata [7224 B]                                                                                                              
Get:76 http://fr.archive.ubuntu.com/ubuntu bionic-backports/universe DEP-11 48x48 Icons [29 B]                                                                                                                    
Get:77 http://fr.archive.ubuntu.com/ubuntu bionic-backports/universe DEP-11 64x64 Icons [29 B]                                                                                                                    
Fetched 46,9 MB in 13s (3695 kB/s)                                                                                                                                                                               
Reading package lists... Done
Building dependency tree       
Reading state information... Done
All packages are up to date.
sudo apt full-upgrade
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Calculating upgrade... Done
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
pouma@pupidesk:~$ sudo apt autoremove --purge
Reading package lists... Done
Building dependency tree       
Reading state information... Done
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.

Dernière modification par poumtatalia (Le 18/05/2019, à 10:45)


Toujours sur du LTS, en ce moment Ubuntu 20.04...

Hors ligne

#6 Le 18/05/2019, à 10:51

nam1962

Re : ubuntu 18.04 - unable to install: cannot perform the following task:

Ok, ça a l'air propre.

Maintenant, teste une installation de logiciel, dis-nous lequel et ce qui se passe.


[ Modéré ]

Hors ligne

#7 Le 29/09/2019, à 14:20

poumtatalia

Re : ubuntu 18.04 - unable to install: cannot perform the following task:

Bonjour,

Je galère avec un vieux soucis que je me traine depuis un bail.
dès que j'essaie d'installer une appli via "Ubuntu Software" j'obtiens systématiquement:

ubuntu unable to install:
cannot perform the following task: 

... sans nom d'appli ou de tâche listée. J'ai essayé:

sudo apt update
sudo apt upgrade
sudo apt autoremove

... sans plus de résultats.

cat /etc/apt/sources.list me donne

#------------------------------------------------------------------------------#
#                            OFFICIAL UBUNTU REPOS                             #
#------------------------------------------------------------------------------#


###### Ubuntu Main Repos
deb http://fr.archive.ubuntu.com/ubuntu/ bionic main restricted universe multiverse 

###### Ubuntu Update Repos
deb http://fr.archive.ubuntu.com/ubuntu/ bionic-security main restricted universe multiverse 
deb http://fr.archive.ubuntu.com/ubuntu/ bionic-updates main restricted universe multiverse 
deb http://fr.archive.ubuntu.com/ubuntu/ bionic-backports main restricted universe multiverse 

###### Ubuntu Partner Repo
deb http://archive.canonical.com/ubuntu bionic partner

ls /etc/apt/sources.list.d -1

$ ls /etc/apt/sources.list.d -1
google-earth-pro.list
megasync.list

Des idées ?

Dernière modification par poumtatalia (Le 29/09/2019, à 14:26)


Toujours sur du LTS, en ce moment Ubuntu 20.04...

Hors ligne

#8 Le 29/09/2019, à 14:39

xubu1957

Re : ubuntu 18.04 - unable to install: cannot perform the following task:

Bonjour,

Fournis les noyaux présents :

echo; dpkg -l | grep -Ei "linux-(g|h|i|lo|mo|si|t)" | grep -v ^rc | sort -k3 | awk '{print $1,$2,$3,$4}' | column -s" " -t ; echo ; uname -mr

En lançant en commande :

gnome-software

ressort-il un message d'erreur ?

Dernière modification par xubu1957 (Le 29/09/2019, à 15:07)


Conseils pour les nouveaux demandeurs et pas qu'eux
Important : Pensez à passer vos sujets en [Résolu] 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

#9 Le 29/09/2019, à 15:06

cqfd93

Re : ubuntu 18.04 - unable to install: cannot perform the following task:

Modération

Discussions fusionnées. @poumtatalia : tu aurais donné suite à la demande de nam1962 en mai (message #6), tu n'en serais peut-être pas encore au même point aujourd'hui ! En tout cas, il était inutile d'ouvrir une nouvelle discussion pour traiter le même problème.


cqfd93

Hors ligne

#10 Le 29/09/2019, à 19:53

poumtatalia

Re : ubuntu 18.04 - unable to install: cannot perform the following task:

$ echo; dpkg -l | grep -Ei "linux-(g|h|i|lo|mo|si|t)" | grep -v ^rc | sort -k3 | awk '{print $1,$2,$3,$4}' | column -s" " -t ; echo ; uname -mr

ii  binutils-x86-64-linux-gnu              2.30-21ubuntu1~18.04.2  amd64
ii  linux-headers-4.15.0-62                4.15.0-62.69            all
ii  linux-modules-4.15.0-62-generic        4.15.0-62.69            amd64
ii  linux-modules-extra-4.15.0-62-generic  4.15.0-62.69            amd64
ii  linux-headers-4.15.0-62-generic        4.15.0-62.69            amd64
ii  linux-image-4.15.0-62-generic          4.15.0-62.69            amd64
ii  linux-generic                          4.15.0.64.66            amd64
ii  linux-generic-hwe-16.04                4.15.0.64.66            amd64
ii  linux-headers-generic                  4.15.0.64.66            amd64
ii  linux-image-generic                    4.15.0.64.66            amd64
ii  linux-headers-4.15.0-64                4.15.0-64.73            all
ii  linux-modules-4.15.0-64-generic        4.15.0-64.73            amd64
ii  linux-modules-extra-4.15.0-64-generic  4.15.0-64.73            amd64
ii  linux-headers-4.15.0-64-generic        4.15.0-64.73            amd64
ii  linux-image-4.15.0-64-generic          4.15.0-64.73            amd64

4.15.0-64-generic x86_64

gnome-software lance "Ubuntu Software" , pas de message d'erreur.

@cqfd93: J'ai quitté le pays quelques temps, donc cet ordinateur est resté longtemps sans usage. Rentrant depuis peu, je retombe sur le même soucis. Je croyas bien faire en recopiant les infos pour ne pas déterrer. Mes excuses donc si c'était impoli.


Toujours sur du LTS, en ce moment Ubuntu 20.04...

Hors ligne

#11 Le 29/09/2019, à 20:26

xubu1957

Re : ubuntu 18.04 - unable to install: cannot perform the following task:

Quels sont les logiciels que tu souhaites installer ?


Conseils pour les nouveaux demandeurs et pas qu'eux
Important : Pensez à passer vos sujets en [Résolu] 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

#12 Le 29/09/2019, à 20:58

poumtatalia

Re : ubuntu 18.04 - unable to install: cannot perform the following task:

Tous. La par exemple...
- WPS Office
Signal desktop
- IRCCloud
- Ace Stream Player
- ...

Chaque fois le même message quand je lance l'install de X:

Unable to install X:
cannot perform the following tasks:

ET pas de tâche listée.... Mystère et boule de gomme...


Toujours sur du LTS, en ce moment Ubuntu 20.04...

Hors ligne

#13 Le 29/09/2019, à 21:04

xubu1957

Re : ubuntu 18.04 - unable to install: cannot perform the following task:

Montre :

snap list --all

Conseils pour les nouveaux demandeurs et pas qu'eux
Important : Pensez à passer vos sujets en [Résolu] 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

#14 Le 29/09/2019, à 21:14

poumtatalia

Re : ubuntu 18.04 - unable to install: cannot perform the following task:

$ snap list --all
Name                  Version                     Rev   Tracking  Publisher   Notes
canonical-livepatch   9.4.1                       81    stable    canonical✓  -
canonical-livepatch   9.3.0                       77    stable    canonical✓  disabled
core                  16-2.40                     7396  stable    canonical✓  core,disabled
core                  16-2.41                     7713  stable    canonical✓  core
core18                20190827                    1098  stable    canonical✓  base,disabled
core18                20190904                    1144  stable    canonical✓  base
gnome-3-26-1604       3.26.0.20190705             90    stable/…  canonical✓  disabled
gnome-3-26-1604       3.26.0.20190830             92    stable/…  canonical✓  -
gnome-3-28-1804       3.28.0-10-gaa70833.aa70833  71    stable    canonical✓  -
gnome-3-28-1804       3.28.0-10-gaa70833.aa70833  67    stable    canonical✓  disabled
gnome-calculator      3.34.0+git1.822e4b58        501   stable/…  canonical✓  -
gnome-calculator      3.32.1                      406   stable/…  canonical✓  disabled
gnome-characters      v3.32.1+git2.3367201        317   stable/…  canonical✓  -
gnome-characters      v3.32.1+git2.3367201        296   stable/…  canonical✓  disabled
gnome-logs            3.34.0                      73    stable/…  canonical✓  -
gnome-logs            3.32.0-4-ge8f3f37ca8        61    stable/…  canonical✓  disabled
gnome-system-monitor  3.32.1-3-g0ea89b4922        100   stable/…  canonical✓  -
gnome-system-monitor  3.32.1-2-ga7c19eaeff        95    stable/…  canonical✓  disabled
gtk-common-themes     0.1-16-g2287c87             1198  stable    canonical✓  disabled
gtk-common-themes     0.1-22-gab0a26b             1313  stable    canonical✓  -
ora                   2.0.45                      91    stable    ora-pm✓     disabled
ora                   2.0.47                      93    stable    ora-pm✓     -

Toujours sur du LTS, en ce moment Ubuntu 20.04...

Hors ligne

#15 Le 29/09/2019, à 21:18

xubu1957

Re : ubuntu 18.04 - unable to install: cannot perform the following task:

Pour alléger :

Le 27/09/2019, moko138 a écrit :

Supprime les snap périmés ("désactivé"s ou "disabled"s) : montre le retour de la commande de nany, ./viewtopic.php?pid=22083683#p22083683, du 17/4/2019.


Conseils pour les nouveaux demandeurs et pas qu'eux
Important : Pensez à passer vos sujets en [Résolu] 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

#16 Le 29/09/2019, à 21:25

poumtatalia

Re : ubuntu 18.04 - unable to install: cannot perform the following task:

$ echo && snap list --all && echo && df -Th | grep -Ev "tmpfs|squashfs"

Name                  Version                     Rev   Tracking  Publisher   Notes
canonical-livepatch   9.3.0                       77    stable    canonical✓  disabled
canonical-livepatch   9.4.1                       81    stable    canonical✓  -
core                  16-2.41                     7713  stable    canonical✓  core
core                  16-2.40                     7396  stable    canonical✓  core,disabled
core18                20190827                    1098  stable    canonical✓  base,disabled
core18                20190904                    1144  stable    canonical✓  base
gnome-3-26-1604       3.26.0.20190705             90    stable/…  canonical✓  disabled
gnome-3-26-1604       3.26.0.20190830             92    stable/…  canonical✓  -
gnome-3-28-1804       3.28.0-10-gaa70833.aa70833  71    stable    canonical✓  -
gnome-3-28-1804       3.28.0-10-gaa70833.aa70833  67    stable    canonical✓  disabled
gnome-calculator      3.34.0+git1.822e4b58        501   stable/…  canonical✓  -
gnome-calculator      3.32.1                      406   stable/…  canonical✓  disabled
gnome-characters      v3.32.1+git2.3367201        296   stable/…  canonical✓  disabled
gnome-characters      v3.32.1+git2.3367201        317   stable/…  canonical✓  -
gnome-logs            3.34.0                      73    stable/…  canonical✓  -
gnome-logs            3.32.0-4-ge8f3f37ca8        61    stable/…  canonical✓  disabled
gnome-system-monitor  3.32.1-3-g0ea89b4922        100   stable/…  canonical✓  -
gnome-system-monitor  3.32.1-2-ga7c19eaeff        95    stable/…  canonical✓  disabled
gtk-common-themes     0.1-22-gab0a26b             1313  stable    canonical✓  -
gtk-common-themes     0.1-16-g2287c87             1198  stable    canonical✓  disabled
ora                   2.0.47                      93    stable    ora-pm✓     -
ora                   2.0.45                      91    stable    ora-pm✓     disabled

Filesystem                  Type      Size  Used Avail Use% Mounted on
/dev/mapper/ubuntu--vg-root ext4      2,7T  1,4T  1,2T  55% /
/dev/sda2                   ext2      473M  112M  337M  25% /boot
$ sudo apt clean && snap list --all | awk 'BEGIN {print "#! /bin/sh\n"} ; /désactivé|disabled/ {print "snap remove "$1" --revision "$3"\n"} ; END {print "exit 0"}' > script && chmod +x script && ./script && rm script && echo && snap list --all && echo && df -Th | grep -Ev "tmpfs|squashfs"
[sudo] password for pouma: 
canonical-livepatch (revision 77) removed
core (revision 7396) removed
core18 (revision 1098) removed
gnome-3-26-1604 (revision 90) removed
gnome-3-28-1804 (revision 67) removed
gnome-calculator (revision 406) removed
gnome-characters (revision 296) removed
gnome-logs (revision 61) removed
gnome-system-monitor (revision 95) removed
gtk-common-themes (revision 1198) removed
ora (revision 91) removed

Name                  Version                     Rev   Tracking  Publisher   Notes
canonical-livepatch   9.4.1                       81    stable    canonical✓  -
core                  16-2.41                     7713  stable    canonical✓  core
core18                20190904                    1144  stable    canonical✓  base
gnome-3-26-1604       3.26.0.20190830             92    stable/…  canonical✓  -
gnome-3-28-1804       3.28.0-10-gaa70833.aa70833  71    stable    canonical✓  -
gnome-calculator      3.34.0+git1.822e4b58        501   stable/…  canonical✓  -
gnome-characters      v3.32.1+git2.3367201        317   stable/…  canonical✓  -
gnome-logs            3.34.0                      73    stable/…  canonical✓  -
gnome-system-monitor  3.32.1-3-g0ea89b4922        100   stable/…  canonical✓  -
gtk-common-themes     0.1-22-gab0a26b             1313  stable    canonical✓  -
ora                   2.0.47                      93    stable    ora-pm✓     -

Filesystem                  Type      Size  Used Avail Use% Mounted on
/dev/mapper/ubuntu--vg-root ext4      2,7T  1,4T  1,2T  55% /
/dev/sda2                   ext2      473M  112M  337M  25% /boot

Toujours sur du LTS, en ce moment Ubuntu 20.04...

Hors ligne

#17 Le 29/09/2019, à 21:31

xubu1957

Re : ubuntu 18.04 - unable to install: cannot perform the following task:

Les logiciels cités au #12, je ne les connais pas.

Il faut attendre d'autres intervenants.


Conseils pour les nouveaux demandeurs et pas qu'eux
Important : Pensez à passer vos sujets en [Résolu] 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

#18 Le 29/09/2019, à 21:45

xubu1957

Re : ubuntu 18.04 - unable to install: cannot perform the following task:

Que retourne la simulation :

sudo apt-get -s dist-upgrade

?


Conseils pour les nouveaux demandeurs et pas qu'eux
Important : Pensez à passer vos sujets en [Résolu] 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

#19 Le 29/09/2019, à 21:47

poumtatalia

Re : ubuntu 18.04 - unable to install: cannot perform the following task:

Je citais les softs du 12, mais aucun logiciel ne s'installe.

$ sudo apt-get -s dist-upgrade
[sudo] password for xx: 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Calculating upgrade... Done
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.

Toujours sur du LTS, en ce moment Ubuntu 20.04...

Hors ligne

#20 Le 29/09/2019, à 21:50

xubu1957

Re : ubuntu 18.04 - unable to install: cannot perform the following task:

Tu peux montrer :

sudo apt update

?


Conseils pour les nouveaux demandeurs et pas qu'eux
Important : Pensez à passer vos sujets en [Résolu] 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

#21 Le 29/09/2019, à 22:04

poumtatalia

Re : ubuntu 18.04 - unable to install: cannot perform the following task:

$ sudo apt update
[sudo] password for pouma: 
Hit:1 http://archive.canonical.com/ubuntu bionic InRelease
Hit:2 http://fr.archive.ubuntu.com/ubuntu bionic InRelease                     
Hit:3 http://fr.archive.ubuntu.com/ubuntu bionic-security InRelease            
Get:4 http://fr.archive.ubuntu.com/ubuntu bionic-updates InRelease [88,7 kB]   
Ign:5 http://dl.google.com/linux/earth/deb stable InRelease                    
Hit:6 http://fr.archive.ubuntu.com/ubuntu bionic-backports InRelease           
Hit:7 http://dl.google.com/linux/earth/deb stable Release                      
Get:8 https://mega.nz/linux/MEGAsync/xUbuntu_18.04 ./ InRelease [1310 B]      
Fetched 90,0 kB in 2s (59,6 kB/s)                                            
Reading package lists... Done
Building dependency tree       
Reading state information... Done
All packages are up to date.
N: Skipping acquire of configured file 'main/binary-i386/Packages' as repository 'http://dl.google.com/linux/earth/deb stable InRelease' doesn't support architecture 'i386'
$ sudo apt upgrade
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Calculating upgrade... Done
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.

Dernière modification par poumtatalia (Le 29/09/2019, à 22:05)


Toujours sur du LTS, en ce moment Ubuntu 20.04...

Hors ligne

#22 Le 29/09/2019, à 22:11

xubu1957

Re : ubuntu 18.04 - unable to install: cannot perform the following task:

Je sèche !

Il faut des aidants pointus.


Conseils pour les nouveaux demandeurs et pas qu'eux
Important : Pensez à passer vos sujets en [Résolu] 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

#23 Le 29/09/2019, à 22:12

poumtatalia

Re : ubuntu 18.04 - unable to install: cannot perform the following task:

Merci pour ton aide quand même wink
Bonne soirée


Toujours sur du LTS, en ce moment Ubuntu 20.04...

Hors ligne

#24 Le 29/09/2019, à 22:14

xubu1957

Re : ubuntu 18.04 - unable to install: cannot perform the following task:

Bonne soirée. smile


Conseils pour les nouveaux demandeurs et pas qu'eux
Important : Pensez à passer vos sujets en [Résolu] 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

#25 Le 30/09/2019, à 19:50

poumtatalia

Re : ubuntu 18.04 - unable to install: cannot perform the following task:

Bonjour,

Malgré ces quelques tests, toujours rien ne s'installe);
Je retombe toujours sur

Unable to install X:
cannot perform the following tasks:

Des idées ?


Toujours sur du LTS, en ce moment Ubuntu 20.04...

Hors ligne