LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Go Back   LinuxQuestions.org > Forums > Other *NIX Forums > Solaris / OpenSolaris
User Name
Password
Solaris / OpenSolaris This forum is for the discussion of Solaris, OpenSolaris, OpenIndiana, and illumos.
General Sun, SunOS and Sparc related questions also go here. Any Solaris fork or distribution is welcome.

Notices


Reply
  Search this Thread
Old 04-19-2011, 07:54 AM   #16
jlliagre
Moderator
 
Registered: Feb 2004
Location: Outside Paris
Distribution: Solaris 11.4, Oracle Linux, Mint, Debian/WSL
Posts: 9,789

Rep: Reputation: 492Reputation: 492Reputation: 492Reputation: 492Reputation: 492

You'd better extract the gzipped archive (which is slightly different than a zipped archive by the way) to your hard disk. Your usb drive is likely FAT based, not UFS so the permissions might be wrong.
 
Old 04-19-2011, 01:11 PM   #17
hellfrozeover
LQ Newbie
 
Registered: Apr 2011
Posts: 14

Original Poster
Rep: Reputation: 0
Ok I redownloaded the original tar.gz file from the link you gave me. I took it from my usb drive and copied it straight to the / working directory on my unix system. Now I tried to run gunzip and I'm obviously doing something wrong in getting it unzipped correctly....I did it as:

gunzip -cd /rf-2.6.2.tar.gz | tar xf-

It gave me an error of wrong syntax. Then I tried it as:

gunzip -cd rf-2.6.2.tar.gz | tar xf-

Still an error Then I did it as:

gunzip -cd /rf-2.6.2.tar.gz | tar xf -

That time it returned with wrong syntax form or something to that effect. I was following it directly from the readme file the other day. From what I can tell I have it correct but the xf- is acting like I should have a filename after the "-" I know I'm almost a hopeless case but the first way of typing the gunzip should have worked. Instead I'm getting the message tarblocks=0 I guess I'm not understanding correctly... Once again if possible I'd love to have some help on this again....Sorry to be such a bother. I never knew learning this stuff again would be so hard to accomplish.... thanks again
 
Old 04-19-2011, 05:48 PM   #18
hellfrozeover
LQ Newbie
 
Registered: Apr 2011
Posts: 14

Original Poster
Rep: Reputation: 0
Ok I finally got the gunzip command to run correctly now I moved down and followed all steps...down at the spot of the testing in the readme file which I posted earlier I ran the /usr/ccs/bin/make install..it went fine it gave me the message new owner root....i386/rf installed as /kernel/drv/rf then I realized I screwed up im on amd64 so I started over with therm Makefile then ln _s Makefile.amd64_gcc Makefile....it all went again but now when I do the command /usr/ccs/bin/make install it shows i386 driver installed same as above but it also says /usr/sbin/install -f /kernel/drv?amd64 -m 755 -u root -g sus amd64/rf new owner is root....amdgd/rf installed as /kernel/drv/amd64/rf....now it looks good...til I try ./adddrv.sg after that it says nothing to do....so I tried modload obj/rf but since iys reallly /amd64/rf should I have done that instead? Then I tried devfsadm -i rf and it said drver failed to attach...so then I tried devsadm -i amd64/rf same deal failed to attach....im at a loss agaon...when I do ifconfig -a it still only shpws the lo0 interface.....im lost again....
 
Old 04-19-2011, 08:44 PM   #19
hellfrozeover
LQ Newbie
 
Registered: Apr 2011
Posts: 14

Original Poster
Rep: Reputation: 0
Ok another update....i reinstalled solaris 10 and then tried the whole thing over again...it all worked correctly...somewhat....the driver add with ./adddrv.sh but when I try to attach it with devfsadm -i rf it still gives me the errot drver failed to attach rf....so maybe this driver is not the one for my card after all....any ideas as to why everything else loads and works properly except the devfsadm command?? I even tried using drvconfig and same issue...driver fails to attach......so still needing help if anyone has some ideas....
 
