Does anyone have wireless with Fedora?

  • Thread starter Thread starter Townsend
  • Start date Start date
  • Tags Tags
    Wireless
AI Thread Summary
Fedora installation on a laptop is generally smooth, but users may face challenges with wireless card drivers. The ndiswrapper tool allows Windows drivers to be used in Linux, though it can be complex for novices. A user sought assistance with installing a driver for a Gigabyte GN-WPEAG wireless network PCI Adapter, which is believed to use an Atheros chipset. Recommendations included using the madwifi driver and provided detailed steps for installing ndiswrapper, including downloading the necessary files, extracting them, and configuring the system to recognize the wireless card. After following the instructions, the user successfully connected to the internet and expressed interest in addressing video card driver issues next, noting that ATI drivers for Linux are less reliable compared to Nvidia's.
Townsend
Messages
232
Reaction score
0
I just installed Fedora on my laptop and it works pretty good, no major problems or anything like that. My only complaint is the lack of drivers for wireless cards. there is something called ndiswrap that can be used to make your window drivers work in linux but it is pretty complicated to do and I am a total novice. Have any of you gone through this process of installing a windows driver for your wireless card?

If so maybe you could help me out with some advice on how this is done.

Thanks
 
Computer science news on Phys.org
What wireless card are you using?
 
Gigabyte GN-WPEAG wireless network PCI Adapter

I have checked everywhere for drivers. The link you provided has some Ndis wrapper drivers there too but like I said they seem pretty complicated to install.


I appreciate the help..
 
Installing a windows driver with ndiswrapper isn't that hard. Here is some simplified instructions:

1. Make sure you have the kernel sources installed. On the fedora cd it is called the kernel development packages.

2. Download ndiswrapper:
http://prdownloads.sourceforge.net/ndiswrapper/ndiswrapper-1.0.tar.gz?download

3. Extract ndiswrapper with the following command-line statement:

tar -zxvf <whatever your file is called.tar.gz>

Just put the filename.tar.gz of ndiswrapper after the -zxvf

4. cd <ndiswrapper directory>

When the files get extracted see which folder was created.

5. su

Enter your root password when prompted

6. make

7. make install

8. Go to windows and download the driver for the the card:

http://www.giga-byte.com/Download/Download.asp?DownloadPath=/Communication/FileList/Driver/wpeag.v.3.1.2.21.02.zip

9. Unzip the file.

10. Find the .inf and .sys files and put them on a floppy or whatever to transfer them over to linux

11. Go back to linux and copy over the files into a directory. You can create a directory by doing:

mkdir <directory name>

12. type:

su

enter root password when prompted

12. Enter that directly and type the following:

ndiswrapper -i <filename.inf>

followed by

ndiswrapper -l

13. add the following lines to /etc/modprobe.conf

options ndiswrapper if_name=eth0
alias eth0 ndiswrapper

13. type:

modprobe ndiswrapper

14. type:

dhcpcd eth0

15. At this time you should be able to connect to the internet. If not try adding eth0 in the fedora network configurations located in the systems menu or somewhere around there.

16. If all is good run this command:

ndiswrapper -m

17. Finally add the following line in /etc/modules.conf (I think that's what it is called in fedora)

ndiswrapper

-----

If you still have problems just ask
 
Last edited by a moderator:
Ok...It is working now. I guess there is just some syntax I am going to have to learn. It took me a while but now it is working very good.

Now to my video card driver...I have an ati 9700 mobility. I have not tried anything yet so it might not be too bad. If I have any more problems I will ask you guys.

Thank you very much for all the help
 
Good to hear that. ATI doesn't have the greatest linux drivers but it should work. Nvidia, by far, has the best drivers.
 

Similar threads

Back
Top