0

I am trying to play a DVD movie using VLC.

I did this.

sudo apt install libdvdcss2

Then this.

sudo dpkg-reconfigure libdvd-pkg
[sudo] password for andy: 
debconf: DbDriver "config": /var/cache/debconf/config.dat is locked by another process: Resource temporarily unavailable

Can someone help me ?

Thanks.

fixit7
  • 3,399

1 Answers1

1

You can resolve the problem by running the following command:

sudo fuser -v -k /var/cache/debconf/config.dat

This command checks which program is using the following file (/var/cache/debconf/config.dat) and kills the process.

Eventually if it doesn't work you can kill the process using the sudo kill command.