Dpkg:serious warning:files list file for package ' ******** ' missing, assuming package have no files currently installed.
This error typically occurs when you install the Deb package using Dpkg-i, and you delete all of the program's related directories and files, but the DPKG library still retains information about the program.
Therefore, when the apt command is executed, the dpkg self-test will find the relevant file is lost, and then report the error in the title.
Here's how to fix it:
Dpkg-l | grep * * * * #检查当前dpkg库中残留的文件安装信息
sudo dpkg-r * * * * * * * * #手动删除所有包, this step may still have related error messages reported
sudo dpkg-p * * * * * * * #这一步很重要, completely erase any * * * Package Related information
Re-execute Dpkg-l | grep * * * should not have any error message, and then perform other installation procedures, will not error.
LINUX apt-get installation software times dpkg error