thedark Second Lieutenant
Joined: 30 Jul 2005
Posts: 1074
|
Posted: Sun Jul 31, 2005 8:09 am Post subject: Solaris > How to configure LAN Card (NIC) |
|
|
1) UNZIP or untar the driver
# gunzip -cd driver-x.y.z.tar.gz | tar xf –
2) Install the driver by running special install script, for e.g.
# sh install
OR
# chmod +x install; ./install
3) Or you can also try out as follows to install driver:
# /usr/ccs/bin/make install
4) Or if driver in package format then install it using pkgadd command:
# buzip2 driver.bz2
# pkgadd –d driver
5) Open /etc/hostname.driver0 i.e. if your lan card driver name it tu or rtls then you can set up the ip address as follows:
# vi /etc/hostname.tu0
192.168.1.1
OR
# vi /etc/hostname.rtls0
192.168.1.1
6) Then restart the computer by typing command:
# init 6 |
|