LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   new to linux (https://www.linuxquestions.org/questions/linux-newbie-8/new-to-linux-583384/)

intheshadows 09-09-2007 10:11 AM

new to linux
 
hi im trying to set up a wireless usb adapter but i need to use wlan0 but its not there

[root@localhost ~]# iwconfig wlan0
wlan0 No such device

how do i set it up to use wlan0

im using fedora 7

the wireless adapter is
belkin wireless usb adapter F5D7051

(and i know its a pain)

jay73 09-09-2007 10:14 AM

Have a look at System > Administration > Network. Does it list the wireless or not? If not your driver is not installed or not working for some reason.

tommytomthms5 09-09-2007 10:19 AM

i use the same wireless thing its a major pain infact 70% or more are never gonna work on linux because of the chipset its just not compatible

b0uncer 09-09-2007 10:20 AM

It could also be called eth1 (eth0 would be your wired ethernet connection, if any). On some systems eth1 is the default, and wlan0 can be used via alias. But before either one of those is there, you need to have the wireless card powered on (for example laptops have a button to power it on) and then a correct, working driver for the wireless device installed and loaded (a kernel module which needs to be modprobe'd before it works, should be loaded during boot).

Code:

lsmod
This lists the loaded modules (except for those built directly into the kernel). See if your wireless driver is mentioned; otherwise you need to use modprobe as root to load it.

EDIT:
Quote:

i use the same wireless thing its a major pain infact 70% or more are never gonna work on linux because of the chipset its just not compatible
That's not true; a device is not Linux compatible or not, either there is a working driver for it, or then not - and if not, then it's a matter of somebody writing it. I don't know of any wireless device that would not work with Linux no matter what. It's simply a matter of having a correct driver and configuration.

tommytomthms5 09-09-2007 10:30 AM

well im sorry then what i meant is that a working driver for the dominant chipset of that model number (yes the company made 2 chipsets for the exact same model) has not been written yet

in other words its not compatible right now but i dont think its popular enough for there to be much of a reson to write a driver for it..... for it will be obsolete very soon

intheshadows 09-09-2007 10:31 AM

not sure what to look for
 
i typed lsmod but im not sure what to look for and its not got the driver installed yet

Edit i tried using BCMRNDIS.INF it installed the driver but didnt work

b0uncer 09-09-2007 10:40 AM

Quote:

i typed lsmod but im not sure what to look for and its not got the driver installed yet
Ok you can forget lsmod until the driver's installed..are you trying to use NDISwrapper to get it working (one of your best chances right now I guess)? If so, first install ndiswrapper and ndiswrapper-utils. Should be available trough yum (or use your graphical package manager - launch from the menu!). After installing ndiswrapper (as new versions of any packages available for it), obtain the right Windows drivers for the wireless card (you need a .inf and .sys file from the driver package; you may need to do some work to find them), put them into some directory, then open a terminal and use 'cd' command to move to that directory, and install the drivers for NDISwrapper like this:
Code:

su
<type your root password and press ENTER>
/sbin/ndiswrapper -i windows-driver-file.inf

If it went ok, see if it's working:
Code:

/sbin/ndiswrapper -l
should tell you that driver is loaded and hardware is present. Otherwise the driver is probably wrong. If it went all right,
Code:

/sbin/ndiswrapper -m
and see if it now works :)

intheshadows 09-09-2007 10:44 AM

okay thanks i tried yum install ndiswrapper and after some output it said nothing to do

b0uncer 09-09-2007 10:49 AM

Ok, then download the rpm files from rpm.pbone.net; if you're using a 32-bit Fedora 7, download this file or if you're using 64-bit, then download this file. Once done, double-click on it and see if it installs..if not, try to get the depending packages off yum.

intheshadows 09-09-2007 11:10 AM

when i have the drivers in a folder do i use make then make install then use ndiswrapper -i

AceofSpades19 09-09-2007 12:39 PM

no make and make install, just install them with ndiswrapper -i

intheshadows 09-09-2007 12:49 PM

how do i Disable config 4stacks option, recompile and install kernel

AceofSpades19 09-09-2007 12:54 PM

you don't need do that, my wireless drivers worked fine without doing that

intheshadows 09-09-2007 02:25 PM

right ive install the driver

[root@localhost bcmrndis]# ndiswrapper -l
bcmrndis : driver installed
device (050D:7051) present (alternate driver: rt2500us

[root@localhost bcmrndis]# ndiswrapper -m
adding "alias wlan0 ndiswrapper" to /etc/modprobe.d/ndiswrapper ...
[root@localhost bcmrndis]# ifconfig wlan0 up
wlan0: unknown interface: No such device


but it shows no wireless extensions how do i set it to wlan0

AceofSpades19 09-09-2007 08:25 PM

you need to run
modprobe ndiswrapper


All times are GMT -5. The time now is 12:29 PM.