Old 04-19-2011, 11:59 PM   #20
jlliagre
Moderator
 
Registered: Feb 2004
Location: Outside Paris
Distribution: Solaris 11.4, Oracle Linux, Mint, Debian/WSL
Posts: 9,789

Rep: Reputation: 492Reputation: 492Reputation: 492Reputation: 492Reputation: 492
What says
Code:
grep 10ec /etc/driver_aliases
?
 
Old 04-20-2011, 07:16 AM   #21
hellfrozeover
LQ Newbie
 
Registered: Apr 2011
Posts: 14

Original Poster
Rep: Reputation: 0
It says:
ixgbe "pciex8086,10ec"
rge "pci10ec, 8169"
rge "pci10ec, 8110"
rtls "pci10ec, 8139"
rf "pci10ec, 8129"
rf "pci10ec, 8138"
Thats all it says and I have no clue what it all means....
 
Old 04-20-2011, 09:54 AM   #22
jlliagre
Moderator
 
Registered: Feb 2004
Location: Outside Paris
Distribution: Solaris 11.4, Oracle Linux, Mint, Debian/WSL
Posts: 9,789

Rep: Reputation: 492Reputation: 492Reputation: 492Reputation: 492Reputation: 492
Okay, your card isn't listed in the ones supported by the rf driver. You can add it using that command:

Code:
update_drv -a -i "'pci10ec,8138'" rf
Please be careful with the double/single quotes syntax
 
Old 04-20-2011, 10:21 AM   #23
hellfrozeover
LQ Newbie
 
Registered: Apr 2011
Posts: 14

Original Poster
Rep: Reputation: 0
Ok so with that command ----- update_drv -a -i "'pci10ec,8138'" rf ----- I run it from the terminal prompt and then should I completely redo the /usr/ccs/bin/make install and then the devfsadm -i rf ??? or should I just run the devfsadm -i rf command ? since I'm a newbie I have trouble knowing what to do right after this... could you help me understand what to do next?
 
Old 04-20-2011, 10:50 AM   #24
jlliagre
Moderator
 
Registered: Feb 2004
Location: Outside Paris
Distribution: Solaris 11.4, Oracle Linux, Mint, Debian/WSL
Posts: 9,789

Rep: Reputation: 492Reputation: 492Reputation: 492Reputation: 492Reputation: 492
After this command is run, either the driver is happy with your hardware and
Code:
ifconfig -a plumb
ifconfig -a
will show up your rf0 interface or it isn't and the result is undefined, something between an error message at boot to a kernel panic.
 
Old 04-20-2011, 12:34 PM   #25
hellfrozeover
LQ Newbie
 
Registered: Apr 2011
Posts: 14

Original Poster
Rep: Reputation: 0
ok I'm now guessing that its either not the right driver for the card I have or that card will not work on solaris 10 because I ran the update_dev command and it gave me a message....driver failed to attach
Warning: driver (rf) successfully added to system but failed to attach......
I checked with ifconfig and same issue as before lo0 is the only thing showing so its one of the two options mentioned above I believe.... I found another driver online that I downloaded but it is a bz2 zipped file and my computer does not support bz2 yet so I'm looking for a bz2 zip program to update my system so I can unzip it and maybe see if a different driver makes a difference...Thanks for all the help and if I get the bz2 program I may be coming back on here and asking more questions....I really appreciate all the info I have received! Thanks again!
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Fedora Core 6 won't connect to Internet or update packages chrisof4 Linux - Software 9 03-09-2011 12:07 AM
Cant connect to the Internet Solaris 10 hal8000b Solaris / OpenSolaris 11 08-05-2009 01:19 AM
Fedora Core 5 Computer Providing A Windows Xp Computer With Internet FedoraNewbie Linux - Networking 6 10-28-2006 11:24 PM
Solaris won't connect to the internet srekcus Solaris / OpenSolaris 1 05-22-2005 03:15 PM

LinuxQuestions.org > Forums > Other *NIX Forums > Solaris / OpenSolaris

All times are GMT -5. The time now is 11:56 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration