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 ?

Similar Messages

  • How to write ACPI device driver for Solaris 8 (SPARC Edition)

    Hi, All,
    I wonder how to write ACPI driver to access battery life,
    can anyone help ? thanks!!

    I am having the similar problem identified in this thread.
    OS: Sun Solaris 10 01/06
    Hardware: Sun Blade 2500
    PCI Memory card.
    Problem: When driver moves more then 40 bytes via PIO from a PCI device memory card, the long words are swapped starting at 40 byte transfer size and greater.
    device memory description:
    static ddi_device_acc_attr_t sdram_access_attr =
    DDI_DEVICE_ATTR_V0, /* Boilerplate value */
    DDI_STRUCTURE_LE_ACC,
    DDI_STRICTORDER_ACC /* Don't reorder accesses */
    The user application does a read call, which goes to xxread. xxread calls physio( xxstrategy, bp, dev, B_READ, xxminphys, uio );
    In xxstrategy the transfer is done using
    ddi_mem_rep_get8(ucb->ucb_sdram_accHndl,
    (uint8_t*) kaddr,
    (uint8_t*) raddr,
    (size_t) bp->b_resid),
    (uint_t) DDI_DEV_AUTOINCR );
    PCI Device memory is loaded with incrementing address (8bit), 0,1,2... This is confirmed using a PCI Bus Analyzer.
    A read of 36 bytes or less returns:
    03 02 01 00 07 06 05 04 ...
    A read of 40 bytes returns:
    07 06 05 04 03 02 01 00 ...
    If I peek 1 byte at a time using ddi_get8(ucb->ucb_sdram_accHndl, ...) I get
    00 01 02 03 04 05 06 07
    Why are the long words swapped starting at 40 byte transfer size and greater?

  • 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..

  • License for cross-compilation for solaris 10 sparc on Linux x86

    I'd like to do cross-compilation for solaris 10 sparc on Linux x86 using gcc (for linux). To do that, I have to copy libraries (/lib/64) and includes (/usr/include) from a sparc machine to my linux machine.
    The compilation will be run on about (up to) 50 Linux machines (by various developers). We also have 3 solaris-10-SPARC machines.
    I wonder if Solaris license allows me to copy the includes and libs to perform compilation elsewhere.
    I also checked "OTN License Agreement for Oracle Solaris", but it looks like Oracle allows for installing "the programs" on up to 3 machines, but I need it on 50.
    Thanks for any suggestions or redirections to a proper place where I can get an answer.
    Marek

    When installing Solaris 10 01/06 on a Dell 1850 I receive an error message during the install saying "no disk found". I assume that the drive/controller is not recognized. The Dell 1850 is listed under the HCL for Solaris 10 10/06. I don't believe I can use the Solaris(TM) Device Driver for the LSI MegaRAID Adapter floppy with 1/06. I don�t have any other Solaris boxes up so I can�t build a jump start server. Any suggestions?

  • 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.

  • 3dfx driver for solaris 8

    Hi,
    I am looking for a 3dfx banshee driver for solaris 8. Any pointers. If none exists any pointers to how I could port the 3dfx drivers for linux and glide over to solaris 8. Can I use gcc to do my work?
    Thanks in advance
    Regards
    Nirmal

    Hello Flavio,
    please i need a driver for Voodoo3 3000 AGP video
    adapter, you have one ?No. I wrote a driver for the V2 and it's not very useful - I made it for Solaris Sparc and all you can do is a few IOCTLs and mmap the device memory into userland. The driver does work on i386 but you need the latest MMU patch. I did not have the time yet to port glide - I have something half working for sparc but I have not spend time to make it work on i386. Even with glide working you can't use X11 (one would have to write the X11 drivers and that's a whole new ball game).
    How i do to install this driver ? sorry i�m begining
    on Sun.If you wish to use it for X11, I would recommend to download the XFree86 binaries for Solaris, since it has support for the V3.
    You can get more information about it on www.xfree86.org.
    My S.O. is Sun Solaris 8 01-01 (IA) on ASUS A7V133 and
    AMD K7 cpu.
    Thanks to you, very much.You are welcome!
    (desculpe aih o ingles chiclete camarada preciso treinar++)(O ingles esta' bom!).

  • ACPI Ethernet driver for Win 7?

    Hello
    I've no idea if I am even near the correct place to be. Would love to find out from someone who knows where I can find on Microsoft's web-site, the  ethernet driver for acpi. It turns out I haven't one on my computer and how I lost it is anyone's guess
    as I really am computer illiterate. D-link doesn't always work so I would love to replace my ethernet driver.
    Have Win 7
    Help please??? and Thank you so very much~ Teena

    Here is the forum for you

  • Ethernet driver for HP p7-1414

    I need the Ethernet driver for my pc for Win 7. I have found all drivers including the WiFi driver so I can connect to Internet. But when I plug in my student cable, it doesn't do anything. My pc still remains connect wirelessly. So I need that driver. It a HP p7-1414. Thanks.

    Hi:
    Rather than hunting down all of the drivers individually, the easiest thing would have been to find a model with the same motherboard as yours which has Windows 7 drivers.
    All of the W7 drivers from this slightly older model will work on yours.
    http://h10025.www1.hp.com/ewfrf/wc/product?cc=us&dlc=en&lc=en&product=5231479&task=

  • Workshop (WebLogic 10.2 MP1) not available for Solaris 10 SPARC 64 bit?

    Hi All,
    When Workshop for WebLogic 10.2 MP1 will be available for Solaris 10 SPARC 64 bit.
    I could find "WebLogic 10.2 MP1 for Solaris 10 SPARC 32 bit" but not for SPARC 64 bit!!
    otherwise guide me to download page.
    Thanks and Regards
    Arunachalam.C
    Edited by: arungoin on Feb 16, 2011 4:55 PM

    I found by issue "mount -v" that our disk slices are
    UFS type. So we don't need apply patch 5257399,
    right? Please confirm. Thanks!!!For your information, you are asking the user community to confirm, not Oracle. Some (many?) of us are not employed by Oracle.
    Therefore, the only answers you can get are from 'friends'. Nothing would be official and Oracle (and Oracle Support) would not be legally responsible.
    Your safest bet would be to escalate the request wityh Oracle Support.

  • JRE 6.0 update 1 for Solaris 10 sparc 64 bit

    Will jre 6.0 come out as a patch for Solaris 10 sparc? Or should I install it from the Java download site (http://www.java.com/en/download/manual.jsp)? I currently have jre 5.0.11 (patches 118666-11 and 118667-11).
    Thanks.....

    Will jre 6.0 come out as a patch for Solaris 10
    sparc? Or should I install it from the Java download
    site (http://www.java.com/en/download/manual.jsp)? I
    currently have jre 5.0.11 (patches 118666-11 and
    118667-11).Yes, it's out for 6u1, or should be out by now, as sparc (125136-01 & 125137-01)
    and x86 (125138-01 & 125139-01).
    You cannot patch your way from 5.0 to 6. You need to install the 6 packages, and then you can install the 6u1 patch. (or you could just install the 6u1 packages, and patch from that point onward).
    As to the later question, yes, there isn't a formal JRE patch, but SUNWj6rt is essentially the runtime component of the JDK, so if you just had SUNWj6rt & SUNWj6cfg installed, you would have the equivalent of a JRE, though it still would be installed in a JDK directory. If you have just those two packages installed, then you could use 125136-01 as a JRE patch, since it will only update what installed. Oh yes, I forgot about the 64bit component to the runtime, SUNWj6rtx. If you intend on running the JRE in 64bit mode (-d64), you'd need SUNWj6rtx as well.
    Dave
    Sun Microsystems
    Message was edited by:
    katleman

  • Firefox 17.0.2 for Solaris 10 (sparc) (contrib) not available

    There is a security finding on Firefox 17.0.1 (CVE-2013-0759), and we need to install Firefox 17.0.2 for Solaris 10/sparc. We have to use the 17.x series. For some reason the "ftp://ftp.mozilla.org/pub/firefox/releases/17.0.2esr/contrib/" directory is empty.

    Has there been any additional info from Oracle as to when they might update Firefox for Solaris 10 SPARC beyond 10.0.7 ESR (''aka Patch ID #145080-12'')? I have not been able to find the referenced package for 10.0.12 ESR within MOS. Realistically, I really need 17.0.5 ESR or later -- the contributed versions are not an option due to their questionable source (''i.e., Beijing'').

  • Need latest acrobat reader for solaris 10 sparc version

    i need latest acrobat reader for solaris 10 sparc version
    checked adobe site it is only avilable for linux and not for solaris, very strange

    There's no version of Adobe Reader XI for Solaris.
    The only versions you can download are legacy - see the complete list here: http://www.adobe.com/support/downloads/product.jsp?product=10&platform=Unix

  • SIS 6326 driver for Solaris Intel platform

    Apparently those who used a SiS 6326 chip on the graphics card
    cannot find a proper driver for Solaris 8 Intel.
    I am having the same problem, is there any way of resolve this problem
    so I can make my graphics card work at 100% or does this mean I have to get a different graphics card which is supported by Solaris 8 Intel.

    Do you know if there is any other old SiS drivers for Sun? Maybe we can make it work good (at least 50% fine) using an old driver...
    PS: If you can, please answer to my email: [email protected]
    Thanks in advance...

  • Voodoo3 3000 driver for Solaris 8 IA

    Hi,
    I am looking for a 3dfx-Voodoo3 3000 AGP 16MB driver for solaris 8.
    Target computer : AMD K7 Tunderbird CPU whit ASUS A7V133 M.B.
    Thanks in advance
    Regards
    Flavio Azra

    Hi Shaun,
    I had email contact with sun technicians and they told me that they keep on improving graphics support but that there's no Nvidia driver available by now. No one could tell me when they would start to support GeForce chips but they said it's a good idea to use XFree86 instead which comes with in integrated nvidia driver. Version 4.0.3 worked almost right out of the box, version 4.1.0 caused problems so I reinstalled 4.0.3 again.
    Hope this helps!
    Regards from Germany
    Dirk

  • JCO for Solaris 10 sparc

    Hi guys
    I was testing an java application on solaris 10 to connect to R/3 but the  JCO libraries have only support for solaris 9 and 8 sparc.
    Just curious to know when will JCO will be supported for solaris 10 SPARC. Is there somewhere where i can find more info on upcoming releases for JCO on solari 10
    Thanks in advance for any help
    Thomas

    Hi All,
    I am having problem with jco connector for java for solris x86 machine..following error is coming when i try to connect to SAP via SAP Jco connectors....
    Could not initialize the SAP jCO. Please reinstall and check that the needed libraries (librfc32 and sapjcorfc) are available to Java and restart this application.
    Please suggest,
    suveer

Maybe you are looking for

  • Jabber for iPad video issue

    How can I troubleshoot video issues? I setup the iPad device (G711) and then placed a call to a Jabber for Windows (G729) phone. Audio worked fine but no video. I changed the Jabber for Windows to G711 and video started working? Is Jabber for iPad go

  • 2009.08 official snapshots

    Hey guys and girls. We cannot post this on the mainpage (yet) but we don't want to hold you back, so we want to introduce you to the official 2009.08 images. These images are the first fruits of our new arch-releng build environment on the sevenL ser

  • Incorrect PDF exports in ID CS5.5 with X-1a standard...

    I'm tasked with troubleshooting technical problems for a group of 20 designers. I've been a designer myself, but not for some time now. However, as a tech support person I deal with CS problems daily, so I'm still pretty versed with the apps. Just to

  • How we can attach documents in interactive form through GP

    Hi, I am creating a Callable Object(CO) for Interactive Form(IF) through GP. This IF is designed in Adobe Live Cycle Designer 8.  I am unable to get reader rights for this PDF which is downloaded as normal form/Impersonalized form. I am having defaul

  • Restricting User Status in CRM

    Hi Experts We have a requirement in SAP CRM to restrict User statuses so that when the CRM Order is in a certain status, no other statuses are visible as a drop-down. In above screenshot, if status is "Dealer Submitted" the rest of the status should