Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 24

Thread: no wireless icon / option after updating ubuntu 12.10

  1. #11
    Join Date
    Aug 2011
    Location
    Berlin, Germany
    Beans
    7,970
    Distro
    Ubuntu Mate 20.04 Focal Fossa

    Re: no wireless icon / option after updating ubuntu 12.10

    Try to add the product and vendor ID to the driver rt2800usb:
    Code:
    echo 'install rt2800usb modprobe --ignore-install rt2800usb ; /bin/echo "2001 3c1e" > /sys/bus/usb/drivers/rt2800usb/new_id' | sudo tee /etc/modprobe.d/rt2800usb.conf
    This is one line, you better copy/paste it. Reload the driver:
    Code:
    sudo modprobe -rfv b43
    sudo modprobe -v rt2800usb
    Check:
    Code:
    iwconfig
    lsmod
    dmesg | grep rt2
    rfkill list
    sudo iwlist scan
    To uninstall the wrong driver:
    Code:
    sudo dkms remove -m Ralink_5370sta -v 2.5.0.3 --all

  2. #12
    Join Date
    Feb 2013
    Beans
    13

    Re: no wireless icon / option after updating ubuntu 12.10

    I have no words, great thank you
    can you explain what I just did and how to avoid it on the next update

  3. #13
    Join Date
    Feb 2013
    Beans
    13

    Re: no wireless icon / option after updating ubuntu 12.10

    oops, after restart the wireless is gone again

  4. #14
    Join Date
    Aug 2011
    Location
    Berlin, Germany
    Beans
    7,970
    Distro
    Ubuntu Mate 20.04 Focal Fossa

    Re: no wireless icon / option after updating ubuntu 12.10

    Please show after rebooting:
    Code:
    lsmod
    egrep 'rt2|b43|rt5|rt7' /etc/modprobe.d/*
    cat /etc/modules
    You added the ID of the stick 2001:3c1E to the native driver rt2800usb, when this stick is plugged in.

  5. #15
    Join Date
    Feb 2013
    Beans
    13

    Re: no wireless icon / option after updating ubuntu 12.10

    ok did it,but it doesnt stick after restart.
    still no wireless

  6. #16
    Join Date
    Aug 2011
    Location
    Berlin, Germany
    Beans
    7,970
    Distro
    Ubuntu Mate 20.04 Focal Fossa

    Re: no wireless icon / option after updating ubuntu 12.10

    Please show the outputs.

  7. #17
    Join Date
    Feb 2013
    Beans
    13

    Re: no wireless icon / option after updating ubuntu 12.10

    here:
    shai@shai:~$ lsmod
    Module Size Used by
    bnep 17708 2
    rfcomm 37277 0
    coretemp 13169 0
    kvm_intel 126746 0
    parport_pc 31969 0
    kvm 357807 1 kvm_intel
    bluetooth 183270 10 bnep,rfcomm
    ppdev 12818 0
    snd_hda_codec_realtek 63496 1
    binfmt_misc 17261 1
    snd_hda_intel 32516 3
    snd_hda_codec 111548 2 snd_hda_codec_realtek,snd_hda_intel
    snd_hwdep 13273 1 snd_hda_codec
    snd_pcm 80235 2 snd_hda_intel,snd_hda_codec
    snd_seq_midi 13133 0
    snd_rawmidi 25383 1 snd_seq_midi
    snd_seq_midi_event 14476 1 snd_seq_midi
    snd_seq 51281 2 snd_seq_midi,snd_seq_midi_event
    snd_timer 24412 2 snd_pcm,snd_seq
    snd_seq_device 14138 3 snd_seq_midi,snd_rawmidi,snd_seq
    snd 62146 15 snd_hda_codec_realtek,snd_hda_intel,snd_hda_codec, snd_hwdep,snd_pcm,snd_rawmidi,snd_seq,snd_timer,sn d_seq_device
    mac_hid 13038 0
    microcode 18210 0
    b43 347311 0
    mac80211 461203 1 b43
    serio_raw 13032 0
    cfg80211 175574 2 b43,mac80211
    bcma 34484 1 b43
    lpc_ich 16926 0
    ssb 50088 1 b43
    soundcore 14600 1 snd
    snd_page_alloc 14037 2 snd_hda_intel,snd_pcm
    mei 35797 0
    i915 457247 3
    drm_kms_helper 47304 1 i915
    drm 238811 4 i915,drm_kms_helper
    i2c_algo_bit 13198 1 i915
    video 18848 1 i915
    lp 13300 0
    parport 40754 3 parport_pc,ppdev,lp
    hid_generic 12485 0
    usbhid 41734 0
    hid 82179 2 hid_generic,usbhid
    r8169 55977 0
    shai@shai:~$ egrep 'rt2|b43|rt5|rt7' /etc/modprobe.d/*
    /etc/modprobe.d/blacklist.conf:# replaced by b43 and ssb.
    /etc/modprobe.d/blacklist.conf:blacklist rt2800usb
    /etc/modprobe.d/blacklist.conf:blacklist rt2870sta
    /etc/modprobe.d/blacklist.conf~:# replaced by b43 and ssb.
    /etc/modprobe.d/rt2800usb.conf:install rt2800usb modprobe --ignore-install rt2800usb ; /bin/echo "2001 3c1e" > /sys/bus/usb/drivers/rt2800usb/new_id
    shai@shai:~$ cat /etc/modules
    # /etc/modules: kernel modules to load at boot time.
    #
    # This file contains the names of kernel modules that should be loaded
    # at boot time, one per line. Lines beginning with "#" are ignored.

    loop
    lp
    b43

  8. #18
    Join Date
    Aug 2011
    Location
    Berlin, Germany
    Beans
    7,970
    Distro
    Ubuntu Mate 20.04 Focal Fossa

    Re: no wireless icon / option after updating ubuntu 12.10

    Open the file:
    Code:
    gksu gedit /etc/modprobe.d/blacklist.conf
    and remove the line:
    Code:
    blacklist rt2800usb
    Save and close. After that open this file:
    Code:
    gksu gedit /etc/modules
    and remove b43. Save, close and reboot. Or instead of rebooting, load the driver:
    Code:
    sudo modprobe -rfv b43
    sudo modprobe rt2800usb
    Check again:
    Code:
    iwconfig
    dmesg | grep rt2
    sudo iwlist scan
    rfkill list
    Last edited by praseodym; February 12th, 2013 at 11:20 PM.

  9. #19
    Join Date
    Apr 2009
    Beans
    Hidden!

    Re: no wireless icon / option after updating ubuntu 12.10

    I had this SAME PROBLEM AND FIXED IT! Stop using the Windows/Proprietary driver and use the generic one included with Ubuntu. BAM! Should work....

  10. #20
    Join Date
    Feb 2013
    Beans
    13

    Re: no wireless icon / option after updating ubuntu 12.10

    OK did it still after restart wireless is gone
    shai@shai:~$ lsmod
    Module Size Used by
    rfcomm 37277 0
    parport_pc 31969 0
    ppdev 12818 0
    bnep 17708 2
    bluetooth 183270 10 rfcomm,bnep
    snd_hda_codec_realtek 63496 1
    coretemp 13169 0
    kvm_intel 126746 0
    kvm 357807 1 kvm_intel
    binfmt_misc 17261 1
    snd_hda_intel 32516 3
    snd_hda_codec 111548 2 snd_hda_codec_realtek,snd_hda_intel
    snd_hwdep 13273 1 snd_hda_codec
    snd_pcm 80235 2 snd_hda_intel,snd_hda_codec
    snd_seq_midi 13133 0
    snd_rawmidi 25383 1 snd_seq_midi
    snd_seq_midi_event 14476 1 snd_seq_midi
    snd_seq 51281 2 snd_seq_midi,snd_seq_midi_event
    snd_timer 24412 2 snd_pcm,snd_seq
    snd_seq_device 14138 3 snd_seq_midi,snd_rawmidi,snd_seq
    mac_hid 13038 0
    snd 62146 15 snd_hda_codec_realtek,snd_hda_intel,snd_hda_codec, snd_hwdep,snd_pcm,snd_rawmidi,snd_seq,snd_timer,sn d_seq_device
    microcode 18210 0
    i915 457247 3
    drm_kms_helper 47304 1 i915
    drm 238811 4 i915,drm_kms_helper
    i2c_algo_bit 13198 1 i915
    video 18848 1 i915
    serio_raw 13032 0
    soundcore 14600 1 snd
    snd_page_alloc 14037 2 snd_hda_intel,snd_pcm
    lpc_ich 16926 0
    mei 35797 0
    lp 13300 0
    parport 40754 3 parport_pc,ppdev,lp
    hid_generic 12485 0
    usbhid 41734 0
    hid 82179 2 hid_generic,usbhid
    r8169 55977 0
    shai@shai:~$ egrep 'rt2|b43|rt5|rt7' /etc/modprobe.d/*
    /etc/modprobe.d/blacklist.conf:# replaced by b43 and ssb.
    /etc/modprobe.d/blacklist.conf:blacklist rt2870sta
    /etc/modprobe.d/blacklist.conf~:# replaced by b43 and ssb.
    /etc/modprobe.d/blacklist.conf~:blacklist rt2800usb
    /etc/modprobe.d/blacklist.conf~:blacklist rt2870sta
    /etc/modprobe.d/rt2800usb.conf:install rt2800usb modprobe --ignore-install rt2800usb ; /bin/echo "2001 3c1e" > /sys/bus/usb/drivers/rt2800usb/new_id
    shai@shai:~$ cat /etc/modules

Page 2 of 3 FirstFirst 123 LastLast

Bookmarks

Posting Permissions

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