Results 1 to 5 of 5

Thread: comfast cf wu825n on ubuntu 18.04 which software runs the device?

  1. #1
    Join Date
    Aug 2010
    Beans
    171

    comfast cf wu825n on ubuntu 18.04 which software runs the device?

    the wifi card is able to run on trisquel 8 kernel version 4.4.0 178 suggesting it
    can run on free software, cf free software foundation. I have also tested
    the usb wifi card on ubuntu 18.04 kernel version 4.15.0 109 and
    it runs. It has a rtl8192cu chip. Pidvid 0bda8178. Can you tell which
    pieces of software on ubuntu 18.04 makes the wifi run? Are
    they free software? Thanks.
    Last edited by ubto66; July 5th, 2020 at 04:25 PM.

  2. #2
    Join Date
    Aug 2005
    Location
    South Carolina, USA
    Beans
    26,047
    Distro
    Ubuntu Development Release

    Re: comfast cf wu825n on ubuntu 18.04 which software runs the device?

    Code:
    $ modinfo rtl8192cu | grep 8178
    alias:          usb:v07B8p8178d*dc*dsc*dp*ic*isc*ip*in*
    alias:          usb:v0BDAp8178d*dc*dsc*dp*ic*isc*ip*in*
    It is clear that the driver rtl8192cu and its associated firmware drive your device. They are free and open source software.

    The device, driver and firmware then require several other pieces of software to actually connect; among them include Network Manager, wpa_supplicant, networkd and several others. They are all free and open source software.
    Last edited by chili555; July 5th, 2020 at 05:19 PM.
    "Oh, Ubuntu, you are my favorite Linux-based operating system" --Dr. Sheldon Cooper, B.Sc., M.Sc., M.A., Ph.D., Sc.D.

  3. #3
    Join Date
    Aug 2011
    Location
    Berlin, Germany
    Beans
    7,971
    Distro
    Ubuntu Mate 20.04 Focal Fossa

    Re: comfast cf wu825n on ubuntu 18.04 which software runs the device?

    Code:
    modprobe -c | grep -i "0bda.*8178"
    alias usb:v0BDAp8178d*dc*dsc*dp*ic*isc*ip*in* rtl8192cu
    alias usb:v0BDAp8178d*dc*dsc*dp*icFFiscFFipFFin* rtl8xxxu
    Ubuntu ships two drivers, regularly, both are loaded, then it doesn't work because of driver conflicts. Blacklist the older rtl8192cu:
    Code:
    echo "blacklist rtl8192cu" | sudo tee /etc/modprobe.d/blacklist-rtl8192cu.conf
    and reboot.

    Code:
    lsmod
    should only show rtl8xxxu then

  4. #4
    Join Date
    Aug 2010
    Beans
    171

    Re: comfast cf wu825n on ubuntu 18.04 which software runs the device?

    driver rtl8192cu and its associated firmware
    Do you know how to get the source software? Or who could tell me where
    to get the source software?

    rtl8xxx will it make
    any of these chips run?

  5. #5
    Join Date
    Aug 2005
    Location
    South Carolina, USA
    Beans
    26,047
    Distro
    Ubuntu Development Release

    Re: comfast cf wu825n on ubuntu 18.04 which software runs the device?

    I believe that you can install the package linux-source and examine the code directly. Please be aware, however, that if you decide to make any changes to, perhaps tweak your wireless performance, that you will need to recompile the kernel; a fairly complicated task best left to those who are quite advanced. Despite my llong service to Linux and Ubuntu, I have never successfully compiled my own kernel.

    As for the firmware, it is located in /lib/firmware. I don't know how to examine it to see exactly what it does and doesn't do. You can see what firmware is called by the driver
    with the terminal command:
    Code:
    modinfo rtl8xxxu | grep firm
    Your 0BDA:8178 device is one of the rare few that are claimed by two probably conflicting drivers: rtl8192cu and rtl8xxxu as my esteemed colleague @praseodym has reminded me. We have learned by experimentation that rtl8xxxu works best.
    "Oh, Ubuntu, you are my favorite Linux-based operating system" --Dr. Sheldon Cooper, B.Sc., M.Sc., M.A., Ph.D., Sc.D.

Tags for this Thread

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
  •