Re: NDIS/KLDload

2006-09-18 Thread Alexander Sashurin

*This message was transferred with a trial version of CommuniGate(r) Pro*
Bill Moran wrote:

*This message was transferred with a trial version of CommuniGate(r) Pro*
Joel Adamson [EMAIL PROTECTED] wrote:

  

Dear List,

I need to get the internet up and running on my new FreeBSD6.1 install.  I'm 
using a Belkin F5D7050 wireless adapter that is not recognized as a network 
interface in install.  This thing works perfectly with ndiswrapper under linux, 
which is how I'm writing this message.

I tried using NDISulator (ndis), following the handbook instructions to the 
keystroke and when I submit the last step

kldload if_ndis

I get cannot load if_ndis: file exists

What does this mean and how do I get it to actually work?



It generally means that the indicated kld is already in the kernel.
Either it was already loaded, or it was compiled into the kernel.
Are you running GENERIC?  It doesn't look as if ndis is part of the
GENERIC kernel.  Try kldstat(8) to see what's loaded.

  
Yes! It's not build! But the bug still exists.. then yous should try the 
method I described in my previous letter. It should work, as it had 
already helped me with my RT2400 chip adapter.


--
With best regards, 
	Alexander Sashurin a.k.a. ZetRooT or ZetDaemonRoot
- - - - - - - - - - - - - - - - - - - 
| Mailto: [EMAIL PROTECTED] |

| ICQ: 258820442   |
| Mobile: +7-916-195-89-11 |
| irc: irc.wenet.ru, _ZetRooT_ |
- - - - - - - - - - - - - - - - - - - 


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: NDIS/KLDload

2006-09-18 Thread Alexander Sashurin

*This message was transferred with a trial version of CommuniGate(r) Pro*
Jona Joachim wrote:

*This message was transferred with a trial version of CommuniGate(r) Pro*
Bill Moran wrote:
  

Joel Adamson [EMAIL PROTECTED] wrote:



Dear List,

I need to get the internet up and running on my new FreeBSD6.1 install.  I'm 
using a Belkin F5D7050 wireless adapter that is not recognized as a network 
interface in install.  This thing works perfectly with ndiswrapper under linux, 
which is how I'm writing this message.

I tried using NDISulator (ndis), following the handbook instructions to the 
keystroke and when I submit the last step

kldload if_ndis

I get cannot load if_ndis: file exists

What does this mean and how do I get it to actually work?
  

It generally means that the indicated kld is already in the kernel.



The easiest is to unload it and load it again.

kldunload if_ndis
kldload if_ndis
  

But it wont help! The adapter wont be seen! Try the method i've described..

--
With best regards, 
	Alexander Sashurin a.k.a. ZetRooT or ZetDaemonRoot
- - - - - - - - - - - - - - - - - - - 
| Mailto: [EMAIL PROTECTED] |

| ICQ: 258820442   |
| Mobile: +7-916-195-89-11 |
| irc: irc.wenet.ru, _ZetRooT_ |
- - - - - - - - - - - - - - - - - - - 


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


NDIS/KLDload

2006-09-17 Thread Joel Adamson
Dear List,

I need to get the internet up and running on my new FreeBSD6.1 install.  I'm 
using a Belkin F5D7050 wireless adapter that is not recognized as a network 
interface in install.  This thing works perfectly with ndiswrapper under linux, 
which is how I'm writing this message.

I tried using NDISulator (ndis), following the handbook instructions to the 
keystroke and when I submit the last step

kldload if_ndis

I get cannot load if_ndis: file exists

What does this mean and how do I get it to actually work?

Thank you very much,
Joel
 
Joel J. Adamson 
Arlington, MA




___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: NDIS/KLDload

2006-09-17 Thread Bill Moran
Joel Adamson [EMAIL PROTECTED] wrote:

 Dear List,
 
 I need to get the internet up and running on my new FreeBSD6.1 install.  I'm 
 using a Belkin F5D7050 wireless adapter that is not recognized as a network 
 interface in install.  This thing works perfectly with ndiswrapper under 
 linux, which is how I'm writing this message.
 
 I tried using NDISulator (ndis), following the handbook instructions to the 
 keystroke and when I submit the last step
 
 kldload if_ndis
 
 I get cannot load if_ndis: file exists
 
 What does this mean and how do I get it to actually work?

It generally means that the indicated kld is already in the kernel.
Either it was already loaded, or it was compiled into the kernel.
Are you running GENERIC?  It doesn't look as if ndis is part of the
GENERIC kernel.  Try kldstat(8) to see what's loaded.

-- 
Bill Moran

That's why I never kiss 'em on the mouth.

Jayne Cobb

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: NDIS/KLDload

2006-09-17 Thread Alexander Sashurin

*This message was transferred with a trial version of CommuniGate(r) Pro*
Joel Adamson wrote:

Dear List,

I need to get the internet up and running on my new FreeBSD6.1 install.  I'm 
using a Belkin F5D7050 wireless adapter that is not recognized as a network 
interface in install.  This thing works perfectly with ndiswrapper under linux, 
which is how I'm writing this message.

I tried using NDISulator (ndis), following the handbook instructions to the 
keystroke and when I submit the last step

kldload if_ndis

I get cannot load if_ndis: file exists

What does this mean and how do I get it to actually work?

Thank you very much,
Joel
 
Joel J. Adamson 
Unfortunately, I don't know what's the reason of this bug, but i have 
found a way to get over it. I had the same problems with my MSI PC11B2 
adapter. try this method, using ndisgen:


ndisgen
  ... here we answer interactive questions and get tnet1130_sys.ko on 
out...

  cp tnet1130_sys.ko /boot/kernel/
  kldload ndis
  kldload if_ndis
  kldload tnet1130_sys

for automatic load write the following into /boot/loader.conf :
ndis_load=YES
  if_ndis_load=YES
  tnet1130_sys_load=YES

this method had helped me, i think it'll work in your case too.

--
With best regards, 
	Alexander Sashurin a.k.a. ZetRooT or ZetDaemonRoot
- - - - - - - - - - - - - - - - - - - 
| Mailto: [EMAIL PROTECTED] |

| ICQ: 258820442   |
| Mobile: +7-916-195-89-11 |
| irc: irc.wenet.ru, _ZetRooT_ |
- - - - - - - - - - - - - - - - - - - 


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: NDIS/KLDload

2006-09-17 Thread Jona Joachim
Bill Moran wrote:
 Joel Adamson [EMAIL PROTECTED] wrote:
 
 Dear List,

 I need to get the internet up and running on my new FreeBSD6.1 install.  I'm 
 using a Belkin F5D7050 wireless adapter that is not recognized as a network 
 interface in install.  This thing works perfectly with ndiswrapper under 
 linux, which is how I'm writing this message.

 I tried using NDISulator (ndis), following the handbook instructions to the 
 keystroke and when I submit the last step

 kldload if_ndis

 I get cannot load if_ndis: file exists

 What does this mean and how do I get it to actually work?
 
 It generally means that the indicated kld is already in the kernel.

The easiest is to unload it and load it again.

kldunload if_ndis
kldload if_ndis

--jona
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]