-bash: armbian-config: command not found
时间: 2023-11-23 12:53:44 浏览: 249
这个错误提示表明你的系统中没有安装armbian-config命令。根据引用[2]提供的信息,你可以通过运行以下命令来安装armbian-config:
```
apt install ntp
apt install armbian-config
```
如果你已经安装了Armbian_5.99_Aml-s805_Debian_buster_default_3.10.108_minimal.img版本,但仍然无法启动armbian-config,那么可能是因为该版本中没有包含该命令。你可以尝试更新你的系统并重新安装armbian-config来解决这个问题。
相关问题
-bash: yum-config-manager: command not found
这是一个错误提示,意思是找不到 yum-config-manager 命令。可能是因为你的系统没有安装 yum 或者该命令所在的路径没有被添加到系统的环境变量中。你可以尝试安装 yum 或者检查一下环境变量设置是否正确。
$ gcc test2.c `pkg-config --cflags --libs gtk+-3.0` -o test2.exe -bash: pkg-config: command not found -bash: gcc: command not found
这个错误提示说明你没有安装 GCC 编译器和 pkg-config 工具,可以按照以下步骤安装:
1. 打开 MSYS2 的终端,执行以下命令,更新软件包列表:
```
pacman -Syu
```
2. 安装 GCC 和其他必要的工具:
```
pacman -S gcc make pkg-config
```
这个命令会同时安装 GCC、make 和 pkg-config 工具。
3. 安装 GTK+3 开发包:
```
pacman -S mingw-w64-x86_64-gtk3
```
这个命令会安装 GTK+3 开发包及其依赖库。
安装完成后,重新打开一个 MSYS2 终端,执行编译命令:
```
gcc test2.c `pkg-config --cflags --libs gtk+-3.0` -o test2.exe
```
现在应该可以成功编译了。
阅读全文
相关推荐















