0
sudo apt update

Can anyone help resolve this?

ERROR:
Fatal error: E: Problem executing scripts APT::Update::Post-Invoke-Success 'if /usr/b
in/test -w /var/lib/command-not-found/ -a -e /usr/lib/cnf-update-db; then /usr/lib/cn
f-update-db > /dev/null; fi'
E: Sub-process returned an error code

File exists:

desktop:/usr/lib$ ls cnf-update-db 
cnf-update-db

File contents:

#!/usr/bin/python3

import glob import logging import os import sys

from CommandNotFound.db.creator import DbCreator from CommandNotFound import CommandNotFound

if name == "main": if "--debug" in sys.argv[1:]: logging.basicConfig(level=logging.DEBUG) elif "--verbose" in sys.argv[1:]: logging.basicConfig(level=logging.INFO)

db = CommandNotFound.dbpath
if not os.access(os.path.dirname(db), os.W_OK):
    print("datbase directory %s not writable" % db)
    sys.exit(0)

command_files = glob.glob("/var/lib/apt/lists/*Commands-*")
if len(command_files) > 0:
    col = DbCreator(command_files)
    col.create(db)

muru
  • 197,895
  • 55
  • 485
  • 740

0 Answers0