Search This Blog

Friday, December 31, 2010

INSTALLATION OF ETHERNET DRIVER ON SOLARIS 10 x86 MACHINE

Do these steps

1.#prtconf -v | more

search for the string /ther

search for device-id and vendor-id numbers(make sure its under Ethernet controller)
once you have got it (say some 001094c)

2.Download the driver from this site(say ur driver is ife0)
http://homepage2.nifty.com/mrym3/taiyodo/eng/
- extract it

3.vi <path_to_extracted_folder>/addrv.sh
you will be getting pci8086 1094c

well...if you have a match your work id done or else search for another driver and do the same procedure again
- download
- match it with addrv.sh file

4.#isainfo -n   //it should be
amd64

5.#mv Makefile.amd64_gcc Makefile

6.#ln -s amd64 obj

7.#export PATH=/usr/ccs/bin/:PATH  //append make command to the path

or else you can also use
#/usr/ccs/bin/make

8.#make install //if you have set the path or else /usr/ccs/bin/make

9.#./addrv.sh

10.#modload ife

11.#ifconfig ife0 plumb

12.#ifconfig -a   //if ife0 driver is installed then in the output you will find it

13.#echo "192.168.1.1" > /etc/defaultrouter

14.#echo "nameserver 8.8.8.8" > /etc/resolv.conf

15.#touch /etc/dhcp.ife0

16.#ifconfig ife0 dhcp start

or in case of static ip

#ifconfig ife0 192.168.1.7 netmask 255.255.255.0 up

17.#ifconfig -a  //check if the ip is set

18.#reboot

No comments:

Post a Comment