When a process locks the debconf config.dat file, you may get this error.
The solution of this error is identifying the process and killing it. You can find the guilty process wtih this command:
sudo fuser -v /var/cache/debconf/config.datYou will get an PID on the screen.
And you can use this PID in the following command:
sudo kill THAT_PID_NUMBER_GOT_ABOVE_COMMANDor you can just use the following code tokill the process without seeing PID number:sudo fuser -v -k /var/cache/debconf/config.datAll these info has been taken from askubuntu community.
Comments
Post a Comment