LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Networking (https://www.linuxquestions.org/questions/linux-networking-3/)
-   -   problem installing rtl8188eus on kali linux kernal 4.19 (https://www.linuxquestions.org/questions/linux-networking-3/problem-installing-rtl8188eus-on-kali-linux-kernal-4-19-a-4175656175/)

rsain3000 06-22-2019 12:56 AM

problem installing rtl8188eus on kali linux kernal 4.19
 
i wanna i install realtek rtl8188ftv*(i google out my adaptor) wifi adpater on my 02.2019 kali linux

output of uname -a:
Code:

Linux baba 4.19.0-kali4-amd64 #1 SMP Debian 4.19.28-2kali1 (2019-03-18) x86_64 GNU/Linux


the script of auto-install of adapter of install.sh is:
Code:

#!/bin/bash
# Auto install for 8192cu
# September, 1 2010 v1.0.0, willisTang
#
# Add make_drv to select chip type
# Novembor, 21 2011 v1.1.0, Jeff Hung
################################################################################

echo "##################################################"
echo "Realtek Wi-Fi driver Auto installation script"
echo "Novembor, 21 2011 v1.1.0"
echo "##################################################"

################################################################################
#            Decompress the driver source tal ball
################################################################################
cd driver
Drvfoulder=`ls |grep .tar.gz`
echo "Decompress the driver source tar ball:"
echo "    "$Drvfoulder
tar zxvf $Drvfoulder

Drvfoulder=`ls |grep -iv '.tar.gz'`
echo "$Drvfoulder"
cd  $Drvfoulder

################################################################################
#            If makd_drv exixt, execute it to select chip type
################################################################################
if [ -e ./make_drv ]; then
    ./make_drv
fi

################################################################################
#                      make clean
################################################################################
echo "Authentication requested [root] for make clean:"
if [ "`uname -r |grep fc`" == " " ]; then
        sudo su -c "make clean"; Error=$?
else
        su -c "make clean"; Error=$?
fi

################################################################################
#            Compile the driver
################################################################################
echo "Authentication requested [root] for make driver:"
if [ "`uname -r |grep fc`" == " " ]; then
    sudo su -c make; Error=$?
else   
    su -c make; Error=$?
fi
################################################################################
#            Check whether or not the driver compilation is done
################################################################################
module=`ls |grep -i 'ko'`
echo "##################################################"
if [ "$Error" != 0 ];then
    echo "Compile make driver error: $Error"
    echo "Please check error Mesg"
    echo "##################################################"
    exit
else
    echo "Compile make driver ok!!"   
    echo "##################################################"
fi

if [ "`uname -r |grep fc`" == " " ]; then
    echo "Authentication requested [root] for remove driver:"
    sudo su -c "rmmod $module"
    echo "Authentication requested [root] for insert driver:"
    sudo su -c "insmod $module"
    echo "Authentication requested [root] for install driver:"
    sudo su -c "make install"
else
    echo "Authentication requested [root] for remove driver:"
    su -c "rmmod $module"
    echo "Authentication requested [root] for insert driver:"
    su -c "insmod $module"
    echo "Authentication requested [root] for install driver:"
    su -c "make install"
fi
echo "##################################################"
echo "The Setup Script is completed !"
echo "##################################################"

when i run this i got this following error
Code:

root@baba:/usbcontent/linux/RTL8188EUS_linux_v4.1.4_6773.20130222# ./install ##################################################
Realtek Wi-Fi driver Auto installation script
Novembor, 21 2011 v1.1.0
##################################################
Decompress the driver source tar ball:
    rtl8188EUS_linux_v4.1.4_6773.20130222.tar.gz
rtl8188EUS_linux_v4.1.4_6773.20130222/
rtl8188EUS_linux_v4.1.4_6773.20130222/runwpa
rtl8188EUS_linux_v4.1.4_6773.20130222/core/
rtl8188EUS_linux_v4.1.4_6773.20130222/core/rtw_xmit.c
rtl8188EUS_linux_v4.1.4_6773.20130222/core/rtw_ioctl_query.c
rtl8188EUS_linux_v4.1.4_6773.20130222/core/rtw_bt_mp.c
rtl8188EUS_linux_v4.1.4_6773.20130222/core/efuse/
rtl8188EUS_linux_v4.1.4_6773.20130222/core/efuse/rtw_efuse.c
rtl8188EUS_linux_v4.1.4_6773.20130222/core/rtw_recv.c
rtl8188EUS_linux_v4.1.4_6773.20130222/core/rtw_br_ext.c
rtl8188EUS_linux_v4.1.4_6773.20130222/core/rtw_wapi.c
rtl8188EUS_linux_v4.1.4_6773.20130222/core/rtw_eeprom.c
rtl8188EUS_linux_v4.1.4_6773.20130222/core/rtw_debug.c
rtl8188EUS_linux_v4.1.4_6773.20130222/core/rtw_tdls.c
rtl8188EUS_linux_v4.1.4_6773.20130222/core/rtw_p2p.c
rtl8188EUS_linux_v4.1.4_6773.20130222/core/rtw_ieee80211.c
rtl8188EUS_linux_v4.1.4_6773.20130222/core/rtw_security.c
rtl8188EUS_linux_v4.1.4_6773.20130222/core/rtw_cmd.c
rtl8188EUS_linux_v4.1.4_6773.20130222/core/rtw_mlme.c
rtl8188EUS_linux_v4.1.4_6773.20130222/core/rtw_mp.c
rtl8188EUS_linux_v4.1.4_6773.20130222/core/rtw_wapi_sms4.c
rtl8188EUS_linux_v4.1.4_6773.20130222/core/rtw_sreset.c
rtl8188EUS_linux_v4.1.4_6773.20130222/core/rtw_sta_mgt.c
rtl8188EUS_linux_v4.1.4_6773.20130222/core/rtw_rf.c
rtl8188EUS_linux_v4.1.4_6773.20130222/core/rtw_pwrctrl.c
rtl8188EUS_linux_v4.1.4_6773.20130222/core/rtw_wlan_util.c
rtl8188EUS_linux_v4.1.4_6773.20130222/core/rtw_mlme_ext.c
rtl8188EUS_linux_v4.1.4_6773.20130222/core/rtw_io.c
rtl8188EUS_linux_v4.1.4_6773.20130222/core/rtw_ap.c
rtl8188EUS_linux_v4.1.4_6773.20130222/core/rtw_led.c
rtl8188EUS_linux_v4.1.4_6773.20130222/core/rtw_ioctl_rtl.c
rtl8188EUS_linux_v4.1.4_6773.20130222/core/rtw_mp_ioctl.c
rtl8188EUS_linux_v4.1.4_6773.20130222/core/rtw_ioctl_set.c
rtl8188EUS_linux_v4.1.4_6773.20130222/core/rtw_iol.c
rtl8188EUS_linux_v4.1.4_6773.20130222/wlan0dhcp
rtl8188EUS_linux_v4.1.4_6773.20130222/os_dep/
rtl8188EUS_linux_v4.1.4_6773.20130222/os_dep/osdep_service.c
rtl8188EUS_linux_v4.1.4_6773.20130222/os_dep/linux/
rtl8188EUS_linux_v4.1.4_6773.20130222/os_dep/linux/ioctl_linux.c
rtl8188EUS_linux_v4.1.4_6773.20130222/os_dep/linux/recv_linux.c
rtl8188EUS_linux_v4.1.4_6773.20130222/os_dep/linux/os_intfs.c
rtl8188EUS_linux_v4.1.4_6773.20130222/os_dep/linux/pci_ops_linux.c
rtl8188EUS_linux_v4.1.4_6773.20130222/os_dep/linux/custom_gpio_linux.c
rtl8188EUS_linux_v4.1.4_6773.20130222/os_dep/linux/usb_intf.c
rtl8188EUS_linux_v4.1.4_6773.20130222/os_dep/linux/mlme_linux.c
rtl8188EUS_linux_v4.1.4_6773.20130222/os_dep/linux/gspi_intf.c
rtl8188EUS_linux_v4.1.4_6773.20130222/os_dep/linux/pci_intf.c
rtl8188EUS_linux_v4.1.4_6773.20130222/os_dep/linux/sdio_intf.c
rtl8188EUS_linux_v4.1.4_6773.20130222/os_dep/linux/rtw_android.c
rtl8188EUS_linux_v4.1.4_6773.20130222/os_dep/linux/xmit_linux.c
rtl8188EUS_linux_v4.1.4_6773.20130222/os_dep/linux/gspi_ops_linux.c
rtl8188EUS_linux_v4.1.4_6773.20130222/os_dep/linux/usb_ops_linux.c
rtl8188EUS_linux_v4.1.4_6773.20130222/os_dep/linux/sdio_ops_linux.c
rtl8188EUS_linux_v4.1.4_6773.20130222/os_dep/linux/ioctl_cfg80211.c
rtl8188EUS_linux_v4.1.4_6773.20130222/include/
rtl8188EUS_linux_v4.1.4_6773.20130222/include/hal_com.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/wlan_bssdef.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/cmd_osdep.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtw_recv.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtw_mlme_ext.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/wifi.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtl8192c_led.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtl8192d_recv.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/custom_gpio.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/HalPwrSeqCmd.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtl8723a_dm.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtl8188e_dm.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/Hal8192CPhyReg.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/gspi_ops_linux.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtl8723a_pg.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/Hal8192DPhyCfg.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtl8192d_hal.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtl8192c_dm.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtl8192c_rf.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtw_android.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/drv_types_gspi.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtl8192c_recv.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtl8188e_recv.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/nic_spec.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/usb_osintf.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtl8192d_dm.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtl8723a_recv.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtw_xmit.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtl8192c_event.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/Hal8188EPhyReg.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtw_qos.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtw_pwrctrl.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtl8192c_xmit.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtl8192d_spec.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/gspi_hal.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/osdep_ce_service.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/sdio_ops.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtl8723a_sreset.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtl8723a_rf.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/ieee80211.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/recv_osdep.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/drv_types_linux.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtw_efuse.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/gspi_ops.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/sdio_ops_ce.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/usb_ops.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtl8188e_xmit.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtw_ht.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/HalVerDef.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/ioctl_cfg80211.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/ethernet.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/Hal8188EPhyCfg.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/mp_custom_oid.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtw_ioctl_rtl.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/sdio_ops_linux.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/Hal8723APhyCfg.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtl8192c_spec.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtw_mlme.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtl8723a_hal.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/drv_types.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtw_sreset.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/ieee80211_ext.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/drv_types_ce.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/Hal8192CPhyCfg.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/Hal8723APhyReg.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtl8188e_cmd.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtl8188e_rf.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtl8192d_led.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/byteorder/
rtl8188EUS_linux_v4.1.4_6773.20130222/include/byteorder/swab.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/byteorder/swabb.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/byteorder/big_endian.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/byteorder/little_endian.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/byteorder/generic.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtw_mp_ioctl.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/sdio_ops_xp.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/usb_ops_linux.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtl8723a_xmit.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/sdio_osintf.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/Hal8723PwrSeq.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtl8188e_sreset.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtw_p2p.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/pci_hal.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/drv_conf.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/usb_vendor_req.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/linux/
rtl8188EUS_linux_v4.1.4_6773.20130222/include/linux/wireless.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/osdep_service.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtl8188e_hal.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtl8188e_led.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/gspi_osintf.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtw_ioctl_query.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtw_eeprom.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/drv_types_xp.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtl8723a_cmd.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtw_byteorder.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtl8192d_xmit.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtw_version.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtl8723a_spec.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtl8192d_cmd.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtw_ioctl_set.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/h2clbk.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/pci_osintf.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtw_bt_mp.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtw_cmd.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtl8192d_rf.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/pci_ops.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtw_tdls.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtl8192c_cmd.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtw_event.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/mlme_osdep.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtw_debug.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtw_ap.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/osdep_intf.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtw_wapi.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/hal_intf.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/sta_info.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtl8188e_spec.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtw_iol.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtw_mp_phy_regdef.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtw_rf.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/Hal8188EPwrSeq.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/usb_hal.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/autoconf.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtw_security.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/sdio_hal.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtw_io.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/Hal8192DPhyReg.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtw_br_ext.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/circ_buf.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/basic_types.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtl8192c_hal.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/ip.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtw_led.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/if_ether.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/xmit_osdep.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtl8192c_sreset.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtl8723a_bt-coexist.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtw_mp.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtw_ioctl.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/drv_types_sdio.h
rtl8188EUS_linux_v4.1.4_6773.20130222/include/rtl8723a_led.h
rtl8188EUS_linux_v4.1.4_6773.20130222/ifcfg-wlan0
rtl8188EUS_linux_v4.1.4_6773.20130222/Makefile
rtl8188EUS_linux_v4.1.4_6773.20130222/Kconfig
rtl8188EUS_linux_v4.1.4_6773.20130222/hal/
rtl8188EUS_linux_v4.1.4_6773.20130222/hal/OUTSRC/
rtl8188EUS_linux_v4.1.4_6773.20130222/hal/OUTSRC/odm_types.h
rtl8188EUS_linux_v4.1.4_6773.20130222/hal/OUTSRC/HalPhyRf.c
rtl8188EUS_linux_v4.1.4_6773.20130222/hal/OUTSRC/HalPhyRf.h
rtl8188EUS_linux_v4.1.4_6773.20130222/hal/OUTSRC/odm_RegDefine11N.h
rtl8188EUS_linux_v4.1.4_6773.20130222/hal/OUTSRC/odm_precomp.h
rtl8188EUS_linux_v4.1.4_6773.20130222/hal/OUTSRC/rtl8188e/
rtl8188EUS_linux_v4.1.4_6773.20130222/hal/OUTSRC/rtl8188e/Hal8188EReg.h
rtl8188EUS_linux_v4.1.4_6773.20130222/hal/OUTSRC/rtl8188e/HalHWImg8188E_BB.c
rtl8188EUS_linux_v4.1.4_6773.20130222/hal/OUTSRC/rtl8188e/odm_RTL8188E.c
rtl8188EUS_linux_v4.1.4_6773.20130222/hal/OUTSRC/rtl8188e/Hal8188ERateAdaptive.h
rtl8188EUS_linux_v4.1.4_6773.20130222/hal/OUTSRC/rtl8188e/HalHWImg8188E_RF.h
rtl8188EUS_linux_v4.1.4_6773.20130222/hal/OUTSRC/rtl8188e/HalHWImg8188E_RF.c
rtl8188EUS_linux_v4.1.4_6773.20130222/hal/OUTSRC/rtl8188e/HalHWImg8188E_FW.c
rtl8188EUS_linux_v4.1.4_6773.20130222/hal/OUTSRC/rtl8188e/HalPhyRf_8188e.h
rtl8188EUS_linux_v4.1.4_6773.20130222/hal/OUTSRC/rtl8188e/odm_RegConfig8188E.c
rtl8188EUS_linux_v4.1.4_6773.20130222/hal/OUTSRC/rtl8188e/odm_RTL8188E.h
rtl8188EUS_linux_v4.1.4_6773.20130222/hal/OUTSRC/rtl8188e/HalHWImg8188E_MAC.h
rtl8188EUS_linux_v4.1.4_6773.20130222/hal/OUTSRC/rtl8188e/Hal8188EFWImg_CE.c
rtl8188EUS_linux_v4.1.4_6773.20130222/hal/OUTSRC/rtl8188e/HalHWImg8188E_MAC.c
rtl8188EUS_linux_v4.1.4_6773.20130222/hal/OUTSRC/rtl8188e/HalHWImg8188E_BB.h
rtl8188EUS_linux_v4.1.4_6773.20130222/hal/OUTSRC/rtl8188e/Hal8188EFWImg_CE.h
rtl8188EUS_linux_v4.1.4_6773.20130222/hal/OUTSRC/rtl8188e/HalHWImg8188E_FW.h
rtl8188EUS_linux_v4.1.4_6773.20130222/hal/OUTSRC/rtl8188e/odm_RegConfig8188E.h
rtl8188EUS_linux_v4.1.4_6773.20130222/hal/OUTSRC/rtl8188e/Hal8188ERateAdaptive.c
rtl8188EUS_linux_v4.1.4_6773.20130222/hal/OUTSRC/rtl8188e/HalPhyRf_8188e.c
rtl8188EUS_linux_v4.1.4_6773.20130222/hal/OUTSRC/odm_HWConfig.h
rtl8188EUS_linux_v4.1.4_6773.20130222/hal/OUTSRC/odm_debug.c
rtl8188EUS_linux_v4.1.4_6773.20130222/hal/OUTSRC/odm_interface.h
rtl8188EUS_linux_v4.1.4_6773.20130222/hal/OUTSRC/odm_interface.c
rtl8188EUS_linux_v4.1.4_6773.20130222/hal/OUTSRC/odm.c
rtl8188EUS_linux_v4.1.4_6773.20130222/hal/OUTSRC/odm.h
rtl8188EUS_linux_v4.1.4_6773.20130222/hal/OUTSRC/odm_HWConfig.c
rtl8188EUS_linux_v4.1.4_6773.20130222/hal/OUTSRC/odm_reg.h
rtl8188EUS_linux_v4.1.4_6773.20130222/hal/OUTSRC/odm_RegDefine11AC.h
rtl8188EUS_linux_v4.1.4_6773.20130222/hal/OUTSRC/odm_debug.h
rtl8188EUS_linux_v4.1.4_6773.20130222/hal/hal_intf.c
rtl8188EUS_linux_v4.1.4_6773.20130222/hal/rtl8188e/
rtl8188EUS_linux_v4.1.4_6773.20130222/hal/rtl8188e/rtl8188e_sreset.c
rtl8188EUS_linux_v4.1.4_6773.20130222/hal/rtl8188e/rtl8188e_rxdesc.c
rtl8188EUS_linux_v4.1.4_6773.20130222/hal/rtl8188e/rtl8188e_cmd.c
rtl8188EUS_linux_v4.1.4_6773.20130222/hal/rtl8188e/rtl8188e_rf6052.c
rtl8188EUS_linux_v4.1.4_6773.20130222/hal/rtl8188e/Hal8188EPwrSeq.c
rtl8188EUS_linux_v4.1.4_6773.20130222/hal/rtl8188e/rtl8188e_mp.c
rtl8188EUS_linux_v4.1.4_6773.20130222/hal/rtl8188e/rtl8188e_phycfg.c
rtl8188EUS_linux_v4.1.4_6773.20130222/hal/rtl8188e/rtl8188e_dm.c
rtl8188EUS_linux_v4.1.4_6773.20130222/hal/rtl8188e/usb/
rtl8188EUS_linux_v4.1.4_6773.20130222/hal/rtl8188e/usb/usb_halinit.c
rtl8188EUS_linux_v4.1.4_6773.20130222/hal/rtl8188e/usb/rtl8188eu_led.c
rtl8188EUS_linux_v4.1.4_6773.20130222/hal/rtl8188e/usb/rtl8188eu_recv.c
rtl8188EUS_linux_v4.1.4_6773.20130222/hal/rtl8188e/usb/rtl8188eu_xmit.c
rtl8188EUS_linux_v4.1.4_6773.20130222/hal/rtl8188e/usb/usb_ops_linux.c
rtl8188EUS_linux_v4.1.4_6773.20130222/hal/rtl8188e/rtl8188e_hal_init.c
rtl8188EUS_linux_v4.1.4_6773.20130222/hal/rtl8188e/rtl8188e_xmit.c
rtl8188EUS_linux_v4.1.4_6773.20130222/hal/hal_com.c
rtl8188EUS_linux_v4.1.4_6773.20130222/hal/HalPwrSeqCmd.c
rtl8188EUS_linux_v4.1.4_6773.20130222/clean
rtl8188EUS_linux_v4.1.4_6773.20130222
Authentication requested [root] for make clean:
rm -fr *.mod.c *.mod *.o .*.cmd *.ko *~
rm -fr .tmp_versions
rm -fr Module.symvers ; rm -fr Module.markers ; rm -fr modules.order
cd core/efuse ; rm -fr *.mod.c *.mod *.o .*.cmd *.ko
cd core ; rm -fr *.mod.c *.mod *.o .*.cmd *.ko
cd hal/rtl8188e/usb ; rm -fr *.mod.c *.mod *.o .*.cmd *.ko
cd hal/rtl8188e ; rm -fr *.mod.c *.mod *.o .*.cmd *.ko
cd hal/OUTSRC/rtl8188e ; rm -fr *.mod.c *.mod *.o .*.cmd *.ko
cd hal/OUTSRC/ ; rm -fr *.mod.c *.mod *.o .*.cmd *.ko
cd hal ; rm -fr *.mod.c *.mod *.o .*.cmd *.ko
cd os_dep/linux ; rm -fr *.mod.c *.mod *.o .*.cmd *.ko
cd os_dep ; rm -fr *.mod.c *.mod *.o .*.cmd *.ko
Authentication requested [root] for make driver:
make ARCH=x86_64 CROSS_COMPILE= -C /lib/modules/4.19.0-kali4-amd64/build M=/usbcontent/linux/RTL8188EUS_linux_v4.1.4_6773.20130222/driver/rtl8188EUS_linux_v4.1.4_6773.20130222  modules

make[1]: Entering directory '/usr/src/linux-headers-4.19.0-kali4-amd64'
  CC [M]  /usbcontent/linux/RTL8188EUS_linux_v4.1.4_6773.20130222/driver/rtl8188EUS_linux_v4.1.4_6773.20130222/core/rtw_cmd.o
In file included from /usbcontent/linux/RTL8188EUS_linux_v4.1.4_6773.20130222/driver/rtl8188EUS_linux_v4.1.4_6773.20130222/core/rtw_cmd.c:23:
/usbcontent/linux/RTL8188EUS_linux_v4.1.4_6773.20130222/driver/rtl8188EUS_linux_v4.1.4_6773.20130222/include/osdep_service.h: In function ‘_init_timer’:
/usbcontent/linux/RTL8188EUS_linux_v4.1.4_6773.20130222/driver/rtl8188EUS_linux_v4.1.4_6773.20130222/include/osdep_service.h:956:8: error: ‘_timer’ {aka ‘struct timer_list’} has no member named ‘data’
  ptimer->data = (unsigned long)cntx;
        ^~
/usbcontent/linux/RTL8188EUS_linux_v4.1.4_6773.20130222/driver/rtl8188EUS_linux_v4.1.4_6773.20130222/include/osdep_service.h:957:2: error: implicit declaration of function ‘init_timer’; did you mean ‘_init_timer’? [-Werror=implicit-function-declaration]
  init_timer(ptimer);
  ^~~~~~~~~~
  _init_timer
In file included from /usbcontent/linux/RTL8188EUS_linux_v4.1.4_6773.20130222/driver/rtl8188EUS_linux_v4.1.4_6773.20130222/core/rtw_cmd.c:23:
/usbcontent/linux/RTL8188EUS_linux_v4.1.4_6773.20130222/driver/rtl8188EUS_linux_v4.1.4_6773.20130222/include/osdep_service.h: In function ‘thread_enter’:
/usbcontent/linux/RTL8188EUS_linux_v4.1.4_6773.20130222/driver/rtl8188EUS_linux_v4.1.4_6773.20130222/include/osdep_service.h:1423:2: error: implicit declaration of function ‘daemonize’ [-Werror=implicit-function-declaration]
  daemonize("%s", name);
  ^~~~~~~~~
cc1: some warnings being treated as errors
make[4]: *** [/usr/src/linux-headers-4.19.0-kali4-common/scripts/Makefile.build:309: /usbcontent/linux/RTL8188EUS_linux_v4.1.4_6773.20130222/driver/rtl8188EUS_linux_v4.1.4_6773.20130222/core/rtw_cmd.o] Error 1
make[3]: *** [/usr/src/linux-headers-4.19.0-kali4-common/Makefile:1535: _module_/usbcontent/linux/RTL8188EUS_linux_v4.1.4_6773.20130222/driver/rtl8188EUS_linux_v4.1.4_6773.20130222] Error 2
make[2]: *** [Makefile:146: sub-make] Error 2
make[1]: *** [Makefile:8: all] Error 2
make[1]: Leaving directory '/usr/src/linux-headers-4.19.0-kali4-amd64'
make: *** [Makefile:678: modules] Error 2
##################################################
Compile make driver error: 2
Please check error Mesg
##################################################

Code:

root@baba:/usbcontent/linux/RTL8188EUS_linux_v4.1.4_6773.20130222# ls -a
.                        android_ref_codes_JB_4.2            document          install    readme.txt                  wireless_tools
..                        android_reference_codes              driver            install.sh  ReleaseNotes.pdf            wpa_supplicant_hostapd
android_ref_codes_JB_4.1  android_reference_codes_ICS_nl80211  hardware_wps_pbc  mp_tools    WiFi_Direct_User_Interface

Code:

root@baba:/usbcontent/linux/rtl8188eus# dmesg | tail
[  545.409051] usb 1-6: SerialNumber: 00E0262DD5C6
[  662.163803] usb 1-6: USB disconnect, device number 7
[  663.648229] usb 1-6: new high-speed USB device number 8 using ehci-pci
[  663.805027] usb 1-6: New USB device found, idVendor=0bda, idProduct=f179, bcdDevice= 0.00
[  663.805035] usb 1-6: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[  663.805040] usb 1-6: Product: 802.11n
[  663.805045] usb 1-6: Manufacturer: Realtek
[  663.805049] usb 1-6: SerialNumber: 00E0262DD5C6
[  796.002037] perf: interrupt took too long (3137 > 3135), lowering kernel.perf_event_max_sample_rate to 63750
[ 1127.930545] perf: interrupt took too long (3929 > 3921), lowering kernel.perf_event_max_sample_rate to 50750



the files i got with wifi adpaters are-https://drive.google.com/drive/folders/11Z0AVYNpsuWxnuo6NQThII5XmJ47Csn5?usp=sharing
(THIS FILE IS UPLOADED DIRECTLY FROM CD)

Thanks in advance!!
PS- I am new in linux and writing forums.

pan64 06-24-2019 01:08 PM

I would say the driver is created for kernel 4.1.4, looks like it is not compatible with your kernel 4.19.28
https://www.linuxquestions.org/quest...ad-4175614092/

sevendogsbsd 06-24-2019 01:15 PM

OP: 2 words: "code tags". Please...

snowday 06-24-2019 04:04 PM

One thing that caught my eye is that reputable companies like Realtek do not typically distribute their software through Google Drive!

I suggest you start again, but this time, download the software from a trusted, official source.

ondoho 06-24-2019 04:47 PM

https://www.startpage.com/do/dsearch...nux+rtl8188eus

rsain3000 06-24-2019 09:52 PM

Yeah it says its not compatible
 
I got cd with adaptor so i have uploaded the contents of cd to Google drive so you can help me out as adaptor is in warranty period (4 days left) i also install latest driver from git but thats not helping me i also tried ndiswrappper but same not recognising the adaptor

Thanks in advance!

ondoho 06-25-2019 02:09 AM

Quote:

Originally Posted by rsain3000 (Post 6008715)
you can help me out as adaptor is in warranty period (4 days left)

You want us to hurry up to fix your computer? Sorry but that's not going to fly.
First of all, don't use the software that came with the adapter. Really. Don't.
Peruse my previous search results to find out what you really need for this wifi thing.
If you can't make it, I'd bring it back before the 4 days are over.

While you're at it, re-think the idea of starting your Linux journey with a distro that is not for beginners:

Quote:

Is Kali Linux Right For You?

As the distribution’s developers, you might expect us to recommend that everyone
should be using Kali Linux. The fact of the matter is, however, that Kali is a
Linux distribution specifically geared towards professional penetration testers
and security specialists, and given its unique nature, it is NOT a recommended
distribution if you’re unfamiliar with Linux or are looking for a general-purpose
Linux desktop distribution for development, web design, gaming, etc.

Even for experienced Linux users, Kali can pose some challenges.

(Source)

rsain3000 06-25-2019 03:52 AM

well okay dont hurry up i think i might use it in my windows but i prefer kali due to its preinstalled software well i have reading kali book and i barely use kali cause its seem pretty hard if i switch to other linx distro then whats the use of that ditro? i use window for mainly stuff and to learn penetration i use kali switching over other distro with nothing to do is useless.
back on the question i tried installing drivers from here-https://github.com/quickreflex/rtl8188eus
still my wifi is not showing

rsain3000 06-25-2019 04:07 AM

i got this
Code:

root@baba:/usbcontent/linux/RTL8188EUS_linux_v4.1.4_6773.20130222/driver/rtl8188EUS_linux_v4.1.4_6773.20130222# make all
make ARCH=x86_64 CROSS_COMPILE= -C /lib/modules/4.19.0-kali4-amd64/build M=/usbcontent/linux/RTL8188EUS_linux_v4.1.4_6773.20130222/driver/rtl8188EUS_linux_v4.1.4_6773.20130222  modules
make[1]: Entering directory '/usr/src/linux-headers-4.19.0-kali4-amd64'
  CC [M]  /usbcontent/linux/RTL8188EUS_linux_v4.1.4_6773.20130222/driver/rtl8188EUS_linux_v4.1.4_6773.20130222/core/rtw_cmd.o
In file included from /usbcontent/linux/RTL8188EUS_linux_v4.1.4_6773.20130222/driver/rtl8188EUS_linux_v4.1.4_6773.20130222/core/rtw_cmd.c:23:
/usbcontent/linux/RTL8188EUS_linux_v4.1.4_6773.20130222/driver/rtl8188EUS_linux_v4.1.4_6773.20130222/include/osdep_service.h: In function ‘_init_timer’:
/usbcontent/linux/RTL8188EUS_linux_v4.1.4_6773.20130222/driver/rtl8188EUS_linux_v4.1.4_6773.20130222/include/osdep_service.h:956:8: error: ‘_timer’ {aka ‘struct timer_list’} has no member named ‘data’
  ptimer->data = (unsigned long)cntx;
        ^~
/usbcontent/linux/RTL8188EUS_linux_v4.1.4_6773.20130222/driver/rtl8188EUS_linux_v4.1.4_6773.20130222/include/osdep_service.h:957:2: error: implicit declaration of function ‘init_timer’; did you mean ‘_init_timer’? [-Werror=implicit-function-declaration]
  init_timer(ptimer);
  ^~~~~~~~~~
  _init_timer
In file included from /usbcontent/linux/RTL8188EUS_linux_v4.1.4_6773.20130222/driver/rtl8188EUS_linux_v4.1.4_6773.20130222/core/rtw_cmd.c:23:
/usbcontent/linux/RTL8188EUS_linux_v4.1.4_6773.20130222/driver/rtl8188EUS_linux_v4.1.4_6773.20130222/include/osdep_service.h: In function ‘thread_enter’:
/usbcontent/linux/RTL8188EUS_linux_v4.1.4_6773.20130222/driver/rtl8188EUS_linux_v4.1.4_6773.20130222/include/osdep_service.h:1423:2: error: implicit declaration of function ‘daemonize’ [-Werror=implicit-function-declaration]
  daemonize("%s", name);
  ^~~~~~~~~
cc1: some warnings being treated as errors
make[4]: *** [/usr/src/linux-headers-4.19.0-kali4-common/scripts/Makefile.build:309: /usbcontent/linux/RTL8188EUS_linux_v4.1.4_6773.20130222/driver/rtl8188EUS_linux_v4.1.4_6773.20130222/core/rtw_cmd.o] Error 1
make[3]: *** [/usr/src/linux-headers-4.19.0-kali4-common/Makefile:1535: _module_/usbcontent/linux/RTL8188EUS_linux_v4.1.4_6773.20130222/driver/rtl8188EUS_linux_v4.1.4_6773.20130222] Error 2
make[2]: *** [Makefile:146: sub-make] Error 2
make[1]: *** [Makefile:8: all] Error 2
make[1]: Leaving directory '/usr/src/linux-headers-4.19.0-kali4-amd64'


rsain3000 06-25-2019 04:44 AM

i ran this-
Code:

wget -N -t 5 -T 10 https://github.com/UbuntuForums/wire.../wireless-info && chmod +x wireless-info && ./wireless-info
this is my uploaded file=

Code:

########## wireless info START ##########

Report from: 25 Jun 2019 15:13 IST +0530

Booted last: 25 Jun 2019 00:00 IST +0530

Script from: 22 Oct 2018 03:34 UTC +0000

##### release ###########################

Distributor ID:        Kali
Description:        Kali GNU/Linux Rolling
Release:        2019.2
Codename:        n/a

##### kernel ############################

Linux 4.19.0-kali4-amd64 #1 SMP Debian 4.19.28-2kali1 (2019-03-18) x86_64 unknown unknown GNU/Linux

Parameters: boot=live, noconfig=sudo, username=root, hostname=kali, persistence, initrd=/live/initrd.img

##### desktop ###########################

GNOME

##### lspci #############################

02:00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. RTL810xE PCI Express Fast Ethernet controller [10ec:8136] (rev 05)
        Subsystem: Realtek Semiconductor Co., Ltd. RTL810xE PCI Express Fast Ethernet controller [10ec:0123]
        Kernel driver in use: r8169

##### lsusb #############################

Bus 001 Device 006: ID 0bda:f179 Realtek Semiconductor Corp.
Bus 001 Device 004: ID 0951:1665 Kingston Technology Digital DataTraveler SE9 64GB
Bus 001 Device 002: ID 1871:0142 Aveo Technology Corp.
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 002 Device 002: ID 0461:4d0f Primax Electronics, Ltd HP Optical Mouse
Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub

##### PCMCIA card info ##################

'pccardctl' is not installed (package "pcmciautils").

##### rfkill ############################

##### secure boot #######################

'mokutil' is not installed (package "mokutil").

##### lsmod #############################

cfg80211              765952  0
rfkill                28672  2 cfg80211
ndiswrapper          352256  0
usbcore              290816  11 ohci_hcd,ehci_pci,snd_usb_audio,usbhid,snd_usbmidi_lib,usb_storage,uvcvideo,ehci_hcd,uas,ndiswrapper,uhci_hcd

##### interfaces ########################

[/etc/network/interfaces]
auto lo
iface lo inet loopback

##### ifconfig ##########################

1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
    link/loopback <MAC address> brd <MAC address>
    inet 127.0.0.1/8 scope host lo
      valid_lft forever preferred_lft forever
    inet6 ::1/128 scope host
      valid_lft forever preferred_lft forever
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP group default qlen 1000
    link/ether <MAC 'eth0' [IF1]> brd <MAC address>
    inet 192.168.1.106/24 brd 192.168.1.255 scope global dynamic noprefixroute eth0
      valid_lft 81929sec preferred_lft 81929sec
    inet6 fe80::b411:4c37:1b34:4cb2/64 scope link noprefixroute
      valid_lft forever preferred_lft forever

##### iwconfig ##########################

lo        no wireless extensions.

eth0      no wireless extensions.

##### route #############################

default via 192.168.1.1 dev eth0 proto dhcp metric 100
192.168.1.0/24 dev eth0 proto kernel scope link src 192.168.1.106 metric 100

##### resolv.conf #######################

[644 root '/etc/resolv.conf']
nameserver 8.8.8.8
nameserver 8.8.8.4

##### network managers ##################

Installed:

        NetworkManager

Running:

root      1133    1  0 13:59 ?        00:00:00 /usr/sbin/NetworkManager --no-daemon

##### NetworkManager info ###############

GENERAL.DEVICE:                        eth0
GENERAL.TYPE:                          ethernet
GENERAL.NM-TYPE:                        NMDeviceEthernet
GENERAL.VENDOR:                        Realtek Semiconductor Co., Ltd.
GENERAL.PRODUCT:                        RTL810xE PCI Express Fast Ethernet controller
GENERAL.DRIVER:                        r8169
GENERAL.DRIVER-VERSION:                --
GENERAL.FIRMWARE-VERSION:              --
GENERAL.HWADDR:                        <MAC 'eth0' [IF1]>
GENERAL.MTU:                            1500
GENERAL.STATE:                          100 (connected)
GENERAL.REASON:                        0 (No reason given)
GENERAL.UDI:                            /sys/devices/pci0000:00/0000:00:1c.1/0000:02:00.0/net/eth0
GENERAL.IP-IFACE:                      eth0
GENERAL.IS-SOFTWARE:                    no
GENERAL.NM-MANAGED:                    yes
GENERAL.AUTOCONNECT:                    yes
GENERAL.FIRMWARE-MISSING:              no
GENERAL.NM-PLUGIN-MISSING:              no
GENERAL.PHYS-PORT-ID:                  --
GENERAL.CONNECTION:                    Wired connection 1
GENERAL.CON-UUID:                      00a5e520-ac40-3302-bf7e-94558fccfb8d
GENERAL.CON-PATH:                      /org/freedesktop/NetworkManager/ActiveConnection/1
GENERAL.METERED:                        no (guessed)
CAPABILITIES.CARRIER-DETECT:            yes
CAPABILITIES.SPEED:                    100 Mb/s
CAPABILITIES.IS-SOFTWARE:              no
CAPABILITIES.SRIOV:                    no
WIRED-PROPERTIES.CARRIER:              on
IP4.ADDRESS[1]:                        192.168.1.106/24
IP4.GATEWAY:                            192.168.1.1
IP4.ROUTE[1]:                          dst = 0.0.0.0/0, nh = 192.168.1.1, mt = 100
IP4.ROUTE[2]:                          dst = 192.168.1.0/24, nh = 0.0.0.0, mt = 100
IP4.DNS[1]:                            8.8.8.8
IP4.DNS[2]:                            8.8.8.4
DHCP4.OPTION[1]:                        broadcast_address = 192.168.1.255
DHCP4.OPTION[2]:                        dad_wait_time = 0
DHCP4.OPTION[3]:                        dhcp_lease_time = 86400
DHCP4.OPTION[4]:                        dhcp_message_type = 5
DHCP4.OPTION[5]:                        dhcp_rebinding_time = 75600
DHCP4.OPTION[6]:                        dhcp_renewal_time = 43200
DHCP4.OPTION[7]:                        dhcp_server_identifier = 192.168.1.1
DHCP4.OPTION[8]:                        domain_name_servers = 8.8.8.8 8.8.8.4
DHCP4.OPTION[9]:                        expiry = 1561537751
DHCP4.OPTION[10]:                      host_name = dhcppc6
DHCP4.OPTION[11]:                      ip_address = 192.168.1.106
DHCP4.OPTION[12]:                      network_number = 192.168.1.0
DHCP4.OPTION[13]:                      next_server = 192.168.1.1
DHCP4.OPTION[14]:                      requested_broadcast_address = 1
DHCP4.OPTION[15]:                      requested_domain_name = 1
DHCP4.OPTION[16]:                      requested_domain_name_servers = 1
DHCP4.OPTION[17]:                      requested_domain_search = 1
DHCP4.OPTION[18]:                      requested_host_name = 1
DHCP4.OPTION[19]:                      requested_interface_mtu = 1
DHCP4.OPTION[20]:                      requested_ms_classless_static_routes = 1
DHCP4.OPTION[21]:                      requested_netbios_name_servers = 1
DHCP4.OPTION[22]:                      requested_netbios_scope = 1
DHCP4.OPTION[23]:                      requested_ntp_servers = 1
DHCP4.OPTION[24]:                      requested_rfc3442_classless_static_routes = 1
DHCP4.OPTION[25]:                      requested_root_path = 1
DHCP4.OPTION[26]:                      requested_routers = 1
DHCP4.OPTION[27]:                      requested_static_routes = 1
DHCP4.OPTION[28]:                      requested_subnet_mask = 1
DHCP4.OPTION[29]:                      requested_time_offset = 1
DHCP4.OPTION[30]:                      requested_wpad = 1
DHCP4.OPTION[31]:                      routers = 192.168.1.1
DHCP4.OPTION[32]:                      server_name = Binatone
DHCP4.OPTION[33]:                      subnet_mask = 255.255.255.0
IP6.ADDRESS[1]:                        fe80::b411:4c37:1b34:4cb2/64
IP6.GATEWAY:                            fe80::ed2:b5ff:fe03:4def
IP6.ROUTE[1]:                          dst = fe80::/64, nh = ::, mt = 100
IP6.ROUTE[2]:                          dst = ::/0, nh = fe80::ed2:b5ff:fe03:4def, mt = 100
IP6.ROUTE[3]:                          dst = ff00::/8, nh = ::, mt = 256, table=255
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/5
CONNECTIONS.AVAILABLE-CONNECTIONS[1]:  00a5e520-ac40-3302-bf7e-94558fccfb8d | Wired connection 1

##### NetworkManager.state ##############

[main]
NetworkingEnabled=true
WirelessEnabled=true
WWANEnabled=true

##### NetworkManager config #############

[[/etc/NetworkManager/NetworkManager.conf]]
[main]
plugins=ifupdown,keyfile
[ifupdown]
managed=false

[[/usr/lib/NetworkManager/conf.d/no-mac-addr-change.conf]]
[device-mac-addr-change-wifi]
match-device=driver:rtl8723bs,driver:rtl8189es,driver:r8188eu,driver:8188eu,driver:eagle_sdio,driver:wl
wifi.scan-rand-mac-address=no
wifi.cloned-mac-address=preserve
ethernet.cloned-mac-address=preserve

##### NetworkManager profiles ###########

[[/etc/NetworkManager/system-connections/AKSHIT 1_EXT_EXT_EXT_EXT_EXT_EX.nmconnection]] (600 root)
[connection] id=AKSHIT 1_EXT_EXT_EXT_EXT_EXT_EX | type=wifi | permissions=
[wifi] mac-address=<MAC address> | mac-address-blacklist= | ssid=AKSHIT 1_EXT_EXT_EXT_EXT_EXT_EX
[ipv4] method=auto
[ipv6] method=auto

[[/etc/NetworkManager/system-connections/�� �� �� .nmconnection]] (600 root)
[connection] id=�� �� ��  | type=wifi | permissions=
[wifi] mac-address=<MAC address> | mac-address-blacklist= | ssid=240;159;152;130;32;240;159;152;130;32;240;159;152;130;32;
[ipv4] method=auto
[ipv6] method=auto

[[/etc/NetworkManager/system-connections/Familyfi.nmconnection]] (600 root)
[connection] id=Familyfi | type=wifi | permissions=
[wifi] mac-address=<MAC address> | mac-address-blacklist= | ssid=Familyfi
[ipv4] method=auto
[ipv6] method=auto

[[/etc/NetworkManager/system-connections/DivinePower.nmconnection]] (600 root)
[connection] id=DivinePower | type=wifi | permissions=
[wifi] mac-address=<MAC address> | mac-address-blacklist= | ssid=DivinePower
[ipv4] method=auto
[ipv6] method=auto

##### Netplan config ####################

##### iw reg get ########################

Region: Asia/Kolkata (based on set time zone)

global
country 00: DFS-UNSET
        (2402 - 2472 @ 40), (N/A, 20), (N/A)
        (2457 - 2482 @ 20), (N/A, 20), (N/A), AUTO-BW, NO-IR
        (2474 - 2494 @ 20), (N/A, 20), (N/A), NO-OFDM, NO-IR
        (5170 - 5250 @ 80), (N/A, 20), (N/A), AUTO-BW, NO-IR
        (5250 - 5330 @ 80), (N/A, 20), (0 ms), DFS, AUTO-BW, NO-IR
        (5490 - 5730 @ 160), (N/A, 20), (0 ms), DFS, NO-IR
        (5735 - 5835 @ 80), (N/A, 20), (N/A), NO-IR
        (57240 - 63720 @ 2160), (N/A, 0), (N/A)

##### iwlist channels ###################

lo        no frequency information.

eth0      no frequency information.

##### iwlist scan #######################

lo        Interface doesn't support scanning.

eth0      Interface doesn't support scanning.

##### module infos ######################

[cfg80211]
filename:      /lib/modules/4.19.0-kali4-amd64/kernel/net/wireless/cfg80211.ko
description:    wireless configuration support
license:        GPL
author:        Johannes Berg
depends:        rfkill
retpoline:      Y
intree:        Y
name:          cfg80211
vermagic:      4.19.0-kali4-amd64 SMP mod_unload modversions
parm:          bss_entries_limit:limit to number of scan BSS entries (per wiphy, default 1000) (int)
parm:          ieee80211_regdom:IEEE 802.11 regulatory domain code (charp)
parm:          cfg80211_disable_40mhz_24ghz:Disable 40MHz support in the 2.4GHz band (bool)

[ndiswrapper]
filename:      /lib/modules/4.19.0-kali4-amd64/misc/ndiswrapper.ko
license:        GPL
version:        1.62
description:    NDIS wrapper driver
author:        ndiswrapper team <ndiswrapper-general@lists.sourceforge.net>
srcversion:    66B1077F4ABB4FC3BF6139C
depends:        usbcore
retpoline:      Y
name:          ndiswrapper
vermagic:      4.19.0-kali4-amd64 SMP mod_unload modversions
parm:          if_name:Network interface name or template (default: wlan%d) (charp)
parm:          proc_uid:The uid of the files created in /proc (default: 0). (int)
parm:          proc_gid:The gid of the files created in /proc (default: 0). (int)
parm:          debug:debug level (int)
parm:          hangcheck_interval:The interval, in seconds, for checking if driver is hung. (default: 0) (int)
parm:          utils_version:Compatible version of utils (read only: 1.9) (charp)

##### module parameters #################

[cfg80211]
bss_entries_limit: 1000
cfg80211_disable_40mhz_24ghz: N
ieee80211_regdom: 00

[ndiswrapper]
debug: 0
hangcheck_interval: 0
if_name: wlan%d
proc_gid: 0
proc_uid: 0
utils_version: 1.9

##### /etc/modules ######################

##### modprobe options ##################

[/etc/modprobe.d/50-8188eu.conf]
blacklist r8188eu

[/etc/modprobe.d/amd64-microcode-blacklist.conf]
blacklist microcode

[/etc/modprobe.d/ath9k_htc.conf]
options ath9k_htc use_dev_fw=1

[/etc/modprobe.d/blacklist-libnfc.conf]
blacklist nfc
blacklist pn533

[/etc/modprobe.d/broadcom-sta-dkms.conf]
blacklist b43
blacklist b43legacy
blacklist b44
blacklist bcma
blacklist brcm80211
blacklist brcmsmac
blacklist ssb

[/etc/modprobe.d/intel-microcode-blacklist.conf]
blacklist microcode

[/etc/modprobe.d/libhackrf0.conf]
blacklist hackrf

[/etc/modprobe.d/ndiswrapper.conf]
alias usb:v0409p0408d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v0411p0242d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v0411p025Dd*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v0411p029Bd*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v0411p029Dd*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v04BBp0952d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v04BBp0953d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v04BBp0959d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v050Dp1109d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v056Ep4007d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v056Ep4008d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v056Ep400Bd*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v056Ep400Dd*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v056Ep400Ed*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v056Ep400Fd*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v0586p3426d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v0789p016Ed*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v07B8p0811d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v07B8p8179d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v07B8p8812d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v08C4p0115d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v0B05p17D2d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v0B05p1817d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v0BDAp0179d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v0BDAp0811d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v0BDAp0823d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v0BDAp8179d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v0BDAp818Bd*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v0BDAp818Cd*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v0BDAp8812d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v0BDAp8813d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v0BDAp881Ad*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v0BDAp881Bd*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v0BDAp881Cd*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v0BDApA179d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v0BDApA811d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v0BDApB703d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v0BDApB720d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v0BDApB812d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v0BDApB82Cd*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v0BDApD723d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v0BDApD72Bd*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v0BDApF179d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v0DF6p0074d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v0DF6p007Ad*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v0DF6p007Bd*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v0E66p0022d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v0E66p0023d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v1058p0632d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v13B1p003Fd*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v148Fp9097d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v1668p8106d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v1740p0100d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v1EDAp2520d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v1EDAp2525d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v2001p330Ed*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v2001p330Fd*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v2001p3310d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v2001p3311d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v2001p3313d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v2001p3314d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v2001p3315d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v2001p3316d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v2001p3318d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v2001p331Ad*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v2019pAB30d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v2019pAB32d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v2019pAB33d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v20F4p804Bd*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v20F4p805Bd*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v20F4p809Ad*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v2357p0101d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v2357p0106d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v2357p0107d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v2357p0108d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v2357p0109d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v2357p010Cd*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v2357p010Dd*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v2357p010Ed*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v2357p010Fd*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v2357p0111d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v2357p0115d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v2357p0116d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v2357p0117d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v2357p011Ed*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v2357p011Fd*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v2357p0120d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v2357p0121d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v3312p2001d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v7392pA611d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v7392pA811d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v7392pA812d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v7392pA813d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v7392pA822d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v7392pA833d*dc*dsc*dp*ic*isc*ip* ndiswrapper
alias usb:v7392pA834d*dc*dsc*dp*ic*isc*ip* ndiswrapper

##### rc.local ##########################

grep: /etc/rc.local: No such file or directory

##### pm-utils ##########################

##### udev rules ########################

##### dmesg #############################

[ 3247.934108] 8188eu: Unknown symbol wiphy_apply_custom_regulatory (err -2)
[ 3247.934145] 8188eu: Unknown symbol ieee80211_get_channel (err -2)
[ 3247.934185] 8188eu: Unknown symbol wiphy_unregister (err -2)
[ 3247.934387] 8188eu: Unknown symbol ieee80211_frequency_to_channel (err -2)
[ 3247.934443] 8188eu: Unknown symbol wiphy_free (err -2)
[ 3265.712979] 8188eu: Unknown symbol wiphy_new_nm (err -2)
[ 3265.713047] 8188eu: Unknown symbol wiphy_register (err -2)
[ 3265.713250] 8188eu: Unknown symbol wiphy_apply_custom_regulatory (err -2)
[ 3265.713285] 8188eu: Unknown symbol ieee80211_get_channel (err -2)
[ 3265.713325] 8188eu: Unknown symbol wiphy_unregister (err -2)
[ 3265.713512] 8188eu: Unknown symbol ieee80211_frequency_to_channel (err -2)
[ 3265.713567] 8188eu: Unknown symbol wiphy_free (err -2)
[ 3547.241958] 8188eu: Unknown symbol wiphy_new_nm (err -2)
[ 3547.242027] 8188eu: Unknown symbol wiphy_register (err -2)
[ 3547.242229] 8188eu: Unknown symbol wiphy_apply_custom_regulatory (err -2)
[ 3547.242264] 8188eu: Unknown symbol ieee80211_get_channel (err -2)
[ 3547.242304] 8188eu: Unknown symbol wiphy_unregister (err -2)
[ 3547.242490] 8188eu: Unknown symbol ieee80211_frequency_to_channel (err -2)
[ 3547.242545] 8188eu: Unknown symbol wiphy_free (err -2)
[ 3551.948687] 8188eu: Unknown symbol wiphy_new_nm (err -2)
[ 3551.948756] 8188eu: Unknown symbol wiphy_register (err -2)
[ 3551.948960] 8188eu: Unknown symbol wiphy_apply_custom_regulatory (err -2)
[ 3551.948995] 8188eu: Unknown symbol ieee80211_get_channel (err -2)
[ 3551.949035] 8188eu: Unknown symbol wiphy_unregister (err -2)
[ 3551.949223] 8188eu: Unknown symbol ieee80211_frequency_to_channel (err -2)
[ 3551.949278] 8188eu: Unknown symbol wiphy_free (err -2)

########## wireless info END ############


jsbjsb001 06-25-2019 06:04 AM

So you ignore two separate warnings about using Kali, as well as still not using CODE tags, and still expect "urgent" help ?

I'd suggest if you really expect people here to help you; the least you could do is make your command output easier for members to read by USING CODE tags. I'd also suggest you heed the advice already given, and try another more up-to-date kernel, installed in a far more suitable distribution. Or, go and waste the time of the Kali forums instead...

PS: Kali is **NOT** going to teach you how to hack, sorry to shatter your dreams...

rsain3000 06-25-2019 07:33 AM

I dont know what is code tags(i googled it) well i google my driver is rlt8188fu well i dont want you guys to hurry up as i am not returning it bdw i dont want to hack not now so i dont need a working adaptor urgently but about other linux distro i could jump on them but whats use then i have to format my usb download their distro and then what ....what i am supposed to do?

for above concern i need a full working driver for my realtek usb 2.0 802.11n wifi adaptor which will directly install drivers for me.

thanks in advance sorry i dont want to act like bossy

rsain3000 06-25-2019 08:20 AM

Quote:

Originally Posted by ondoho (Post 6008660)

i already googled every thing but they are not working there is no problem in installing driver but these driver doesnt work with my adaptor

jsbjsb001 06-25-2019 08:38 AM

Quote:

Originally Posted by rsain3000 (Post 6008842)
...
....what i am supposed to do?

Isn't it obvious? DOWNLOAD another distro and install it, then see if your wifi adapter works with it, simple. Try as many "newbie friendly" distro's as you can, until you find one that has the driver needed for your wifi adapter.

In Linux, drivers usually come WITH the kernel, so when you update the kernel, this therefore normally ALSO updates the drivers that come with it. Forget the Windows mentality of downloading things separately.

Quote:

for above concern i need a full working driver for my realtek usb 2.0 802.11n wifi adaptor which will directly install drivers for me.
...
Right. Then, again, try the above, and failing that; see if there is any driver you can download from a reliable source, that supports your wifi adapter.

What more do you want?

rsain3000 06-25-2019 08:57 AM

Quote:

Originally Posted by jsbjsb001 (Post 6008863)
Isn't it obvious? DOWNLOAD another distro and install it, then see if your wifi adapter works with it, simple.

and then what will i do in that distro i can not even hack so i just need to explore that distro to become more comfortable in linux?


All times are GMT -5. The time now is 12:53 AM.