分页: 1 / 1

[问题]关于tar.bz2的安装问题,请教一下.

发表于 : 2007-11-15 16:12
kakakaxi
下面的代码是一个make文件,我在终端中运行安装,出现
"Failed: No firmware directory found
make: *** [install] 错误 1
"这样的错误,请教大家,如下代码具体代表什么意思阿?我就看到一大堆的地址 = =


FIRMWARE=zd1201.fw zd1201-ap.fw

INSTALL = cp -p -f

default: install

install:
@echo -n " INSTALL" ${FIRMWARE}
@test -d /etc/firmware \
&& $(INSTALL) ${FIRMWARE} /etc/firmware \
&& echo " =>" /etc/firmware/ \
|| test -d /usr/lib/hotplug/firmware \
&& $(INSTALL) ${FIRMWARE} /usr/lib/hotplug/firmware \
&& echo " =>" /usr/lib/hotplug/firmware/ \
|| ( echo && echo "Failed: No firmware directory found" && false )

发表于 : 2007-11-15 16:24
leeaman
这个东西请认真看里面的readme.txt or install.txt

发表于 : 2007-11-15 16:33
kakakaxi
恩,我有看过。。可是和安装似乎一点关系都没有= =。
就一个readme,贴在下面了。。希望你的帮助~。~

This package contains the firmware needed for the zd1201 devices to work.
Simply typing 'make' as root (or using 'su') should install the two firmware
files in the proper firmware directory used by the hotplug scripts.

This package contains two files, zd1201.fw is the firmware file for using the
device as a normal 802.11b client. The file zd1201-ap.fw is used to put the
device in access point mode.

Please send questions to the sourceforge forum (in case of problems add 'dmesg'
output) at http://linux-lc100020.sourceforge.net/

Jeroen Vreeken, pe1rxq@amsat.org

发表于 : 2007-11-15 16:38
leeaman
1.你有没有那个东西
This package contains the firmware needed for the zd1201 devices to work.
2.你有没有用root的权限来执行命令
typing 'make' as root (or using 'su') should install the two firmware
files in the proper firmware directory used by the hotplug scripts.

发表于 : 2007-11-15 16:46
kakakaxi
1。我有,那东西是我的无线网卡(这个程序是他的驱动)
2。我sudo下执行的,,请教。。make文件中的代码是什么意思阿?

发表于 : 2007-11-15 16:47
kakakaxi
驱动的具体地址是:http://sourceforge.net/project/download ... uperb-east
麻烦帮忙看看,谢~

发表于 : 2007-11-15 16:49
chattan
Linux下软件安装、卸载的常见方法

http://ubuntulinux.yo2.cn/archives/516382

发表于 : 2007-11-15 17:19
kakakaxi
看过了,暂时没有什么可参考性,下载的程序都没有
configure文件。。。有一个makefile,但是也执行有问题。。