Ubuntuでパッケージを再インストールできない

Ubuntuでパッケージを再インストールできない

コマンドの実行中に、sudo dpkg -C次のような結果が得られます。

The following packages are in a mess due to serious problems during
installation.  They must be reinstalled for them (and any packages
that depend on them) to function properly:
 nemo-data            File manager and graphical shell for Cinnamon (data files
 python3-apt          Python 3 interface to libapt-pkg
 python3-distupgrade  manage release upgrades
 python3-software-properties manage the repositories that you install software 
 python3-twisted      Event-based framework for internet applications
 python3-uno          Python-UNO bridge
 python3-update-manager python 3.x module for update-manager
 software-properties-common manage the repositories that you install software f
 software-properties-gtk manage the repositories that you install software from
 systemd              system and service manager
 ubuntu-advantage-tools management tools for Ubuntu Advantage
 ubuntu-drivers-common Detect and install additional Ubuntu driver packages
 update-manager       GNOME application that manages apt updates

上記のパッケージを再インストールしようとしましたが、そうすると次のメッセージが表示されます。E: The package python3-software-properties needs to be reinstalled, but I can't find an archive for it.

Ubuntu自体を再インストールせずにこれらのパッケージをすべて再インストールする方法はありますか?

アップデート:ありがとうガーゲン、私はこの問題を解決するための洞察を得ることができました。残念ながら、ある時点でデスクトップがシャットダウンしてGUIをロードできませんでした(ログイン画面はまったく表示されませんでした)。若干のハッキングでターミナルに接続できました。

しかし今は再び詰まっています。今回は下記のようなメッセージをいただきました。

注文する:dpkg -C

返信 -

The following packages have been unpacked but not yet configured.
They must be configured using dpkg --configure or the configure
menu option in dselect for them to work:
 ubuntu-desktop       The Ubuntu desktop system
 ubuntu-desktop-minimal The Ubuntu desktop minimal system
 ubuntu-release-upgrader-gtk manage release upgrades
 update-manager       GNOME application that manages apt updates
 update-notifier      Daemon which notifies about package updates

update-notifier-commonこれらのパッケージのほとんどは、インストールしようとしている時点によって異なります。ただし、次のメッセージが表示されます。

(Reading database ... 264324 files and directories currently installed.)
Preparing to unpack update-notifier-common_3.192.30_all.deb ...
Unpacking update-notifier-common (3.192.30) over (3.192.30) ...
Setting up update-notifier-common (3.192.30) ...
Traceback (most recent call last):
  File "/usr/lib/update-notifier/package-data-downloader", line 24, in <module>
    import debian.deb822
ModuleNotFoundError: No module named 'debian'
dpkg: error processing package update-notifier-common (--install):
 installed update-notifier-common package post-installation script subprocess returned error exit status 1
Errors were encountered while processing:
 update-notifier-common

私のシステムにありますが、debianまだ上記のメッセージが表示されます。

ベストアンサー1

努力する:

sudo apt --fix-broken install

これは、破損したパッケージを再インストールするためによく使用されるコマンドです。次のことを試すこともできます。

sudo apt install -f

おすすめ記事