arbitrary `ls-al` crashes command-not-found on 20.04
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
command-not-found |
New
|
Undecided
|
Unassigned |
Bug Description
ls-al, as far as I can tell, isn't a real program, and I simply mistyped `ls -al` and command-not-found spat out an error and told me to report it. This is done as a normal, nonroot user.
$ ls-al
Sorry, command-not-found has crashed! Please file a bug report at:
https:/
Please include the following information with the report:
command-not-found version: 0.3
Python version: 3.8.2 final 0
Distributor ID: Ubuntu
Description: Ubuntu 20.04 LTS
Release: 20.04
Codename: focal
Exception information:
unable to open database file
Traceback (most recent call last):
File "/usr/lib/
callback()
File "/usr/lib/
cnf = CommandNotFound
File "/usr/lib/
self.db = SqliteDatabase(
File "/usr/lib/
self.con = sqlite3.
sqlite3.
$ uname -a
Linux homeserv 5.4.0-37-generic #41-Ubuntu SMP Wed Jun 3 18:57:02 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux
$ locale
LANG=en_US.UTF-8
LANGUAGE=
LC_CTYPE=
LC_NUMERIC=
LC_TIME=
LC_COLLATE=
LC_MONETARY=
LC_MESSAGES=
LC_PAPER=
LC_NAME=
LC_ADDRESS=
LC_TELEPHONE=
LC_MEASUREMENT=
LC_IDENTIFICATI
LC_ALL=
$ cat .bash_aliases
alias ls="ls --color=auto"
alias l="ls -al --color=auto"
alias ll="ls -al --color=auto"
alias dir="ls -ld --color=auto */"
alias df="df -h"
alias del="rm -i"
alias copy="cp -i"
alias rename="mv -i"
alias move="mv -i"