14911 [FreeNAS] installing a qla2340 card - The FreeBSD Forums
The FreeBSD Forums  

Go Back   The FreeBSD Forums > Base System > System Hardware

System Hardware Internal storage, motherboards, PCI cards, stuff inside the case.

Reply
 
Thread Tools Display Modes
  #1  
Old July 15th, 2012, 19:19
ftrinc ftrinc is offline
Junior Member
 
Join Date: Jul 2012
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
Default [FreeNAS] installing a qla2340 card

Does anyone know how to install a qla2340 card?
I use linux a lot and I'm new to FreeBSD. It is on the hardware list. Just need to know if there is a how to.

Thanks
kris

Last edited by wblock@; July 21st, 2012 at 20:37. Reason: Mind your writing style: http://forums.freebsd.org/showthread.php?t=18043
Reply With Quote
  #2  
Old July 15th, 2012, 19:34
wblock@'s Avatar
wblock@ wblock@ is offline
Moderator
 
Join Date: Sep 2009
Location: Milky Way galaxy
Posts: 7,850
Thanks: 444
Thanked 1,828 Times in 1,494 Posts
Default

It may be helpful to define what a "qla2340 card" is or does. apropos(1) says nothing about it.
Reply With Quote
  #3  
Old July 15th, 2012, 19:46
ftrinc ftrinc is offline
Junior Member
 
Join Date: Jul 2012
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Sorry, it is a Qlogic Single Fiber channel PCI-x Card

Last edited by SirDice; July 16th, 2012 at 09:27. Reason: Mind your writing style: http://forums.freebsd.org/showthread.php?t=18043
Reply With Quote
  #4  
Old July 16th, 2012, 08:49
jalla's Avatar
jalla jalla is offline
Member
 
Join Date: Aug 2009
Location: Bergen, Norway
Posts: 338
Thanks: 12
Thanked 70 Times in 59 Posts
Default

apropos qlogic would point you to the correct driver, which is sis(4).

Try kldload sis. If that doesn't work you may have to compile sis into the kernel
__________________
Practical latin
Amicule, deliciae, num is sum qui mentiar tibi?
But dear, could I ever lie to you?
Reply With Quote
  #5  
Old July 17th, 2012, 10:43
usdmatt usdmatt is offline
Member
 
Join Date: Mar 2009
Posts: 253
Thanks: 1
Thanked 67 Times in 56 Posts
Default

Quote:
Originally Posted by jalla View Post
apropos qlogic would point you to the correct driver, which is sis(4).

Try kldload sis. If that doesn't work you may have to compile sis into the kernel
The manual shows sis(4) as a network card driver for the SiS chipset... Also I see no reason why compiling a driver into the kernel would make a device work when loading the driver dynamically doesn't.

I get the following output from apropos qlogic

Code:
p# apropos qlogic
esp(4)                   - Emulex ESP, NCR 53C9x and QLogic FAS families based SCSI controllers
isp(4)                   - Qlogic based SCSI and FibreChannel SCSI Host Adapters
ispfw(4)                 - Firmware Module for Qlogic based SCSI and FibreChannel SCSI Host Adapters
qlxgb(4)                 - QLogic 10 Gigabit Ethernet & CNA Adapter Driver
I would suggest trying to load the isp driver (kldload isp) and then try the ispfw driver followed by isp is that doesn't work.

If it does show up, add the following to /boot/loader.conf. (Only add the first line if you need it)

Code:
ispfw_load="YES"
isp_load="YES"
I did spend a few days trying to get a fibre channel card 12-18 months ago though and gave up in the end. The driver would load and find the card but I never got a connection to the disk array. I ended up putting Linux ( ) on which connected up immediately.
Reply With Quote
  #6  
Old July 17th, 2012, 21:53
jalla's Avatar
jalla jalla is offline
Member
 
