|
在红旗3.2下安装TP-Link 的TM-IP5600 MODEM
首先下载 TP5600 MODEM 的驱动程序 for Redhat8.0(内核为2.4x。主意:for redhat7.x的适应内核为2.2.16,红旗3.2不可用。)
(需要在 root 权限下进行)
解压缩到目录 ~/tp5600 ,修改目录中的 Makefile 文件:
原文件内容为:
# Path to your kernel's includes
ifndef KERNEL_INCLUDES
KERNEL_INCLUDES:= /usr/src/linux/include #######注意修改此处
endif
INCLUDES := -I. -I$(KERNEL_INCLUDES)
ifndef MODVERSIONS_FLAGS
MODVERSIONS_FLAGS= -DMODVERSIONS --include $(KERNEL_INCLUDES)/linux/modversions.h
endif
修改后为:
# Path to your kernel's includes
ifndef KERNEL_INCLUDES
KERNEL_INCLUDES:= /usr/src/linux-2.4/include #######注意已经修改
endif
INCLUDES := -I. -I$(KERNEL_INCLUDES)
ifndef MODVERSIONS_FLAGS
MODVERSIONS_FLAGS= -DMODVERSIONS --include $(KERNEL_INCLUDES)/linux/modversions.h
endif
执行编译 #make
执行安装
#### 如果使用 AMR/CNR/PCI 接口,请执行
#make install-amr
####如果使用 USB 接口,请执行
#make install-usb
安装过程会在相应的目录加入相应的库文件,并且修改配置文件 /etc/modules.conf 增加如下内容
alias char-major-212 slmodem
alias slmodem slamrmo
如果需要可加入国家标识
options slmdm country=<MyCountry>
重新起动你的爱机,准备让你的企鹅骑着“猫”冲浪吧!
如需卸载请执行 #make uninstall |
|