web-dev-qa-db-ja.com

試してから、DeepInddeを削除してから何もインストールできません

私はUbuntu 20.04です。私のシステムですべてをパージすると、私がターミナルから何かをインストールしようとしているたびにすべてをパージして、 "deepin-anything-server"と呼ばれるものを削除しようとしています。

例:

The following additional packages will be installed:
  clamav-base clamav-freshclam libclamav9 libtfm1
Suggested packages:
  clamav-docs libclamunrar9
The following packages will be REMOVED:
  deepin-anything-server
The following NEW packages will be installed:
  clamav clamav-base clamav-freshclam libclamav9 libtfm1
0 upgraded, 5 newly installed, 1 to remove and 0 not upgraded.
2 not fully installed or removed.
Need to get 0 B/1,135 kB of archives.
After this operation, 3,450 kB of additional disk space will be used.
Do you want to continue? [Y/n]

だから私はyを押して、それはそのことです。しかし、このエラーが発生するすべての時間が起こります。

Preconfiguring packages ...
(Reading database ... 339973 files and directories currently installed.)
Removing deepin-anything-server (5.0.1-4) ...
userdel: user 'deepin-anything-server' does not exist
Failed on delete user deepin-anything-server
dpkg: error processing package deepin-anything-server (--remove):
 installed deepin-anything-server package post-removal script subprocess returne
d error exit status 1
dpkg: too many errors, stopping
Errors were encountered while processing:
 deepin-anything-server
Processing was halted because there were too many errors.
E: Sub-process /usr/bin/dpkg returned an error code (1)"

この「deepin-anything-server "を自分自身で削除しようとするか、" Sudo dpkg --configure -a "のようなものを試してみると、同じエラーが表示されます。私はnoobに親切で、何をすべきかわかりません。あらゆる助けが大いに感謝されるでしょう。

1
mededogen

問題を解決するための最も簡単な方法は、低レベルのパッケージの取り外しです。

Sudo dpkg --purge --force-all deepin-anything-server 
 _

その後、パッケージ構成を再開します

Sudo dpkg --configure -a
Sudo apt-get install -f
 _
3
N0rbert