Installing nfo-1.1.2 ethernet driver in Solaris 10 3/05

Hi,
I'm totally new to Solaris and need to install this ethernet driver but I don't know how to do it.
If you can help me, please do it in a step-by step manner because as I said, besides being dumb I'm also new to Solaris. My processor is an AMD ATHLON 64.
By the way I like the looks of this OS, the way it boots up, and its security and reliability.
Thank you very much for your help.

Thanks,
The tutorial did not help me much. Acccording to the author of the driver this is what I have to do in order to compile it:
CAUTION: There is NO WARRANTY for this software.
As this software is loaded into the kernel, it might cause the kernel to
panic or hang.
Masayuki Murayama
[email protected]
1. Introduction
This is the nForce ethernet NIC driver for Solaris. It is distributed
under the BSD license.
2. Specification of the driver
File name of the driver: /kernel/drv/nfo
Special file name: /dev/nfoN (Where N is a unit number, typcally 0 for first
card)
For example
% ifconfig nfo0
Tested OS version
Solaris10 x86 3/05
Tested mainboard
Biostar NF4UL-A9 (nVIDIA nForce4 CH8-04 Ultra chipset)
3. Preparing for installation
(1) Copy source and binary files.
# gunzip -cd nfo-x.x.x.tar.gz | tar xf -
(2) Add hostname for the NIC into /etc/hosts file
(3) Make links to the correct binary directory and Makefile according
to your configuration. i386 and gcc are default.
% cd /.../nfo-x.x.x
% rm obj Makefile
% ln -s Makefile.${KARCH}_${COMPILER} Makefile
% ln -s ${KARCH} obj
where ${KARCH} is the result of `isainfo -n`, and ${COMPILER} is
"gcc" or "suncc" which you want to use to make the driver.
(4) Making binaries (only for re-compiling the drivers by your self)
To make the binaries, you need Sun C compiler or gcc version 3, and do
the following operations.
     % /usr/ccs/bin/make
4. Testing
Testing before installation is strongly recommended.
# cd /.../nfo-x.x.x
# /usr/ccs/bin/make install
# ./adddrv.sh
# /usr/ccs/bin/make uninstall (for solaris7, don't remove the file )
# modload obj/nfo
# devfsadm -i nfo (for solaris7, use drvconfig and reboot with -r )
# ifconfig nfoN plumb ( where N is an instance number, typcally 0 for first card)
# ifconfig -a ( you will see an entry for nfoN)
# ifconfig nfoN YOUR-HOST-NAME
# ifconfig nfoN ( ensure IP address is correct)
# ifconfig nfoN up ( and then you can test with ping, telnet, ftp ...)
5. Installation
After you ensure that the nfo driver is fully functional, install it.
(1) install the nfo driver into the kernel directory
# cd /.../nfo-x.x.x
# /usr/ccs/bin/make install
If you do not test the nfo driver yet, execute the following commands:
# ./adddrv.sh
# devfsadm -i nfo (for solaris7, use drvconfig and reboot with -r)
(2) Configure the network interface. Create and/or modify the following file:
/etc/hostname.nfoN
(3) Reboot the system.
# init 6
According to the author it seems that he included precompiled binaries in the file but I can't find them. Probably don't know what to look for. I have an ATHLON 64 based computer.
The best option for me would be buying a ethernet card that's supported under solaris 10 and save the hassel of compiling the program. For experts I'm sure this would be easy, but I'm not an expert; in fact, I'm new to Solaris and don't know much about compiling software.
Thanks.

