Welcome to Linux Forums! With a comprehensive Linux Forum, information on various types of Linux software and many Linux Reviews articles, we have all the knowledge you need a click away, or accessible via our knowledgeable members.
Write an article for LinuxForums Today! Win Great Prizes!
Find the answer to your Linux question:
New to Linux Forums? Register here for free!
    Linux Forums > GNU Linux Zone > Wireless Internet > I can't connect to Wifi using Fedora 10. Help please.

Forgot Password?
 Wireless Internet   Anything related to getting wireless set up in Linux. WLAN, WiFi, etc.

Site Navigation
Linux Articles
Linux Forums
Linux Downloads
Linux Hosting
Free Magazines
Job Board
IRC Chat
RSS Feeds
Linux Forum Topics
Linux Forums
Your Distro
Linux Resources
GNU Linux Zone
The Community
Reply
 
Thread Tools Display Modes
Old 09-22-2009   #31 (permalink)
Trusted Penguin
 
waterhead's Avatar
 
Join Date: Jul 2004
Location: Franklin, Wisconsin
Posts: 4,345
Since you are running this kernel:
Code:
2.6.30.5-43.fc11.i686.PAE
It doesn't appear to have a pre-made module available from RPM Fusion. You could try installing this package, and see if it helps:

RepoView: RPM Fusion (Fedora - free - released) 11 (i386)

Otherwise, you may need to install NDISwrapper from source, and compile your own kernel module. I don't know where to get the source from, though.
__________________
Paul

Please do not PM me with requests for help. I will not reply.
waterhead is offline  



Reply With Quote
Old 09-22-2009   #32 (permalink)
Just Joined!
 
Join Date: Sep 2009
Posts: 20
Helo.

I try to download and install the link but..

Code:
Test Transaction Errors:   package kernel-PAE-2.6.30.5-43.fc11.i686 (which is newer than kernel-PAE-2.6.29.4-167.fc11.i686) is already installed
HDLA is offline   Reply With Quote
Old 09-23-2009   #33 (permalink)
Trusted Penguin
 
waterhead's Avatar
 
Join Date: Jul 2004
Location: Franklin, Wisconsin
Posts: 4,345
At this point I would forget about trying to install Ndiswrapper from a repository. Your kernel seems to be too new for that. You should uninstall the version that you have installed, completely. Then download and compile it from source, available from here:

Download ndiswrapper from SourceForge.net

There is an INSTALL file in the package with instructions.
__________________
Paul

Please do not PM me with requests for help. I will not reply.
waterhead is offline   Reply With Quote
Old 09-23-2009   #34 (permalink)
Just Joined!
 
Join Date: Sep 2009
Posts: 20
Thanks waterhead.

I downloaded the ndiswrapper.rpm from the link. Okay, i read the readme files and from the first part, it says
Code:
Make sure there is a link to the kernel source from
the modules directory. The command

  ls /lib/modules/`uname -r`/build

should have at least 'include' directory and '.config' file.
When i type ls /lib/modules/`uname -r`/build
this is the output
Code:
/lib/modules/2.6.30.5-43.fc11.i686.PAE/build
HDLA is offline   Reply With Quote
Old 09-23-2009   #35 (permalink)
Trusted Penguin
 
waterhead's Avatar
 
Join Date: Jul 2004
Location: Franklin, Wisconsin
Posts: 4,345
You will be building a kernel module, so there are some developmental programs that you need to install first. Some of these you may already have installed. I don't recal the exact names, but I will do my best. The kernel packages must be the same version as your running kernel.

kernel-devel (kernel source)
kernel-headers
gcc (Linux C compiler)
make

The results of the ls command look OK. After installing the kernel source and headers, you can look for the .config file in the kernel source folder (/usr/src/).
Since it starts with a dot, it will be hidden. You will have to tell the file browser to show hidden files. This is usually done somewhere in the menu dropdown lists.

You then should be able to cd to the driver folder, and run the commands. It says to run make uninstall first. This must be to remove any existing version old NDISwrapper, if it gives an error it most likely safe to proceed. Run the make uninstall with root privileges (su), and make command as a regular user, then run the make install command with root privileges (su).

If you get errors, post them so that we can work them out.
__________________
Paul

Please do not PM me with requests for help. I will not reply.

Last edited by waterhead; 09-23-2009 at 10:43 AM.. Reason: needed to be root for make uninstall
waterhead is offline   Reply With Quote
Old 09-23-2009   #36 (permalink)
Trusted Penguin
 
