处理时遇到错误:jitsi-meet-tokens

我已经使用Ubuntu几年了,但我刚刚安装了16.04版本,而且我遇到了很多问题。 我不是命令行专家,但我昨晚试图安装一些软件,它正在创建问题(也没有正常工作)。

当我运行sudo apt-get -f install ,我看到以下消息:

 Reading package lists... Done Building dependency tree Reading state information... Done Correcting dependencies... Done The following additional packages will be installed: lua-event lua-expat lua-filesystem lua-sec lua-socket lua5.1 prosody Suggested packages: lua-zlib lua-dbi-postgresql lua-dbi-mysql lua-dbi-sqlite3 The following packages will be REMOVED: jitsi-meet-tokens The following NEW packages will be installed: lua-event lua-expat lua-filesystem lua-sec lua-socket lua5.1 prosody 0 upgraded, 7 newly installed, 1 to remove and 22 not upgraded. 3 not fully installed or removed. Need to get 0 B/413 kB of archives. After this operation, 2,296 kB of additional disk space will be used. Do you want to continue? [Y/n] Y (Reading database ... 176266 files and directories currently installed.) Removing jitsi-meet-tokens (1.0.962-1) ... dpkg: error processing package jitsi-meet-tokens (--remove): subprocess installed post-removal script returned error exit status 10 Errors were encountered while processing: jitsi-meet-tokens E: Sub-process /usr/bin/dpkg returned an error code (1) 

有人可以帮我弄清楚我需要做些什么才能解决这个问题? 删除jitsi我很好,但我不确定这是否能解决问题。

目前有一个红色圆圈,右上角有一条直线,表示可能安装了包含未满足依赖关系的包。

如果没有其他工作,试试这个。 首先,备份您的状态文件:

 sudo cp /var/lib/dpkg/status /var/lib/dpkg/status_bk 

使用您喜欢的文本编辑器打开当前状态文件

 sudo nano /var/lib/dpkg/status 

查找并删除有关要删除的包的所有文本,在这种情况下:

 Package: jitsi-meet-tokens Status: deinstall ok half-installed Priority: extra Section: net Installed-Size: 53 Maintainer: Jitsi Team  Architecture: all Source: jitsi-meet Version: 1.0.1073-1 Depends: debconf (>= 0.5) | debconf-2.0, prosody-trunk (>= 1nightly607), libssl-dev, luarocks, jitsi-meet-prosody Description: Prosody token authentication plugin for Jitsi Meet Homepage: https://jitsi.org/meet 

保存,退出并运行

 sudo apt-get update 

来源: Linux Mint论坛

你有一个损坏的jitsi安装。 我们可以通过分析来确定出现了什么问题,但是由于您满足于删除jitsi,因此只需删除它并整理您的存储库就更简单了。

 sudo apt-get purge jitsi* sudu apt-get autoremove sudo apt-get update