昨天我安装了lubuntu,注意到粉丝们没有工作,我想尝试一下kevbelisle提出的解决方案。
http://ubuntuforums.org/showthread.php?t=2002668&s=eb1f4490555e8eda4a27df22fdf9708d&p=12024845#post12024845
所以,我已经下载了makefile和它的87.c文件,并将它们放到桌面上,我不知道下一步该如何做。
有谁能打破凯贝里所做的进一步的步骤吗?
谢谢。
我删除了make文件中的.txt并重新执行所有步骤。这是我得到的
make[1]: Entering directory `/usr/src/linux-headers-3.13.0-43-generic'
/usr/src/linux-headers-3.13.0-43-generic/arch/x86/Makefile:98: stack protector enabled but no compiler support
/usr/src/linux-headers-3.13.0-43-generic/arch/x86/Makefile:113: CONFIG_X86_X32 enabled but no binutils support
make[1]: gcc: Command not found
CC [M] /home/analog/Desktop/New/it87.o
/bin/sh: 1: gcc: not found
make[2]: *** [/home/analog/Desktop/New/it87.o] Error 127
make[1]: *** [_module_/home/analog/Desktop/New] Error 2
make[1]: Leaving directory `/usr/src/linux-headers-3.13.0-43-generic'
make: *** [modules] Error 2发布于 2014-12-21 08:03:05
错误信息显示缺少,让gcc等安装build-essential元软件包,以获得开发工具。
sudo apt-get install build-essential发布于 2014-12-21 02:21:49
it87内核模块位于linux-image-extra包中。
sudo apt-get install linux-image-extra-$(uname -r)发布于 2014-12-20 23:45:53
打开终端,导航到要安装的设备的基本目录,然后只需键入
./configure && make && sudo make installhttps://askubuntu.com/questions/563832
复制相似问题