Find the answer to your Linux question:
Results 1 to 3 of 3
After installing the driver for my wireless card (Realtek 8187se) with ndiswrapper I'm still not able to detect any wifi networks, ndiswrapper -l says that both the driver and hardware ...
  1. #1
    Just Joined!
    Join Date
    Apr 2010
    Posts
    2

    Wifi issues

    After installing the driver for my wireless card (Realtek 8187se) with ndiswrapper I'm still not able to detect any wifi networks, ndiswrapper -l says that both the driver and hardware are present, have I missed something here? I'm new to fedora and linux in general, so i'm not sure what the problem can be...I'm running fedora 12 with kernal 2.6.32.11-99.fc12.i686 if thats any help.

    Thanks :]

  2. #2
    Linux Guru reed9's Avatar
    Join Date
    Feb 2009
    Location
    Boston, MA
    Posts
    4,651
    There is a linux driver for this card. Just to double check the chipset, though, can you post the output of
    Code:
    /sbin/lspci -vnn
    lsmod
    The linux driver is in the staging area of the kernel, meaning it still needs work or is otherwise not the best quality, but it should work. There are staging drivers for Fedora available from rpmfusion.

    Enable rpmfusion repo
    Code:
    su -
    rpm -Uvh http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-stable.noarch.rpm
    Install staging drivers (still as root)
    Code:
    yum install kmod-staging*
    Unload ndiswrapper and load rtl module (still as root)
    Code:
    modprobe -r ndiswrapper
    modprobe rtl8187se
    depmod -a
    You may need to restart the network manager.
    Code:
    service NetworkManager restart

  3. #3
    Just Joined!
    Join Date
    Apr 2010
    Posts
    2
    lspci outputs the following:
    00:00.0 Host bridge: Intel Corporation Mobile 915GM/PM/GMS/910GML Express Processor to DRAM Controller (rev 04)
    00:02.0 VGA compatible controller: Intel Corporation Mobile 915GM/GMS/910GML Express Graphics Controller (rev 04)
    00:02.1 Display controller: Intel Corporation Mobile 915GM/GMS/910GML Express Graphics Controller (rev 04)
    00:1b.0 Audio device: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) High Definition Audio Controller (rev 04)
    00:1c.0 PCI bridge: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) PCI Express Port 1 (rev 04)
    00:1c.1 PCI bridge: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) PCI Express Port 2 (rev 04)
    00:1c.2 PCI bridge: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) PCI Express Port 3 (rev 04)
    00:1d.0 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #1 (rev 04)
    00:1d.1 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #2 (rev 04)
    00:1d.2 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #3 (rev 04)
    00:1d.3 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #4 (rev 04)
    00:1d.7 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB2 EHCI Controller (rev 04)
    00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev d4)
    00:1f.0 ISA bridge: Intel Corporation 82801FBM (ICH6M) LPC Interface Bridge (rev 04)
    00:1f.2 IDE interface: Intel Corporation 82801FBM (ICH6M) SATA Controller (rev 04)
    00:1f.3 SMBus: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) SMBus Controller (rev 04)
    01:00.0 Network controller: Realtek Semiconductor Co., Ltd. RTL8187SE Wireless LAN Controller (rev 22)
    03:00.0 Ethernet controller: Attansic Technology Corp. Atheros AR8121/AR8113/AR8114 PCI-E Ethernet Controller (rev b0)
    I went for --skip-broken during the install to resolve the errors I kept getting, hopefully that won't affect anything.
    However, for now, I'm online and fully functional - thank you for your help!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...