waterhead's Avatar
 
Join Date: Jul 2004
Location: Franklin, Wisconsin
Posts: 4,345
i just tried this on my Ubuntu 9.04 install. First it gave me an error to edit my Makefile, which I did. Then it errored out, with this error.
Code:
/ndiswrapper-1.9/driver/iw_ndis.c: In function ‘ndis_translate_scan’:
/ndiswrapper-1.9/driver/iw_ndis.c:999: warning: passing argument 1 of ‘iwe_stream_add_event’ from incompatible pointer type
/ndiswrapper-1.9/driver/iw_ndis.c:999: warning: passing argument 3 of ‘iwe_stream_add_event’ from incompatible pointer type
/ndiswrapper-1.9/driver/iw_ndis.c:999: warning: passing argument 4 of ‘iwe_stream_add_event’ makes pointer from integer without a cast
/ndiswrapper-1.9/driver/iw_ndis.c:999: error: too few arguments to function ‘iwe_stream_add_event’
I'm not a code monkey, so I have no idea how to correct this error!

I hope you have better results.
__________________
Paul

Please do not PM me with requests for help. I will not reply.
waterhead is offline   Reply With Quote
Old 09-23-2009   #37 (permalink)
Just Joined!
 
Join Date: Sep 2009
Posts: 20
Hello waterhead.

Thanks for the reply.

Okay, things are getting fast, and I really dont get what you say.

How to install the kernel packages or source and headers? What should i do?

Can you tell me what to do in step-by-step? I'm too young for the linux world and I'm not really expert with these stuffs. I'm sorry for that. Thanks.
HDLA is offline   Reply With Quote
Old 09-24-2009   #38 (permalink)
Trusted Penguin
 
waterhead's Avatar
 
Join Date: Jul 2004
Location: Franklin, Wisconsin
Posts: 4,345
Install the kernel and other packages using YUM. I already told you to install the YUM Extension. That should make installing thing easier.

Also, the link to the NDISwrapper source was for an older version. Use this link to get the latest.

Download ndiswrapper from SourceForge.net

Yes, version 1.55 is much newer than version 1.9! Go figure! I'm going to try and compile that one myself.
__________________
Paul

Please do not PM me with requests for help. I will not reply.
waterhead is offline   Reply With Quote
Old 09-24-2009   #39 (permalink)
Trusted Penguin
 
waterhead's Avatar
 
Join Date: Jul 2004
Location: Franklin, Wisconsin
Posts: 4,345
OK, that went pretty smoothly on my Ubuntu 2.6.28 kernel. All I did was run these commands from the unpacked source folder:

sudo make uninstall
make
sudo make install

If you don't have sudo setup, then gain root privileges with the su command. Don't run the make command as root, because the files will then be owned by root. You will then have trouble removing them when you are done.

There is no guarantee that it will work on a 2.6.30 kernel.
__________________
Paul

Please do not PM me with requests for help. I will not reply.
waterhead is offline   Reply With Quote
Old 09-24-2009   #40 (permalink)
Just Joined!
 
Join Date: Sep 2009
Posts: 20
Hello waterhead.

Thanks.

I got the .config in the /usr/src. So what do i do now? Should i paste in on the /lib/modules? If yes, how do i paste it? I try to paste it but the GUI dont allow me to paste files on the /lib/modules. Am i supposed to use the "cp" command on the terminal? But I dont know how to use it.

Then after that, I need to install ndiswrapper 1.55, right?
HDLA is offline   Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
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
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

Free Magazines
A Newbie's Getting Started Guide to Linux
Learn the basics of the Linux operating systems. Get to know what it is all about, and familiarize yourself with the practical side. Basically, if you're a complete Linux newbie and looking for a quick and easy guide to get you started this is it.
subscribe
Run Your Own Web Server Using Linux & Apache - Free 191 Page Preview
Learn about everything you'll need to build and maintain your Linux servers, and to deploy Web applications to them.
subscribe
Open Source Security Myths Dispelled
Dispel the five major myths surrounding Open Source Security and gain the tools necessary to make a truly informed decision for your IT organization
subscribe
InformationWeek
InformationWeek is the only newsweekly you'll need to stay on top of the latest developments in information technology.
subscribe



All times are GMT. The time now is 08:13 AM.






© 2000 - - All Rights Reserved - Property of  MAS Media

Content Relevant URLs by vBSEO 3.3.1