Driver alias Warning for "pci103c,3355"

On Solaris 10 with latest patch level SunOS host1 5.10 Generic_148889-02 i86pc i386 i86pc I have the following Warning in mesd
Mar 22 18:04:42 host1 genunix: [ID 723599 kern.warning] WARNING: Driver alias "pci103c,3355" conflicts with an existing driver name or alias.
I looked around in file /etc/driver_aliases and found the following entry
cpqary3 "pci103c,3355""pci103c,3356"
Is this correct or should be better in two separate lines e.g.
cpqary3 "pci103c,3355"
cpqary3 "pci103c,3356"
I did not tried this on so far.

Sorry, I had forgotten to paste the message. Now i pasted it below.
"Nov 27 09:33:10 surya genunix: [ID 723599 kern.warning] WARNING: Driver alias "nmux" conflicts with an existing driver name or alias."
Thanking you
Sridhar Bachu

Similar Messages

  • Driver alias changes during installation of Solaris

    I have a HP LP1000r Netserver. It's a little 1u box with a hardware pci raid controller that is giving me some grief.
    The card is a HP NetRaid-1M. This card is bascially an OEM version of the AMI MegaRaid 475(Express 500). AMI's raid cards were bought out by LSI who doesn't have Solaris drivers for this card.
    There is a LSI MegaRaid driver disk for download from Sun but that seem to be just for new MegaRaid cards. Solaris has a AMI MegaRaid driver, "amr". Looking at the driver alias for the latest Solaris 10 x86 release the driver_alias does not contain the pci ids for my card.
    The Solaris amr driver seems to be a port of the FreeBSD amr driver (http://blogs.sun.com/roller/page/JoeyGuo?entry=hello_there_welcome_here). The FreeBSD driver lists support for "AMI MegaRAID Express 500 (Series 475)".
    So is there any way for me to tell the Solaris installation that my card should use the amr driver? I need to install to hard drives connected to this card.
    Would support for this card have been stripped when it was ported from FreeBSD?
    Thanks,
    -Matt H.

    I've installed FreeBSD on the system to verify that the HP NetRAID-1M is supported by the original amr driver, and it is.
    At the grub menu I've tried to modify the kernel parameters when launching the install to:
    kernel /boot/multiboot kernel/unix -B install_media=cdrom,"target-driver-for-pci103c,60e7"=amr
    I've also tried sd instead of amr. The quotes are because of the comma in the key name. I'm kinda guessing on the quote usage based on the info at the end of http://docs.sun.com/app/docs/doc/819-2379/6n4m1vldu?a=view.
    I came across http://forum.sun.com/jive/thread.jspa?forumID=291&threadID=89269 which sounds like it might work for me but building an install server just to modify a driver alias for a single machine is just a little much.
    If there is no way to just make Solaris see the card correctly during install, is there some way to make a driver disk that just adds extra alias and what ever else is need to make the existing driver work?

  • I think I need help with driver (software) settings for D110a

    I think I need help with driver (software) settings for D110a all-in-one
    Product: D110a all-in-one
    OS: Windows XP Professional
    Error messages: None
    Changes before problem appeared: None--new installation
    The quality of photo images (mostly JPG files) in printouts is awful even though the files display beautifully on the PC screen. I am using
    IrfanView software for displaying/printing. As far as I can tell, IrfanView is not the problem.
    When I print the same images on a Deskjet 5150 attached to a different PC also running XP Pro and IrfanView, the quality of the printouts is at
    least acceptable, Some would probably say good or very good.
    It's dificult to explain in words the problem with the printouts. A picture of really pretty vegetables (squashes, tomatoes, watermelon, etc) comes
    out much too red. Moreover, the red, which appears shaded on the screen, seems to be all one shade in the D110a printouts.
    Something similar happens to a view of a huge tree in full leaf. On screen, there are subtle variations in the "greenness" of the leaves. In the
    printout, all green is the same shade. In the same printout, the trunk of the tree is all a single shade of grey. It isn;t even obvious that the
    trunk is a round, solid object.
    I liken the effect to audio that disappears entirely when you lower the volume and gets clipped into square waves in even moderately loud passages.
    I don't know whether the D110a driver software permits adjusting the parameters that appear to be set incorrectly, and if adjustments are possible,
    how I would identify which parameters to adjust, how I would access them, or how I would adjust them. I'm hoping that someone can help. Thanks.
    I forgot to mention that I have used the diagnostic application and it tells me that there are no problems.
    e-mail me at [email protected]

    brazzmonkey wrote:
    Hi everyone,
    I noticed the following message when network starts on my gateway
    Warning: This functionality is deprecated.
    Please refer to /etc/rc.conf on how to define a single wired
    connection, or use a utility such as netcfg.
    Then I realized the way network settings should be written in rc.conf has changed. But I can't figure out how this should be done.
    Currently, my set up is the following (old way):
    INTERFACES=(eth0 eth1)
    eth0="dhcp"
    eth1="eth1 192.168.0.10 netmask 255.255.255.0 broadcast 192.168.0.255"
    ROUTES=(!gateway)
    eth0 is on DHCP because the IP is dynamically assigned my ISP.
    eth1 has a fix IP because it's on the LAN side.
    No problem to use DHCP on eth0 with the new settings.
    But for eth1, I don't know what I am supposed to write for gateway.
    Wiki isn't clear on that one either, and it looks like many articles still refer to the old way.
    Any guidance appreciated, thanks.
    brazzmonkey,
    you can't define 2 interfaces the old way (even though I saw some tricky workaround somewhere in the forums).
    Use, f.e., netcfg:
    Comment your old lines.
    In /etc/rc.conf insert:
    NETWORKS=(Eth0-dhcp Eth1-static)
    DAEMONS=(..... !network @net-profiles ....)
    In /etc/network.d create 2 files:
    First one is named  Eth0-dhcp.
    Contents:
    CONNECTION="ethernet"
    DESCRIPTION="Whatever text"
    INTERFACE=eth0
    HOSTNAME="your hostname"
    IP="dhcp"
    DHCP_TIMEOUT=15
    Second one is named Eth1-static.
    Contents:
    CONNECTION='ethernet'
    DESCRIPTION='whatver'
    INTERFACE='eth1'
    HOSTNAME='hname'
    IP='static'
    ADDR='192.168.0.10'
    GATEWAY='192.168.0.1' # your gateway IP
    DNS=('192.168.0.1') # your DNS server
    The names Eth0-dhcp and Eth1-static are not magic. They just must be the same in rc.conf and in /etc/network.d.
    Hope it helps.
    mektub
    PS: netcfg must be installed.
    Last edited by Mektub (2011-07-20 14:07:05)

  • Don't know what driver to download for my NX6600

    I have an NX6600 card that I do not use sli (at least thats close to what it is). I am having problems figuring out what driver I need. They show a driver from 2004 for the NX6600. They also show newer drivers for geforce 6 cards. I don't know if my nx6600 is a geforce card or not?
    They show a driver for the nx6600 that uses the sli specifically so I can't use that one.
    Any Suggestions?

    I'm sorry I mistyped. Is my nx6600 pciexpress card a geforce 6 card. They have a lot of new drivers for that type. I have tried the uni driver in the past and I have had some problems. I have also read on the Asus board that if you pick the wrong driver it could cause windows to crash at bootup. A problem I have been having as I build new machines. So I wanted to try something else.
    For example: You take about 2 hours updating all the patches on a windows 2k/xp machine and it works fine. You reboot it and it works fine. You walk in the next day and turn it on and windows says a systemcde file is missing, or some other nonsense.
    F8 etc doesn't allow you in. Using win 2k your only solution is formating the beast.
    But Xp is smart enough to get around it, boot with XP and it says we need to do a chkdisk your drive has bad sectors. Every few times windows comes up with this bogus drive bad warning. The hd's are fine unless 8 drives in 8 different systems are bad. Windows checkdisk does not find bad sectors.
    One guy in the Asus forum said the nvidia driver is causing it from the msi cd. He used one on the msi web site and his is fine now.

  • Windows 7 and Windows 8 Driver Availability Chart for Creative's products

    Hello Everyone,
    There is a Knowledge base article that contains the Windows 7 and 8 Driver Availability Chart for Creative's products.
    Thank you.
    Mod Notes: Updated the link and include Windows 8.

    For Windows 7
    To run the Hardware and Devices troubleshooter in Windows 7, follow these steps:
    Open the Hardware and Devices troubleshooter by clicking the Start button , and then clicking Control Panel.
    In the search box, enter troubleshooter, and then click Troubleshooting.
    Under Hardware and Sound, click Configure a device.

  • Driver program name for script j_1i_57f4 challan

    hi .... plz i needed driver program name for delivery challan script : J_1I_57F4 . i tried to find it but since the output is displayed only from sp02 im unable to get its driver program name . i have to add certain fields in that form and corresponding logic in that form .
    thanks and regards .

    hi
    If u check the TNAPR table u will get the Driver Program as J_1I57FPN  , allu have to do is to Activate the SAP SCRIPT DEBUGGGER   and check the values  and also in the driver program above and check whihc values are coming and not.
    surya

  • When closing Firefox windows, I would like a warning before the last window closes. The about:config settings do nothing. There is a warning for multiple tabs..

    When closing Firefox windows, I would like a warning before the last window closes. The about:config settings do nothing. There is a warning for multiple tabs... why not for the last window? I do not use tabs... just windows... I have a mouse button programmed for that. It is really irritating to have to restart Firefox all the time and then open the history window because no warning was issued!

    This is ridiculous. I've had this problems for years now and I'm finally walking away from Firefox. I use my keyboards more than my mouse, and how many times does your finger slip and hit Command Q instead of W. How come FF can't reset something as trivial as this? So many people are having problems with this?
    Feels like FF has become too big, too slow and just not cooperative anymore. What a shame, I've been using Netscape/Firefox for 13 years. This is silly.

  • How do I capture tape-based media to my external hard drive?  There is only one firewire 800 port on the back of my I mac.  The manual says to import tape footage directly into fcpx, but then I lose my external hard drive.   thanks for your help.

    In FCP X How do I capture tape-based media (hdv clips)- which I want to import-to my external hard drive?  There is only one firewire 800 port on the back of my I mac.  The FCPX manual says to import tape footage directly into final cut, which works, but then I lose  my external hard drive    Do I  have to import it into an event, then copy it over to an external hard drive?  On Larry Jordan's tutorial, he has 3 external hard drives that show up on his monitor WHILE he imports his tape based media.  How is that done?  I can only get either the camera to appear OR my external hard drive.   thanks for your help.

    Thanks for your response, but that doesn't solve the problem.  Yes, the LaCie hard drive has 2 firewire ports-
    I have always done what you suggest (works fine in FCP7), but in FCPX when I do that the camcorder icon
    does not appear.  It only shows up when I DIRECTLY import the footage via firewire.  ????

  • External hard drive as storage for itunes??

    I wish to use my external hard drive as storage for itunes as the main computer I have has limited space. Can this be done and if so how???? Thanks for reading this and I look forward to any replies. Ian

    I followed the instructions from the link you offered. All my files/music,games etc. showed up on my new external hard drive, however there is no iTunes itself, just the files. Can you offer more assistance? Thanks.

  • HT201250 How do I find out what portable drive was the drive I used for Time Machine Backup?

    Hi, I have 10.7.4 and need to figure out what drive I was using for Time Machine Backup.  I have three drives and I have connected each of them to my macbook pro, but I get an error, "Time Machine Error, The backup disk is not available" when I hit the time machine icon on the top of the screen and the "backup delayed" prompt.  If I try Back up Now I get message, "Time Machine could not complete the backup.  Back up disk is not available."  I am trying to figure out what the time machine back up would actually look like as a file on the drives but I don't see a folder/file name Time Machine.  If I enter Time Machine I can see in the far right column, in purple, the last back up date (Sept. 12, 2012), but when I hit it nothing happens.  In the Time Machine preference box the select disk has, in red and to the right, "Delayed" with an "i" within a circle, and the option indicates, "Next backup: when disk is connected."
    I know I have a years worth of backups on one of the three drives, but I can't figure out how the heck to find them or how to determine what was the last drive I used for the backups within Time Machine.  Help please.

    Hi, I have 10.7.4 and need to figure out what drive I was using for Time Machine Backup.  I have three drives and I have connected each of them to my macbook pro, but I get an error, "Time Machine Error, The backup disk is not available" when I hit the time machine icon on the top of the screen and the "backup delayed" prompt.  If I try Back up Now I get message, "Time Machine could not complete the backup.  Back up disk is not available."  I am trying to figure out what the time machine back up would actually look like as a file on the drives but I don't see a folder/file name Time Machine.  If I enter Time Machine I can see in the far right column, in purple, the last back up date (Sept. 12, 2012), but when I hit it nothing happens.  In the Time Machine preference box the select disk has, in red and to the right, "Delayed" with an "i" within a circle, and the option indicates, "Next backup: when disk is connected."
    I know I have a years worth of backups on one of the three drives, but I can't figure out how the heck to find them or how to determine what was the last drive I used for the backups within Time Machine.  Help please.

  • I just received a new macbook pro. I am looking for a usb3 external storage 500 GB drive.  Some manufacturers of drives aren't for sure their drive will work with the new lion system. Does anybody have any suggestions for drives that will workw

    I just received a new macbook pro. I am looking for a usb3 external storage 500 GB drive.  Some manufacturers of drives aren't for sure their drive will work with the new  system. Does anybody have any suggestions for drives that will workw

    There seems to be a problem, just now, with the USB 3 ports on the new MBP's supporting eternal USB 3 drives. Some people have no luck at all - can't even recognize the drive - and some are reporting USB 2 speeds (those who drives are recognized). I'd call a dealer such as LaCie or OWC to see if they have USB 3 drives that actually work with MBP's with USB 3 ports. You may have to wait for a software/firmware update.
    Clinton

  • Warning for code that no longer exists

    I got a compiler warning so I removed that line of code,
    recompiled and the warning still shows up.
    I tried restarting the Flex Builder and I am still getting
    the warning for the line of code that does not exist any more. Is
    there a way for me to clear this?
    Thanks!
    Dana

    Did you try the 'clean' project option. I'm not sure what
    that is
    really for and when one really needs to use it, but it is the
    first
    thing I try when weirdness happens.

  • Fusion Drive or HDD for video editing

    I'm editing videos with Final Cut Pro and Premiere Pro with a Macbook Pro and I'll be upgrading to an iMac soon. There's an offer in a web store for a new iMac 27" 3,4ghz with a 1tb hdd drive for 2314 dollars. There's not an upgrade possibility, so I would be missing out the Fusion Drive. If I bought the same setup with a Fusion Drive from Mac Store I'd have to pay 2848 dollars, so I would be paying 534 dollars for a Fusion Drive. This seems a bit too much for my budget, though I'd like to have the FD. I went a Apple certified store and they said the performance is seen in opening apps, overall performance and for example scrolling the iPhoto folders. These don't matter at all to me, only what matters is that I will be using this computer for at least 4-5 years and planning on editing 4k video files on it, so it doesn't get old too quick. I'm also planning to buy a external ssd in the future to store all my video files in. So is the Fusion Drive a must have and something I should pay 543 dollars more or could I do with a 1tb hdd -drive and a external thunderbolt drive? Thanks for the answers!

    After numerous pageouts and pageins I was forced to go from 4GB of RAM to 8GB of ram due to my Photoshop work, and that was just photoshop. I could have probably gotten by at 6 GB but I figured what the heck. If you get to a place where you need to let your machine sit and render for a while and then want to work in Photoshop for anything but the smallest images, you'll definitely be helped by more than 4GB of memory. BUT - and this is a big but - the iMac should be capable of doing the work. What is sigificant to you is unknown to us. Some folks gag at the thought of not running FCP or even their basic computer, without RAID and consider RAID a significant improvement.
    You realize that if you want FULL hdef capability you need RAID, Compressed HD and DV can be done without RAID. I dunno about external RAID on iMacs via firewire. If you are doing full HD then you'll probably want a Mac Pro. If you are not doing full HD then your iMac would be very capable. After all, it's still much faster than many of the old G4 machines that did video and photoshop in years past. Your renders will take a bit longer and photoshop may page out a bit more, but it will all eventually work. If you are making money with it, get the Mac Pro. If not and money is tight the iMac will work.
    I think though, when you look at the 24" iMac (the smaller ones use cheap TN screens that are worthless for photography) and add the memory you need and add in the cost of an external HD setup for FCP you will find it won't be that expensive to get a BARE bones Mac and add memory and other internal HD's from Crucial and other suppliers. Dell makes some decent, not too expensive 24" monitors and you'll find the cost of a MacPro won't be that huge - especially after you look at the price of FCP Studio + the Master Collection.

  • Windows 7 - Driver Availability Chart For Creative Products is nearly useless

    <span class="text">[url="http://support.creative.com/kb/showarticle.aspx?sid=605">Windows 7 - Driver Availability Chart For Creative Products[/url] is outdated Windows pre-release drivers (at least for the Audigy SB0090 series) back from July. This appear to be revamped Vista drivers that are not usable for W7 RTM. MS made changes to W7 where most Vista drivers do not work properly any more.
    When I try to install the drivers through the installer I get the incompatibility error and the installer quits, then I get the failed install pop-up for W7.
    What I would like to know is when Creative plans on releasing drivers that work with W7 RTM? Llinking drivers that worked for W7 RC is not helping and really should be removed.
    I have used Creative sound cards since just before the SB6 came out. I have been a loyal Creative customer from early on. But if Creative can not deali'ver a fully working driver suit for my sound card by the end of the month (November) I would appreciate knowing so I can start looking for another a replacement, which won't be a Creative product.
    Even though my last 3 MBs have had good built-in sound, I have went out and bought Creative sound cards because I wanted the best, which Creative has previously provided.
    I need to upgrade my MB so I have put of buying a new sound card until I do. But if I'm forced to buy a new sound card because Creative says it will provide drivers that work with W7 RTM and for what ever reason can not do so, I will not be buying another Creative product.
    I maintain 4 PCs of my own so that will be 4 cards bought from a competitor since Creative has completely dropped the ball. All major component manufacturers have been able to release stable drivers at the same time as W7 RTM release , or within days after release. Why hasn't Creative been able to do so? Creative was able to release suitable drivers for RC in a timely fashion, what happened with W7 RTM? Did they recently fire all the programs and techs?
    Please do not link useless info. Please find out what is going on and tell the powers-that-be at Creative they have some really upset customers and ask them to tell us what is happening here. Tell them we would like to know when Creative plans on releasing drivers for W7 RTM so we can make the decision to wait it out or buy replacements.

    Again, yes Device Manager has no problem detecting the card and W7 has no problem loading the default Window drivers for it.
    Since I had to replace my TV Tuner Card, I used Device Manager to remove it and my Audigy card and then shut the PC down. My new TV Tuner Card is a PCI-E x so I installed it in an open slot and move the Audigy to the PCI slot where the old TV Tuner Card was.
    When I started my PC again, W7 detected the Audigy card and loaded the defeult drivers. I again tried to use the installer and had the same error.
    The sound works, but I only have basic Windows functions/controls.
    It is most definately not a hardware issue.
    The online auto update detects it, just the installer does not detect it.
    I am currently awaiting a response from CS now. Of course the problem there is that you have to wait/respond, wait/respond, wait/respond just to cover the same ground that has been gone over a hundrd times already.
    I put every step I have done in the email. As usual, it was a waste to type because you are asked questions already answered and to preform steps already done.
    It would be nice if CS would realize that some of us are only contacting CS because we have already done all the standard steps without success and now need to move onto the advanced ste
    ps.

  • Windows 7 Driver Availability Chart for Creative's products

    Hello Everyone,
    There is a Knowledge base article that contains the Windows 7 Driver Availability Chart for Creative's products. Please note that the date in the chart may vary from time to time in accordance to Microsoft's plans on Windows 7 release.
    Thank you.

    For Windows 7
    To run the Hardware and Devices troubleshooter in Windows 7, follow these steps:
    Open the Hardware and Devices troubleshooter by clicking the Start button , and then clicking Control Panel.
    In the search box, enter troubleshooter, and then click Troubleshooting.
    Under Hardware and Sound, click Configure a device.

Maybe you are looking for

  • Report parameter is not populated with exact value in stacked column click throughs

    I have stacked column chart to show below opportunity data. Category axis: Month of created date Series: sales stage Aggregate: runningvalue of revenue on sales stage group.  data set has below fields. 1. opportunity id 2. created date 3. revenue 4.

  • Connecting Macbook + Samsung BD-P3600 + Logitec Z-5500

    Hey Folks, I have a MacBook which I am trying to connect to a Samsung BD-P3600 Dvd Player, and also a Logitec Z-5500 5.1 speaker system. The thing is, I can connect the dvd player to the speakers with an optical audio cable, and I imagine the same is

  • How to update values for qty n batch in mska table

    Hi experts, i would lke to know is it possible that we can update value of availabity of stock which is existing batch wise in MSKA table field 'kalab' (qty) n charg (batch). i mean we have devided material per document number into batch a b c. supos

  • What would you reccomend?

    I had a Ipod Nano 1st gen 2gb, than i sold that, than i got a zune 30 GIG 1st gen, than i exchanged that for a 80 GB zune 2nd gen.  Im bored of zunes they are not as quite enternatining.  I would want a ipod touch but idk if its worth it.  Is there a

  • Need Key lock instead press power to turn off the screen

    Hi to developers .  I am using BB Z10,i see press the power button to lock that screen very inconvenient. I suggest to developers pay attention to this. Thanks. Solved! Go to Solution.