bash: ubuntu-drivers: command not found
时间: 2023-12-07 14:38:42 浏览: 300
Linux -bash: ls: command not found
这个问题通常是由于缺少ubuntu-drivers-common软件包导致的。你可以通过以下步骤来解决这个问题:
1.打开终端并使用以下命令更新软件包列表:
```shell
sudo apt-get update
```
2.使用以下命令安装ubuntu-drivers-common软件包:
```shell
sudo apt-get install ubuntu-drivers-common
```
3.安装完成后,尝试再次运行ubuntu-drivers命令,应该不再出现“command not found”的错误。
阅读全文