Similar Messages

  • Quad gigaSwift Ethernet Driver for Solaris 10 Sparc

    I have been looking about for this all over the place and cannot find it anywhere, in the manual and the sun site all the downloads are for solaris 9.
    Are these cards not supported on Solaris 10 Sparc ?
    Cheers,
    Mike

    it is the X4444A solaris 10 did pick up the card straight away, but the problem is there was no ce.conf file, i have created my own because i need to turn on jumbo frame for an individual port, but when i add it in all the ports on the card are being set to MTU 9800 so then i have to set them indivually to 1500 apart from the one i am using that needs to be 9000. This is all good and proper but when i activate this the box connects to the netapps server but all nfs shares fail as soon as anything touches these directories.
    The netapps filer is running at MTU 9000 and the card is running at 9000 causes everything to fall over, set back to normal and everything is ok.
    Any ideas ?

  • Help with hme Ethernet Driver

    Hello, I have the Solaris 7 source code (both for sparc and intel). My goal is to alter the hme ethernet driver to do something specific (why i ordered the source code). However, I'm running into a couple of problems. My first test was to just try and compile the source and insert the newly compiled driver to see if it will work (this is half the battle). I am wondering if I can do it with gcc, though. I don't have Sun's Forte cc compiler. Do you know if it's absolutely necessary to have cc to compile something like an ethernet driver for solaris? I have an Ultra-II sparcv9 (ultra 10 workstation) - which is what I am working with now. My first steps were as follows:
    Got hme.c from the cd. Checked the header #includes in the file, and everything was fine.
    Compiled as follows:
    gcc -D_KERNEL -c hme.c
    ld -r hme.o -o hme
    This worked ok, except for a couple of function re-definition warnings.
    Next thing I did was:
    $ ifconfig hme0 unplumb
    $ rem_drv hme
    By default, the ultra 10 boots into 64-bit kernel mode, and i know the 64-bit kernel drivers are stored in /kernel/drv/sparcv9 and the 32-bit drivers are one dir up. So, I made a backup copy of /kernel/drv/sparcv9/hme to /kernel/drv/sparcv9/hme.BACKUP and then copied my fresh new binary into that directory:
    $ cp /kernel/drv/sparcv9/hme /kernel/drv/sparcv9/hme.BACKUP
    $ cp /home/dford/hme /kernel/drv/sparcv9/hme
    Next :
    $ add_drv hme
    Here I get the message that the hme driver was loaded but failed to attach. I have seen this before when I did a loopback STREAMS driver, and the problem then was that the driver was compiled as a 32-bit driver, and I was in 64-bit mode. This was fixed by going to the boot prompt and typing:
    ok> boot /platform/sun4u/kernel/unix
    This boots the OS in 32-bit mode, and that fixed the problem with my Loopback STREAMS driver. However, I tried this with the hme driver I just built and it did not work. I get the same 'failed to attach' error, even after I copy the hme to /kernel/drv (make a backup of original first, though).
    Now, I notice that I am missing the character special file that is supposed to exist in the /devices/pseudo directory for the hme driver. I can make one with mknod, but isn't it suppose to do this automatically? Incidentally, my problems get worse: trying to restore the original hme binary and run add_drv produces the same problem (failed to attach). Now I can't restore the system to it's initial working state. The only thing I did was make a backup copy of the hme binary, and after trying a newly compiled hme binary, restore the original hme binary. Rebooting the system - complains that it can't "find" the hme module! After the system comes up, modinfo indeed shows that hme did not load properly.
    $ modload hme
    -- reports that it can't find the hme module
    $ modload /kernel/drv/sparcv9/hme
    --works ok, now modinfo shows hme is loaded ok.  however, add_drv hme still reports failed to attach.
    I don't know how the system's module load path got messed up. As i understand it, this is stored in /etc/system file. I never touched this file.
    If you have any experience / ideas with this sort of thing, please let me know your opinions.
    Thanks in advance,
    Davis

    Probelm Solved! The problem has to do with the fact that the kernel looks for a device with the same name as its driver module. In this case the driver module is 'hme', but the device name that is programmed into the card's FCode PROM is called SUNW,hme. Therefore add_drv would always fail. Therefore, to successfully load it, you have to alias the FCode PROM name as follows:
    add_drv -m '* 0666 root root' -i 'SUNW,hme' hme
    Hope this helps someone else in the future. This wasn't very clear, and took some digging to find out. In addition, the verbose option of add_drv should be changed to give more feedback, other than 'driver failed to attach'.
    Incidentally, I found this info at:
    http://soldc.sun.com/developer/support/driver/wps/pci/html/Device_Prop.doc.html
    One note - they use quotation marks in their example, but add_drv needs apostrophe...trivial, but nonetheless, thought I would point it out.
    davis

  • Ethernet Driver Not Installed and Yet It Is - Network useless

    Device Manager reports the network port on my W500 (4063-3FU) suddenly lacks a driver (Code 28). This is odd since I had manually installed it myself during the upgrade to a 64 bit (Win7 x64 SP1) ... because even the recent SystemUpdate utils don't work very well (as evidenced by the many tips on the forum to manually install things in a certain order).
    Multiple attempts to install Lenovo's latest network driver manually appeared to go smoothly, but Windows still says there's no driver. Astra32 calls it an Unknown device which may be odd, and the diagnostic tool "Lenovo Service Center" (LSC) is too vaue to be of use. I am adding screenshots .
    So I let Device Manager and Windows Update try to get an updated driver,but it could never find a driver. Or it would get various errors (Red X marks that tell the user nothing useful).  
    Programs & Features shows what i think may be the entry (highlighted in blue) for the network/port/driver but it's vague. I've been reluctant to uninstall it just yet.
    Does anyone know what I should do next? I need to get the network port going.

    What about the blue-highlighted entry in the last graphic (from Programs & Features)... Might that be the LAN driver? How could I check?
    When I go here for  the LAN driver
    http://support.lenovo.com/us/en/products/laptops-and-netbooks/thinkpad-w-series-laptops/thinkpad-w500/4063/3fu
    It says Ethernet driver (Intel PRO/1000 LAN adapter software) for Windows 7 (32-bit, 64-bit), XP - ThinkPad is the driver for the W500.
    The page on the network chipset is here:
    http://support.lenovo.com/us/en/products/laptops-and-netbooks/thinkpad-w-series-laptops/thinkpad-w500/4063/3fu/downloads/DS019225
    The network chip should be one of these: Intel® 82567LM Gigabit Network ConnectionIntel® 82567LF Gigabit Network Connection
    Question is, how do I get the system to evaluate the network hardware? LSC is useless.

  • Can not install Ethernet Driver on my Equium A100-147

    I am trying to install my ethernet drivers and the drivers I got from the site, apart from not being able to access them on sunday they do not work, windows does not pick them up and there seems to be no install/setup file?
    Please can someone help this is really annoying now...
    OS: Windows Media
    Wireless: Working
    Ethernet : Not working
    Help!

    Hi
    It seems that the Equium A100-147 belongs to the PSAABE.
    Please be sure that you have used and installed the right LAN driver for this series!!!
    I think the notebook uses the Intel Ekron-R(82562GZ) Chip.
    If you want you can download the Lan (Ethernet) driver from the Intel page.
    This will works for sure!!!

  • Equium A100-147 LAN (ethernet) driver cannot be installed

    Hi,
    I have the same problem like in topic http://forums.computers.toshiba-europe.com/forums/thread.jspa?threadID=17316.
    I downloaded and installed all of drivers what I needed, on my Equium A100-147, but Lan (ethernet) driver doesn't work.
    I have windows XP, home edition, SP2.
    I tried both type of drivers in Toshiba Download (and few others as well), which should work... but sadly, it's not working.
    I would be glad, if someone could help me. Thanks anyway.
    Adam.

    Got it! :-)
    Hehe, sorry for this. Last topic was very helpfull.
    Anyway, if someone will have the same problem i got new drivers from:
    http://downloadfinder.intel.com/scripts-df-external/confirm.aspx?httpDown=http://downloadmirror.intel.com/df-support/4275/eng/PRO2KXP.exe&agr=&ProductID=407&DwnldId=4275&strOSs =&OSFullName=&lang=eng
    Thanks.
    Adam.

  • Internet doesn't work with Killer Ethernet driver installed! PLEASE HELP!

    Hi guys,
    First of all I might as well start off by saying that I recently upgraded my system to a new build, and so bought some new parts. The motherboard I chose was a MSI z87 gd65 gaming and by gosh is it good to look at, my only problem is that when I install the driver of the disc is that the Killer Ethernet driver doesn't allow me to get internet access (but I am connected to my router).
    I have reset windows, reinstalled the driver, restarted my pc, made the bios default and it still persists not to work! I am not sure if it doesn't won't to work with windows 8 because I had to boot from the installation cd. I can't update to windows 8.1 either because I don't have the internet connect/access Nd I can't get another driver because of the same reason!
    Has anyone else come across this issue?

    Remove Killer driver and suite using >>Killer Cleaner<<. After reboot just install pure drivers: https://forum-en.msi.com/index.php?topic=174229.0

  • Install ethernet drive in virtual windows xp from MAC

    I have the MAC Computer. I installed virtual window xp in my MAC. It is working condition is OK. But Not install Ethernet Drive. How can i installed network work drive.

    Hi
    Welcome to msdn forum.
    This forum is to discuss problems of Smart Device Development . Your question is not related to the topic of this forum.
    Thanks for your understanding.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to Index a Lacie External Ethernet Drive

    I cannot seem to get Spotlight to (a) recognize and (b) index a Lacie external Ethernet Drive I run.
    Can anyone advise how I can get both, please?
    GWJ
    Melbourne, Australia

    In contrast to the pre-Tiger "Find" command, Spotlight can't search networked drives. I recommend downloading Easyfind at http://www.versiontracker.com/dyn/moreinfo/macosx/11706 and installing it. Easyfind isn't the very fastest utility but it performs thorough searches and fills this Spotlight design shortcoming well enough.

  • How to solve the ethernet driver problem

    Hi,
    My desktop consist of harddisk capacity of 300gp,which consist of the OS windows xp.
    Now i need to remove windows xp and i want to install oel5 only.
    But my problem is with the ethernet driver because while i work with windows xp i have no ethernet driver so i installed it seperately and everything is worked fine.
    And my question is if i install only oel5 wheather the same problem will exist or not then how i can download the ethernet driver software of oel5
    please help me

    user8818950  wrote:
    Hi,
    My desktop consist of harddisk capacity of 300gp,which consist of the OS windows xp.
    Now i need to remove windows xp and i want to install oel5 only.install it from cd/dvd.do you need network installation?
    >
    But my problem is with the ethernet driver because while i work with windows xp i have no ethernet driver so i installed it seperately and everything is worked fine.
    to solute out this we need to see output of lspci and lsmod (or the manufacture hex code from xp also work.)
    And my question is if i install only oel5 wheather the same problem will exist or not then how i can download the ethernet driver software of oel5
    its depend on the vendor id of the NIC.so put your lspci output after the installation of OEL5.4.In general OEL5.4 may give/detect the NIC by its own.
    >
    >
    please help me

  • Xp ethernet driver

    Right I am new to Mac's and this forum so hello everyone.
    My problem is with bootcamp and ive only found one forum entry on the net that points to this isuue so i hope you lot can help me.
    I've got Mac OS X 10.6.7 and have decided i also need xp on a partition to run Solidworks for work. I went through the bootcamp setup wizard.
    1) set a partition of 80Gb using NTFS
    2) installed xp pro from my install cd and used my cd key.
    3)it booted from that partition and went to the logon screen but is prompting me to activate my copy of xp, not a problem normally when i install to a pc. BUT i cannot connect to the internet as the ethernet drivers are not installed yet so i tried the telephone way but it will not show the ID for registering on the telephone as i have no ethernet driver!
    Therefore i am stuck as i cannot access the normal desktop until i have activated and i cannot activate because i cannot load the drivers from the OS X cd. I tried in safe mode but it will not install the bootcamp exe or recognise any of the drivers.
    Please help, someone else must have this problem.
    Its a Macbook 2.16 dual core running mac os x 10.6.7 and xp pro sp2 on the partition with proper cd and key.
    Many thanks.

    Are you now using Boot Camp 3.2 drivers, after installing off OS X DVD 3.0 and upgrading a couple times.
    http://www.apple.com/support/bootcamp
    Sometimes even with Apple drivers you still want/need to update audio, ethernet, graphics drivers yourself.
    Then add what I think is the best AV -
    Microsoft Security Essentials
    There are a number of people running SolidWorks I know from over the years here.

  • Installing RealTek ethernet card in solaris 7 sparc machine

    I inserted RealTek ethernet card in my Solaris-7 Sparc machine. But to work it properly ,need to install driver for the card. I searched a lot but i did't get the driver to download . I have read from some sites that the driver for solaris 7 sparc is not avaliable.How can i solve this problem.?
    Anybody please help me to solve the problem.

    You can try a NIC driver from RealTek, directly.
    http://www.realtek.com.tw/downloads/
    ... but for a SPARC system? That may be problematic.
    Does OBP see the device? Use show-devs at the OK prompt.
    If it isn't seen at OBP's elementary hardware level, the OS will never use it.
    If it is recognized at OBP, then try the manufacturer's drivers.
    Return to the forum and let the rest of us know what happens..

  • Ethernet driver for WXP is not working on Satellite A100

    Satellite A100-784 PSAANE-02L011G3 ethernet driver for wxp is not working. Can not properly install driver, downloaded all possible drivers and still not working.
    In device manager yellow sign. I have bought my laptop with Vista BASIC and I put XP-SP2. Country is Croatia! Help me please!

    Hi
    I cannot believe that you are not able to install the LAN driver on this A100 Satellite!
    However, the Sat A100-784 supports an Intel 82562GZ 10/100 Mbit (Ekron) Lan chip.
    If you want you can download and install the Lan driver from the Intel page:
    http://downloadcenter.intel.com/Product_Filter.aspx?ProductID=999&lang=eng
    There you will find the drivers for the Intel 8256x Ethernet Controllers
    Bye

  • Can't find Ethernet driver for x64 XP Pro

    Hi Everyone,
    I recently install x64 XP Pro to T61 machine and search for Ethernet driver in the Lenovo's website.
    I can't find it.  My T61 got Duo Core 2 2.4GHz, 2Gb of Ram. NVIDIA Quadro NVS140M 512MB.
    I thank you in advanced and look forward to your response.
    Hoang

    Don,
    Thank you very much for the link to Intel internet driver.  Now, I am looking for audio, sound and graphic drivers for x64 XP Pro OS.  I had tried drivers in Lenovo website and it didn't work.  All x64 drivers are made for Vista.  Also, I tried Nvidia website and they didn't have required graphic driver.  My T61 system hardware is Intel 2.4 GHz Duo Core 2, Nvidia Quadro NVS 140M 512MB, 2GB RAM memory.  I look forward to your response and you have nice day.
    Cheers,
    Hoang

  • K9N6PGM2 Ethernet driver

    I have the board up and running with an AMD X2 64 4000 and WinXP on a 250GB HDD.  All of the XP drivers seem to load from the disk except the Ethernet driver.  I go back and install only the Ethernet Driver and I see it appear on my Syslink 5 port hub but I get the red x on my network connection and on checking it I find that it says my cable is unplugged.  It is a 15 ft CAT 5 and is firmly attached at both ends.  If Irestart the unit it finds new hardware (PCI Bus), installs it and the hub loses connection with the computer.
    Please help.

    I did not install any pci devices that are not built into the mobo.  As for a PSU, I've drawn a blank.  I have attempted to install the drivers from the CD several times but still do not find the Ethernet card.  When I look at the Network Connections it now shows;
    Local Area Connection 5
    Network Cable unplugged, Fire...
    NVIDA nForce 10/100 Mbps N...
    As I have indicated the CAT5 is plugged in securely at both ends.

Maybe you are looking for

  • Payment Milestones in SRM?

    Hi At the organisation I work at, we have restricted back end SAP purchasing access and are pushing out the use of SRM instead as primary method for users to raise shopping carts, and have a number of catalogues setup for core commodities such as sta

  • Chained LOVs in portal using Javascript

    Has anyone gotten this to work in portal forms. I have an LOV in a form based on a table and when the user selects a value in LOV 1 it should populate the LOV2 item with the corresponding values. Please note that the time it takes to refresh using th

  • Safe download box in safari preferences?

    Is it a good idea to uncheck the safe download box the safari preferences?  I 've seen people talk about this & I'm new to the mac world.   THANKS!

  • ITunes 11.4.0.18 will not get track names for imported mp3 albums.

    I'm new to Apple (Windows 7 i7 Sandy Bridge processor 16GB ram) and recently got an iPod touch 5g 64GB and I am trying to figure out iTunes.  I have GB's of albums that I have collected over the years in mp3 format.  When I imported them to iTunes vi

  • Left Align for the input text in ADF

    Hi, When I drag and drop the data control in my jsp page, Automatically all the fields are aligned at the center of the page. But I want to align the input text fields to the left of the page. I have only valign which will give me top, bottom and cen