|
发表于 2003-1-19 08:58:12
|
显示全部楼层
The latest Card Services version for the LAN card is available at
www.sourceforge.net/project/.
To install the PCMCIA Card Services, you need to install a full kernel source and perform the following shell commands:
1. Download the "pcmcia-cs-x.tar.gz" into the
"/usr/src" directory.
2. Run the following commands:
[code:1]
#cd /usr/src
#tar zxvf pcmcia-cs-x.tar.gz
#cd pcmcia-cs-x
#./Configure
#make all
#make install
[/code:1]
Configuring LAN cards
For LAN card users, you need to edit the file
"/etc/pcmcia/network.opts" to assign IP address, netmask, gateway IP,
nameservers,broadcast address, and etc.
The file will display as follows when it's being edited:
[code:1]
#File: /etc/pcmcia/network.opts
#
#
#
#Host's IP address, netmask, network address, broadcast address
IPADDR="203.66.99.137"
NETMASK="255.255.255.128"
NETWORK="203.66.99.0"
BROADCAST="203.66.99.255"
#Gateway address for static routing
GATEWAY="203.66.99.254"
#Things to add to /etc/resolv.conf for this interface
DOMAIN="your.domain"
SEARCH=""
DNS_1="168.95.1.1"
DNS_2="168.95.192.1"
DNS_3="203.66.99.251"
#
#
[/code:1]
Be sure to restart the Linux machine after installing the Card Services.
Now the PCMCIA Card Services should be installed correctly.
If not, see the "PCMCIA-HOWTO" for the details in the root directory of the Card Services source code to resolve installation and configuraton problems.
BTW: Can you read Simplified Chinese? Do you understand what the following message says?
多嘴问一句, 你会看简体中文吗? 知道简体字的人一般也都会繁体, 但反之就不一定了. |
|