Join Date: Aug 2009
Location: Bergen, Norway
Posts: 338
Thanks: 12
Thanked 70 Times in 59 Posts
Default

Quote:
Originally Posted by usdmatt View Post
The manual shows sis(4) as a network card driver for the SiS chipset... Also I see no reason why compiling a driver into the kernel would make a device work when loading the driver dynamically doesn't.
I can't explain how I managed to mix sis(4) with isp(4), but I can assure you I hadn't been smoking anything at the time

The thing with compiling it into the kernel is from personal experiance
__________________
Practical latin
Amicule, deliciae, num is sum qui mentiar tibi?
But dear, could I ever lie to you?
Reply With Quote
  #7  
Old July 21st, 2012, 16:07
ftrinc ftrinc is offline
Junior Member
 
Join Date: Jul 2012
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
Default

hello, it says i dont have apropos installed or git. any help there?
Reply With Quote
  #8  
Old July 21st, 2012, 16:21
wblock@'s Avatar
wblock@ wblock@ is offline
Moderator
 
Join Date: Sep 2009
Location: Milky Way galaxy
Posts: 7,850
Thanks: 444
Thanked 1,828 Times in 1,494 Posts
Default

Quote:
Originally Posted by ftrinc View Post
hello, it says i dont have apropos installed or git. any help there?
What version of FreeBSD? Also, please show the exact error message.
Reply With Quote
  #9  
Old July 21st, 2012, 17:51
ftrinc ftrinc is offline
Junior Member
 
Join Date: Jul 2012
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
Default

i have freenas. but the freenas forum told me to post on here, bc its built off of freebsd. i have never used any bsd just linux. im still new. so any help is great. freenas 8 is what i have
Reply With Quote
  #10  
Old July 21st, 2012, 20:39
wblock@'s Avatar
wblock@ wblock@ is offline
Moderator
 
Join Date: Sep 2009
Location: Milky Way galaxy
Posts: 7,850
Thanks: 444
Thanked 1,828 Times in 1,494 Posts
Default

Thread title updated. It's important to realize that FreeNAS is a customized version of FreeBSD, not a full FreeBSD install, which would have apropos(1).

apropos(1) doesn't really matter, it's just a way to search through man pages. No idea why FreeNAS would suggest using git, but maybe that's a typo or part of whatever shell they are using.
Reply With Quote
  #11  
Old July 23rd, 2012, 18:06
ftrinc ftrinc is offline
Junior Member
 
Join Date: Jul 2012
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
Default

so there is no way of getting this working?
Reply With Quote
  #12  
Old July 23rd, 2012, 18:16
wblock@'s Avatar
wblock@ wblock@ is offline
Moderator
 
Join Date: Sep 2009
Location: Milky Way galaxy
Posts: 7,850
Thanks: 444
Thanked 1,828 Times in 1,494 Posts
Default

If the matching FreeBSD version has a working driver, you might be able to copy just the kernel module from that version of FreeBSD.
Reply With Quote
Reply

Thread Tools
Display Modes

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 On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Installing a new USB PCI card ryladine System Hardware 12 September 24th, 2011 16:26
[Solved] installing linux driver for wlan card StaticPhilly System Hardware 2 May 15th, 2010 10:50
[Solved] Problem installing intel 10gbe XF SR Dual adapter card Jayuqo System Hardware 8 April 13th, 2010 12:13
[Solved] Installing iwn firmware for Intel 4965AGN wifi card overmind System Hardware 3 August 25th, 2009 22:09
Help Installing Realtek rtl8185 wireless 54M PCI card (TP-Link TL-WN353GD) Lego Installing & Upgrading 20 December 4th, 2008 19:02


All times are GMT +1. The time now is 15:18.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2013, vBulletin Solutions, Inc.
The mark FreeBSD is a registered trademark of The FreeBSD Foundation and is used by The FreeBSD Project with the permission of The FreeBSD Foundation.
Web protection and acceleration provided by CloudFlare
0