我正在尝试构建包,但收到此依赖项缺失消息:
NOTE: If your system has logged the missing packages required for installation, install them in the order as per the log file to resolve package-dependency issues.
Check if system has the tools required for Packages Generation.
To build kernel modules of AMD, system needs Kernel-Development package to be installed
Please run command: sudo zypper install kernel-devel <we presume, you have DVD in the CD driver>
One or more tools required for Graphics Pacakges Generation are not found on the system. Recommended is to install the required tools for successful package generation.
Optionally, you can run commands to ignore these dependecies but end result may not be as expected. Not recommended
我已经安装了 4.2.0-18-generic 内核的头文件,并根据这篇文章解决了缺少的“version.h” 。但是无法继续构建 ATI 驱动程序...
有人可以帮忙吗!?
我遇到了同样的问题,并按照此页面中的说明解决了它。该页面是用西班牙语写的,但所有命令都是英文的,所以非常简单。
根据此页面,Ubuntu/wily AMD 安装脚本中存在错误。这就是您无法安装新驱动程序的原因。
只是为了警告你,命令
可能需要几分钟才能完成,所以不要认为终端被冻结了。
命令中也有一点错误
正确的命令是
希望对您有所帮助!
看起来您正在尝试使用 GUI 构建包。
GUI 使用文件列表而不是 dpkg 检查依赖关系。这是一个糟糕的方法,并且会破坏某些内核更新。解决方案是简单地从命令提示符运行构建包。
此外,正如其他人在上面提到的,您不应该依赖工具为您安装软件包,因为脚本充其量也是有问题的。
只需使用“
dpkg -i ./fglrx*.deb
”代替。