Install TP-Link Nano AC600 (Archer T2U)​ WIFI Adapter on Kali Linux

Поділитися
Вставка
  • Опубліковано 18 вер 2024
  • LIMITED TIME FREE OFFER for subscribers;
    Get Access to exclusive Hacking videos for FREE; Subscribe to the channel first then sign up on indexcyber.com
    This solution works on other Linux dist too. Tested on Ubuntu as well.
    If you still have any issues try to install a fresh Kali/Ubuntu then first thing install WIFI adapter.
    Order from Amazon:
    amzn.to/3lZTu03
    Commands:
    You must be connected to the interest to run below commands.
    Type y and press enter when asking “Do you want to continue?”
    sudo apt update && sudo apt upgrade
    sudo apt-get install dkms
    sudo apt-get install bc
    sudo apt-get install rsync
    sudo apt-get install git
    sudo apt update
    git clone github.com/mor...
    cd 8821au-20210708
    VER=$(sed -n 's/\PACKAGE_VERSION="\(.*\)"/\1/p' dkms.conf)
    sudo rsync -rvhP ./ /usr/src/rtl88x2bu-${VER}
    sudo dkms add -m rtl88x2bu -v ${VER}
    sudo dkms build -m rtl88x2bu -v ${VER}
    sudo dkms install -m rtl88x2bu -v ${VER}
    sudo modprobe 8821au
    reboot

КОМЕНТАРІ • 165

  • @IndexCybersecurity
    @IndexCybersecurity  Рік тому

    LIMITED TIME FREE OFFER for subscribers;
    Get Access to exclusive Hacking videos for FREE => Subscribe to the channel first then sign up on indexcyber.com

  • @CasparZialor
    @CasparZialor 9 місяців тому +2

    One for the few Linux tutorials that actually work

  • @FranRamosFx
    @FranRamosFx 4 дні тому

    It worked for TP-Link Archer T2U Nano (WiFi Receptor) on Ubuntu 24.04. Thank you.

  • @LeCervoQuizz
    @LeCervoQuizz Рік тому +2

    Thank you so much I spent all day looking for a solution you are a life safer !!

  • @crisriv2534
    @crisriv2534 5 місяців тому

    Thank you !!
    I'm from Chile and I ended up watching your video.
    I just tested it on Kali Linux and it worked just fine!! Thanks for the help bro!!!

  • @grigo005
    @grigo005 2 місяці тому

    The only tutorial that works on Ubuntu 24.04. Thank you very much

  • @basil4044
    @basil4044 3 місяці тому +3

    sudo dkms build -m rtl88x2bu -v ${VER}
    Error! Your kernel headers for kernel 6.6.15-amd64 cannot be found at /lib/modules/6.6.15-amd64/build or /lib/modules/6.6.15-amd64/source.
    Please install the linux-headers-6.6.15-amd64 package or use the --kernelsourcedir option to tell DKMS where it's located.

    • @IndexCybersecurity
      @IndexCybersecurity  2 місяці тому +2

      To resolve the issue with missing kernel headers, follow these steps to install the necessary headers on your Kali Linux system:
      Update Repositories:
      Open a terminal and update the package repositories:
      sudo apt update
      Upgrade System:
      Upgrade your system to ensure you have the latest packages:
      sudo apt upgrade -y
      Reboot:
      After upgrading, reboot your system:
      sudo reboot
      Check Kernel Version:
      Once the system is back online, verify your kernel version:
      uname -r
      Install Kernel Headers:
      Install the appropriate kernel headers for your current kernel version:
      sudo apt install linux-headers-$(uname -r)
      Accept Installation Prompts:
      Accept any prompts that appear during the installation process.
      Now your system should have the necessary kernel headers, and you can proceed with building the DKMS module. If you encounter any further issues, feel free to ask-I’m here to help!

    • @hackerwarsu1670
      @hackerwarsu1670 7 днів тому

      It's showing unable to locate package linux-headers-6.6.11-amd64
      Error: couldn't find any package by glob 'linux-headers-6.6.11-amd64

  • @NewNiklas0803
    @NewNiklas0803 2 місяці тому

    Thank you so much! It finally worked even 9 months later. Greetings from Germany!

  • @aboubakr8431
    @aboubakr8431 8 днів тому

    It works directly in wifiway no need to install

  • @karkarkar95
    @karkarkar95 5 місяців тому

    Thank you bro, Couldn't solve this problem for about 2-3 days. thank you for the video.

  • @TelaJogos
    @TelaJogos Рік тому

    Thank you bro!!
    I'm from Brazil and I ended up watching your video (my english is not the best, sorry lol)
    I just tested it on Linux Mint 20 and it worked just fine!! Thanks for the help

  • @thientruongphanvo8675
    @thientruongphanvo8675 Рік тому

    damn bro you just save me from wasting the entire day of fixing this
    much love

    • @IndexCybersecurity
      @IndexCybersecurity  Рік тому +1

      You are welcome, actually I had to spend 2 days just for this to figure it out, that time wasn't a solution online.

  • @milanbatra
    @milanbatra 3 місяці тому +1

    Getting this error for ------
    sudo dkms build -m rtl88x2bu -v ${VER}
    Error! Your kernel headers for kernel 6.6.15-amd64 cannot be found at /lib/modules/6.6.15-amd64/build or /lib/modules/6.6.15-amd64/source.
    Please install the linux-headers-6.6.15-amd64 package or use the --kernelsourcedir option to tell DKMS where it's located.

    • @IndexCybersecurity
      @IndexCybersecurity  2 місяці тому

      It appears that you’re encountering an issue related to missing kernel headers for your Kali Linux system. Let’s address this step by step:
      Install Kernel Headers:
      Kernel headers are essential for building modules that interact with the Linux kernel.
      To install the necessary kernel headers, open a terminal and run the following command:
      sudo apt install linux-headers-$(uname -r)
      This command will install the headers corresponding to your current kernel version (as reported by uname -r).
      Reboot:
      After installing the headers, reboot your system to ensure the changes take effect:
      sudo reboot
      Verify Installation:
      Once your system is back online, check if the kernel headers are correctly installed:
      uname -r
      You should see the version matching your current kernel (e.g., 5.14.0-kali4-amd64).
      Retry DKMS Build:
      Now try running your DKMS build command again:
      sudo dkms build -m rtl88x2bu -v ${VER}
      If everything is set up correctly, it should proceed without errors.
      Remember to replace ${VER} with the actual version you intend to use. If you encounter any further issues, feel free to ask-I’ll be happy to assist!

  • @merovingio3752
    @merovingio3752 4 місяці тому +1

    SOS UN GENIO !!!!!!!!!!!!!!!!!!!!!

  • @dayronalfaro9461
    @dayronalfaro9461 2 місяці тому

    This video save me a day of work thx a lot man

  • @joa5097
    @joa5097 3 місяці тому

    Great! working now ! Thank u my friend !

  • @earwin07
    @earwin07 4 місяці тому

    It worked for me. Thank you brother

  • @EmperorOfGames24
    @EmperorOfGames24 29 днів тому

    TY for that it worked but i had to make some tweaks because of linux header version

  • @budgie_exe
    @budgie_exe 11 місяців тому +3

    I get this error:
    Error! Your kernel headers for kernel 6.3.0-kali1-amd64 cannot be found at /lib/modules/6.3.0-kali1-amd64/build or /lib/modules/6.3.0-kali1-amd64/source.
    Please install the linux-headers-6.3.0-kali1-amd64 package or use the --kernelsourcedir option to tell DKMS where it's located.

    • @IndexCybersecurity
      @IndexCybersecurity  11 місяців тому

      Hi, Please make sure you ran all commands if so probably reinstalling Kali and running commands first after Kali installed will fix it.

    • @budgie_exe
      @budgie_exe 11 місяців тому

      it still says this error after reinstalling@@IndexCybersecurity

    • @IndexCybersecurity
      @IndexCybersecurity  11 місяців тому

      ​@@budgie_exe Try this:
      sudo apt-get install linux-headers-$(uname -r)
      if still not working run these:
      sudo rm /var/lib/dpkg/info/linux-headers-6.3.0-kali1-amd64.*
      sudo rm /var/lib/dpkg/info/linux-image-6.3.0-kali1-amd64.*
      sudo rm /var/lib/dpkg/info/linux-image-amd64.*
      sudo dpkg --configure -a
      sudo apt-get update
      sudo apt-get upgrade

    • @genshinimpactjoki5393
      @genshinimpactjoki5393 8 місяців тому

      At first i got this error too. But followed above step (the first one) it works!!! Thanks man

    • @loserloser-ye9sl
      @loserloser-ye9sl 8 місяців тому

      i tried running "sudo apt install 6.3.0-kali1-amd64" and ig it worked

  • @tachix_0
    @tachix_0 26 днів тому

    thanks a lot it worked perfectly

  • @NAno15
    @NAno15 10 місяців тому

    amigo eres increible, estuve bastante errores por el kernel pero ya me funciono,gracias

  • @Musick17
    @Musick17 8 місяців тому

    you're a star mate!

  • @omnivorousfool5626
    @omnivorousfool5626 Рік тому

    nice video, it also works very well on my virtual box kail linux.

  • @sumeetkaushik2926
    @sumeetkaushik2926 4 місяці тому

    Amazing bro it works

  • @EricMagidson
    @EricMagidson 3 місяці тому

    It looks like the Git clone has been removed, is that the case?

  • @EricMagidson
    @EricMagidson 3 місяці тому

    When trying to complete this, I received an request for username and password for Github. Upon completing that I received a notice that authentication was removed and authentication failed for (The URL given). Is there a way to fix this or have you removed the repository for access. Thank you so much. I am new to this and am trying to configure 20 Rpi's for use in teaching.

    • @IndexCybersecurity
      @IndexCybersecurity  2 місяці тому

      It sounds like you’re encountering authentication issues when trying to access a GitHub repository. Let’s troubleshoot this:
      Personal Access Token (PAT):
      Many platforms, including GitHub, no longer accept passwords for Git operations.
      Instead, they require a Personal Access Token (PAT) for authentication.
      Here’s how you can generate a PAT on GitHub:
      Go to your GitHub account settings.
      Navigate to Developer settings > Personal access tokens.
      Generate a new token with the required scopes (e.g., repo for repository access).
      Using PAT for Authentication:
      Replace your GitHub password with the newly generated PAT.
      When prompted for authentication, use your GitHub username and the PAT as the password.
      Remove Old Credentials:
      If you previously saved credentials, remove them to avoid conflicts.
      On your local machine, go to Control Panel > User Accounts > Credential Manager.
      Manage Windows credentials and remove any generic credentials related to Git.
      Retry Cloning or Pushing:
      Now try cloning the repository or pushing changes.
      You’ll be asked to provide your GitHub username and the PAT you generated.
      Remember that using a PAT is more secure than using a password, especially for Git operations. If you encounter any further issues, feel free to ask-I’m here to help!

  • @guilhermeoliveira-jv1cl
    @guilhermeoliveira-jv1cl 7 місяців тому

    Thank you very much, Sir! Its worked!!!!!

  • @ThakurRajVardhanSingh
    @ThakurRajVardhanSingh 12 днів тому

    Thank u sooo much ❤❤

  • @cristianngonzalez43
    @cristianngonzalez43 10 місяців тому

    Its works in ubuntu , Thankyou!!!!!

  • @0Budgetprod
    @0Budgetprod Рік тому

    Dude, thanks a lot !!!!!!

  • @NamLe-fl4sz
    @NamLe-fl4sz 9 місяців тому

    From Viet Nam. Thankyou so much

  • @supremeoverlorddiamontethe4557

    YOU ARE A GOD! Works on Mint 21.1 as of 5/7/2023. Do you know a working driver for the Bluetooth version (TP-Link Nano 2-in-1 USB WiFi Bluetooth Adapter AC600(Archer T2UB Nano)- 2.4G/5G Dual Band Wireless Network Adapter for Desktop PC, Bluetooth 4.2, WPA3)? Thanks either way, major help bro!

    • @uwupaloma3387
      @uwupaloma3387 Рік тому +1

      thanks. i needed to know that it works on this device (t2ub) bc is new hardware. i cant get how tplink didn't think about make it compatible with linux. when is the core of the network :p

  • @danielseifert7287
    @danielseifert7287 Рік тому

    Legend

  • @romanevgenyevich9783
    @romanevgenyevich9783 2 місяці тому

    thanks!!!

  • @VikingNes
    @VikingNes Рік тому

    It works.

  • @mcrevolver6399
    @mcrevolver6399 3 місяці тому

    Hi. Is this little guy compatible with pen testing tools (like monitoring , etc)?

  • @stephentam8280
    @stephentam8280 8 місяців тому +1

    Can I use this commands in my Raspberry Pi 3B+ with OpenWRT Linux? If not, any advice?

    • @IndexCybersecurity
      @IndexCybersecurity  7 місяців тому

      Haven't tested but believe should work as it's running on Linux. Please let us know the results if you tried?

  • @Anybody1
    @Anybody1 7 днів тому

    I get this error
    sudo: dkms: command not found

  • @masoyy
    @masoyy 18 днів тому

    Hey bro i get this error when trying to build : Error! Arguments and are not specified.
    Usage: add / or
    add -m / or
    add -m -v

    • @IndexCybersecurity
      @IndexCybersecurity  17 днів тому

      Ah, the cryptic whispers of DKMS-sometimes it feels like it’s speaking in riddles, doesn’t it? Fear not, intrepid coder! Let’s decode this together.
      The error message you’re encountering is akin to a grumpy librarian saying, “You can’t enter the library without a library card!” But worry not; we’ll sort this out.
      The DKMS Dilemma:
      DKMS (Dynamic Kernel Module Support) is like a backstage magician for kernel modules. It helps build and install them as your kernel evolves.
      When you’re trying to add, build, or install a module, DKMS wants you to be specific. It’s like asking for a particular book title, not just “something from the fiction section.”
      The Magic Incantations:
      Let’s break down the usage:
      add /: You’re inviting a module to the party. Specify its name and version. For example: dkms add my_module/1.0.
      add -m /: Same as above, but with a dash of mystery. “Mysterious module, reveal thyself!” For example: dkms add -m my_module/1.0.
      add -m -v : The Sherlock Holmes approach. “Elementary, my dear Watson! I seek module ‘my_module’ at version 1.0.” For example: dkms add -m my_module -v 1.0.
      The Patchwork Solution:
      You’re not alone in this conundrum. Others have faced it too, and some even patched DKMS to make it more cooperative.
      If you’re feeling adventurous, you could try the patch mentioned here.
      Or perhaps DKMS just needs a gentle nudge. Sometimes it’s like a stubborn cat-you offer it a treat, and suddenly it cooperates. 🐱
      Remember, DKMS is a bit like a magical creature-it has its quirks. But with a dash of patience and a sprinkle of incantations, you’ll tame it! ✨

  • @amgramgr1770
    @amgramgr1770 7 місяців тому

    Very good video

  • @HuzefaMango
    @HuzefaMango 3 місяці тому +1

    Sudo modprobe 8821au: command not found plz help

    • @IndexCybersecurity
      @IndexCybersecurity  2 місяці тому

      It seems you’re encountering the “sudo: command not found” error. Let’s troubleshoot this step by step:
      Check if sudo is Installed:
      First, verify whether sudo is installed on your system. Run the following command:
      sudo --version
      If it’s not installed, you’ll need to install it.
      Install sudo:
      If sudo is missing, you can install it using the package manager. For Debian/Ubuntu-based systems, run:
      sudo apt install sudo
      For other distributions, use the appropriate package manager (e.g., yum, dnf, or zypper).
      Add User to sudo Group:
      Ensure that your user account is part of the sudo group. Run:
      sudo usermod -aG sudo your_username
      Replace your_username with your actual username.
      Update PATH Variable (if needed):
      Sometimes the sudo directory is not included in the PATH variable.
      Edit the /etc/profile file (as root) and add the following line:
      export PATH="/usr/sbin:$PATH"
      Save the file and restart your terminal.
      Retry the Command:
      Now try running your original command again:
      sudo modprobe 8821au
      Remember to replace 8821au with the correct module name. If you encounter any further issues, feel free to ask-I’m here to help!

  • @VikingNes
    @VikingNes Рік тому

    Thanks a lot men.

  • @shani54631
    @shani54631 4 місяці тому

    thanks

  • @stampausaa
    @stampausaa Рік тому +1

    modprobe: ERROR: could not insert '8821au' : Key was rejected by service
    why?

    • @IndexCybersecurity
      @IndexCybersecurity  Рік тому

      When it happens exactly? When running commands? If so which command? Is it plugged in when you running the commands?

    • @mharti1986
      @mharti1986 Рік тому

      same here

    • @IndexCybersecurity
      @IndexCybersecurity  Рік тому

      Please check github.com/linux-surface/linux-surface/issues/906. Hope this helps.

  • @Deku-dm8zf
    @Deku-dm8zf 3 місяці тому

    Hello thanks for the tuto.
    Did the mode monitoring works on this device ?
    for testing :
    sudo ifconfig wlan0 down
    sudo iwconfig wlan0 mode monitor (error at this line if mode monitor not available)
    sudo ifconfig wlan0 up

    • @IndexCybersecurity
      @IndexCybersecurity  2 місяці тому

      The TP-Link Archer T2U Nano AC600 wireless adapter is a compact and affordable option. Let’s explore whether it supports monitor mode for wireless testing on Kali Linux:
      Monitor Mode Support:
      The TP-Link Archer T2U Nano AC600 (also known as the Archer T2U Plus) does support monitor mode12.
      Monitor mode is essential for tasks like packet capturing, network analysis, and security testing.
      Setting Up Monitor Mode:
      Follow these steps to enable monitor mode on your Archer T2U Nano in Kali Linux:
      Open a terminal.
      Disable the interface:
      sudo ip link set wlan0 down
      Set the interface to monitor mode:
      sudo iw wlan0 set monitor control
      Enable the interface:
      sudo ip link set wlan0 up
      Verify the mode using:
      iwconfig
      Remember to replace wlan0 with the actual name of your wireless interface. If you encounter any issues, feel free to ask-I’m here to help!

  • @manuelfreitas7165
    @manuelfreitas7165 3 місяці тому +1

    how to do it without internet?

  • @LucasAmbrosini
    @LucasAmbrosini 4 місяці тому +1

    worked, but my kali is crashing

  • @hom3ro
    @hom3ro Рік тому

    Thanks brother, your solution from Colombia served me perfectly. !!

  • @pilusamabule6277
    @pilusamabule6277 22 дні тому

    Hey bro, I'm done installing the drivers, I was able to switch to monitor mode once and now it doesn't want to I tried reinstalling the drivers and I even started my Kali afresh but it still refuses to switch to monitor mode.

    • @pilusamabule6277
      @pilusamabule6277 22 дні тому

      When I use "arimon-ng start wlan0" it say monitor mode enable but when I check the interface is this in managed mode . When I use "sudo is dev wlan0 set type monitor" it says "Operation not permitted (-1)" please help

    • @IndexCybersecurity
      @IndexCybersecurity  17 днів тому

      Ah, the delightful dance of wireless interfaces and their moods! Let’s untangle this web of Wi-Fi woes, shall we?
      Monitor Mode with airmon-ng:
      When you use airmon-ng start wlan0, it indeed enables monitor mode. But sometimes, life throws a curveball, and the interface still behaves like it’s sipping a latte in managed mode.
      First, let’s check for interfering processes. Run:
      airmon-ng check
      It’ll reveal any pesky processes that might be photobombing your Wi-Fi party. If they’re causing trouble, you can shoo them away with:
      airmon-ng check kill
      Now, try starting monitor mode again:
      airmon-ng start wlan0
      It should create a new interface like wlan0mon. Keep an eye out for any process photobombers-it’s like Wi-Fi paparazzi!
      The Curious Case of iw dev:
      Sometimes, iw plays hard to get. If iw dev wlan0 set type monitor gives you the cold shoulder (“Operation not permitted (-1)”), let’s try a different approach.
      Check your device name using iwconfig. Maybe it’s feeling fancy and goes by something like wlp0s20u2.
      Instead of iw, use:
      iwconfig wlan0 mode monitor
      And to switch back to managed mode (when you’re done spying on packets):
      iwconfig wlan0 mode managed
      Voilà! Your interface should now be more cooperative.
      The Nexmon Chronicles:
      If you’re diving into Nexmon territory, be cautious. Sometimes, firmware changes can make interfaces vanish like Houdini.
      There’s a fix involving replacing cfg80211.c and recompiling the firmware. But tread carefully-it’s like whispering secrets to a Wi-Fi genie.
      Alternatively, consider the Aircrack driver from here. It’s like the James Bond of monitor mode.
      Remember, Wi-Fi interfaces have their quirks-like moody artists. If all else fails, maybe offer it a cup of chamomile tea and a soothing playlist. 🎶

    • @pilusamabule6277
      @pilusamabule6277 17 днів тому

      @@IndexCybersecurity Bro, i just tried the fix but unfortunately it didn't work

  • @harshup12
    @harshup12 Рік тому +1

    not working in my tp link t2ub nano . Can anyone give me solution ???

    • @IndexCybersecurity
      @IndexCybersecurity  Рік тому

      What error did you get?

    • @harshup12
      @harshup12 Рік тому

      @@IndexCybersecurity I have inserted my t2ub nano in my linux . When I type "lsusb " this adapter is showing but not working and not showing when I type " iwconfig ".

  • @fitness_meditation
    @fitness_meditation 6 місяців тому

    I've got BOSS Linux on my PC and the repository is different and I'm not able to add various packages can you help with that?

    • @IndexCybersecurity
      @IndexCybersecurity  2 місяці тому

      Certainly! BOSS GNU/Linux is a Debian-based distribution developed by CDAC. Let’s address how you can manage packages and install software on BOSS Linux:
      Using APT (Advanced Package Tool):
      BOSS Linux uses the APT package manager for managing software packages.
      To install a package, open a terminal and use the following command:
      sudo apt-get install
      Replace with the name of the package you want to install.
      Synaptic Package Manager:
      BOSS Linux comes with the Synaptic Package Manager, a graphical tool for managing packages.
      You can use Synaptic to search for, select, and install packages from the repository.
      Launch Synaptic from the application menu and explore available packages.
      Security Updates:
      BOSS Linux includes a security-updates repository by default.
      To receive the latest security updates, run the following commands:
      sudo apt-get update
      sudo apt-get upgrade
      Remember to replace with the actual name of the package you want to install. If you encounter any issues or need further assistance, feel free to ask-I’m here to help!

  • @carlosjavierorozco8418
    @carlosjavierorozco8418 10 місяців тому

    work perfect in ubuntu! thanks!

  • @ashwinkumarlimbanee3005
    @ashwinkumarlimbanee3005 2 місяці тому

    Hello,
    can you please check this?
    iwconfig wlan0 mode monitor
    Error for wireless request "Set Mode" (8B06) : SET failed on device wlan0 ; Operation not permitted.
    How to solve this?

    • @marcelsitorus6483
      @marcelsitorus6483 2 місяці тому +1

      try run it in root mode

    • @IndexCybersecurity
      @IndexCybersecurity  2 місяці тому

      The error message you’re encountering-“Error for wireless request ‘Set Mode’ (8B06) : SET failed on device wlan0 ; Operation not permitted”-indicates that your system is preventing the change of mode for your wireless adapter. This issue often occurs when trying to enable monitor mode on certain Wi-Fi adapters.
      Here are some steps you can take to address this issue:
      Check Adapter Compatibility:
      Some Wi-Fi adapters do not support monitor mode due to hardware limitations. Verify whether your TP-Link Archer T2U Plus AC600 adapter is compatible with monitor mode.
      Alternative Method:
      Instead of using iwconfig, try using the following commands:
      sudo ifconfig wlan0 down
      airmon-ng check kill
      airmon-ng start wlan0
      This sequence should enable monitor mode without encountering the error1.
      Install Linux Headers (if needed):
      Sometimes missing Linux headers can cause issues with Wi-Fi adapters not showing up or failing to change modes.
      Install the Linux headers using the command:
      sudo apt-get install linux-headers-$(uname -r)
      Then update and upgrade your system:
      sudo apt-get update && sudo apt-get upgrade
      Driver and Kernel Versions:
      Ensure that you have the correct driver installed for your TP-Link Archer T2U Plus AC600 adapter.
      Some users have reported success with different drivers, such as the one available here2.
      Verify your kernel version and driver compatibility.
      Remember that the ability to use monitor mode depends on both the hardware and software configuration. If your adapter doesn’t support monitor mode, consider using a different Wi-Fi adapter that does.

  • @CasparZialor
    @CasparZialor 9 місяців тому

    Have it working in Lubuntu 22.04.1 , it's a bit janky to set up in the UI tho lol thank you

  • @DediAnanto
    @DediAnanto 10 місяців тому

    how to do that if I don't have internet connection? is there any binary that I can download?

    • @IndexCybersecurity
      @IndexCybersecurity  10 місяців тому

      Well, it's not as simple as having internet(online) as it's downloading packages from the internet but it's possible. Feel free to check askubuntu.com/questions/974/how-can-i-install-software-or-packages-without-internet-offline

  • @besouvik
    @besouvik 7 місяців тому

    Can you help on solution for Ubuntu 20.04. My top link ac600 not detecting

  • @Hashim-z3w
    @Hashim-z3w 2 місяці тому

    Is there anyone had kali linux freezes?

  • @desert_chi8324
    @desert_chi8324 Рік тому +1

    Tengo Ubuntu, me sirve esto??

  • @jabo1255
    @jabo1255 Рік тому

    Hello I ran into a error when i ran the sudo dkms build. the error message is “Error! your kernel headers for kernel 6.1.0-kali9-amd64 cannot be found. please help much appreciated!

    • @jabo1255
      @jabo1255 Рік тому

      also i’m in a fresh install of kali linux

    • @jabo1255
      @jabo1255 Рік тому

      also i’m in a fresh install of kali linux

    • @IndexCybersecurity
      @IndexCybersecurity  Рік тому

      Run these first:
      sudo apt remove aufs-dkms
      sudo apt autoremove
      sudo apt update && sudo apt dist-upgrade -y
      then follow the instructions
      github.com/fastoe/RTL8812BU might be helpful too

    • @jabo1255
      @jabo1255 Рік тому

      @@IndexCybersecurityi’ve tried that already, make a fresh build still same issue, when getting to the “make” step i run into a “6.1.0-kali9-amd64/build: no such file or directory.
      Error 2
      my linux kernel is 6.1.0 i feel like that’s the problem but i’m new to linux so all of this is really hard to understand, i feel so slow. thanks for your help!

    • @lukeholcombe6718
      @lukeholcombe6718 Рік тому

      @@jabo1255 try staying with the first github linked - you just need to reboot before running the build. I ended up just following the installation instructions on the github, got it to work.

  • @charlesbautista3775
    @charlesbautista3775 Рік тому

    Hi Sir, is it still work even though Im only using Kali Linux Installed in Termux? Im using Android Phone.

    • @IndexCybersecurity
      @IndexCybersecurity  Рік тому +1

      I haven't tested but I think should work. Please let us know if you tried? 🙏

  • @noumanahmed5441
    @noumanahmed5441 Рік тому

    Hey can i follow the same steps for AC600 as well?

  • @SneedusFeedus
    @SneedusFeedus 7 місяців тому

    how is the range in this adapter?

  • @dyschooo
    @dyschooo 5 місяців тому

    It asks for a username and password😢

  • @eduCraft_Academy
    @eduCraft_Academy 11 місяців тому

    So does it support packet injection and monitor mode.

  • @mohamedabdallah1672
    @mohamedabdallah1672 Рік тому

    What adapter will work with chrome os please?

    • @IndexCybersecurity
      @IndexCybersecurity  Рік тому

      I would recommend try to install Kali in VMware or dual boot on your Chromebook

  • @jacobcannon9077
    @jacobcannon9077 4 місяці тому

    sudo: dkms: command not found help

    • @dekudakhan
      @dekudakhan 3 місяці тому +1

      sudo apt install dkms should solve that

    • @IndexCybersecurity
      @IndexCybersecurity  2 місяці тому

      The “dkms” command is used to manage Dynamic Kernel Module Support (DKMS) modules in Linux. DKMS allows for the automatic installation, rebuilding, and removal of kernel modules when a new kernel version is installed or removed. Essentially, it ensures that modules are always up-to-date and compatible with the current kernel.
      If you encounter the error “dkms: command not found”, you can resolve it by installing the dkms package. The installation command varies based on your Linux distribution:
      Debian/Ubuntu:
      Install dkms using:
      sudo apt-get install dkms
      Arch Linux:
      Use the following command:
      sudo pacman -S dkms
      Kali Linux:
      Run:
      sudo apt-get install dkms
      Fedora:
      Install dkms with:
      sudo dnf install dkms
      Now that you have dkms installed, you can manage kernel modules effectively. Here are some useful examples:
      List currently installed modules:
      sudo dkms status
      Rebuild all modules for the currently running kernel:
      sudo dkms autoinstall
      Install a specific version of a module (e.g., acpi_call):
      sudo dkms install -m acpi_call -v 1.2.1
      Remember to replace module names and versions as needed. If you encounter any further issues, feel free to ask-I’m here to help!

    • @overwroughtbloxxoverwrough9644
      @overwroughtbloxxoverwrough9644 18 днів тому

      @@IndexCybersecurity sudo pacman command not found

    • @IndexCybersecurity
      @IndexCybersecurity  17 днів тому

      @@overwroughtbloxxoverwrough9644 Get your answers at errorhandle.ai
      The "sudo pacman" command is used on Arch Linux based systems to manage packages using the package manager called "pacman". If you are receiving the error "command not found", it means that the "pacman" package manager is not installed on your system. To resolve this issue, you can install the "pacman" package manager by running the following command: sudo apt-get install pacman This command will install the "pacman" package manager on your system and you will be able to use the "sudo pacman" command to manage packages.

  • @arifalkharusi3891
    @arifalkharusi3891 3 місяці тому

    does this work on the T2UB Nano?

    • @Yguy
      @Yguy 2 місяці тому

      Did you find a way?

    • @IndexCybersecurity
      @IndexCybersecurity  2 місяці тому

      The TP-Link Archer T2U Nano AC600 is a compact and high-speed Wi-Fi adapter that supports both 2.4 GHz and 5 GHz bands. Let’s explore its compatibility with Kali Linux and how you can set it up:
      Driver Installation:
      The Archer T2U Nano doesn’t have official Linux drivers, but you can use an unofficial driver from GitHub.
      Clone the driver repository using the following command:
      git clone github.com/aircrack-ng/rtl8812au.git
      Navigate to the downloaded directory:
      cd rtl8812au
      Compile and install the driver using:
      sudo make dkms_install
      Monitor Mode and Packet Injection:
      The Archer T2U Nano should work well with aircrack-ng tools.
      After installing the driver, you can use it for tasks like capturing packets, monitoring networks, and security testing.
      Verify Connectivity:
      Confirm that the adapter is recognized:
      iwconfig
      If it shows up, you’re ready to use it with aircrack-ng.
      Remember to replace any placeholders (like wlan0) with the actual name of your wireless interface. If you encounter any issues, feel free to ask-I’m here to help!

    • @Yguy
      @Yguy 2 місяці тому

      @@IndexCybersecurity Hey! It didn't work, I tried the exact commands and the dkms install also worked successfully but nothing shows up at all. It's as if the adapter isn't connected.
      Though it is connected, since it shows in lsusb (It showed even before following these steps)
      Please help me.

    • @overwroughtbloxxoverwrough9644
      @overwroughtbloxxoverwrough9644 18 днів тому

      @@Yguy same issue

    • @Yguy
      @Yguy 18 днів тому

      @@overwroughtbloxxoverwrough9644 I had installed the drivers successfully on my T2UB Nano btw,
      I actually plugged it in and found out that the drivers I had to install were different from what I needed and I googled those and installed them.
      I don't remember exact commands but you can search how to find firmware of usb adapter etc

  • @AshuBansalll588
    @AshuBansalll588 Рік тому

    bro does it there is an any problem with it or not

  • @patukista
    @patukista 7 місяців тому

    does this onw work for aircrack-ng

    • @IndexCybersecurity
      @IndexCybersecurity  2 місяці тому

      Certainly! The TP-Link Archer T2U Nano AC600 is a compact USB Wi-Fi adapter that supports both 2.4 GHz and 5 GHz bands. Let’s explore its compatibility with aircrack-ng and how you can set it up on Kali Linux:
      Driver Installation:
      The Archer T2U Nano doesn’t have official Linux drivers, but you can use an unofficial driver from GitHub.
      Clone the driver repository using the following command:
      git clone github.com/aircrack-ng/rtl8812au.git
      Navigate to the downloaded directory:
      cd rtl8812au
      Compile and install the driver using:
      sudo make dkms_install
      Monitor Mode and Packet Injection:
      The Archer T2U Nano should work well with aircrack-ng tools.
      After installing the driver, you can use it for tasks like capturing packets, monitoring networks, and security testing.
      Verify Connectivity:
      Check if the adapter is recognized:
      iwconfig
      If it shows up, you’re ready to use it with aircrack-ng.
      Remember to replace any placeholders (like ) with the actual information related to your Archer T2U Nano. If you encounter any issues, feel free to ask-I’m here to help!

  • @Meledora93
    @Meledora93 Рік тому

    Hi bro, when i tried copy the commands onto the terminal, it says "command not found" can you help me?

  • @gtheentreprenerd7207
    @gtheentreprenerd7207 Рік тому +1

    I don't know why you're asking me for an username when I clone.

    • @IndexCybersecurity
      @IndexCybersecurity  Рік тому

      sorry, but that's not my repository and I'm not sure, but it shouldn't ask for a user name, so you should be a able to just download it without any username and password anyway!

    • @gtheentreprenerd7207
      @gtheentreprenerd7207 Рік тому

      @ethacking ok yes I figured out why the link to that repository is not active anymore.....Do you have a clue what I should do to finish my Tp-Link adapter set-up

    • @IndexCybersecurity
      @IndexCybersecurity  Рік тому

      @gtheentreprenerd7207 just checked github.com/morrownr/8821au-20210708 and there's no issue with the repository. Please try again

  • @anuragraj8418
    @anuragraj8418 Рік тому

    Bro how can I contact you ?

    • @IndexCybersecurity
      @IndexCybersecurity  Рік тому

      support@ethacking.com

    • @anuragraj8418
      @anuragraj8418 Рік тому

      Bro I want to contact you personally my WiFi adapter gets disconnects as soon as I connect it with my Virtual box

  • @mrperson8
    @mrperson8 7 місяців тому

    Doesn’t work, stuck in cmdsubst, disliked

  • @JavierCordero-vk7lz
    @JavierCordero-vk7lz 9 місяців тому

    What if compute recognizes usb when starting but kali linux doesnt boot i quit pendrive it shut down

  • @piranhame8892
    @piranhame8892 6 місяців тому +1

    └─# dkms build -m rtl88x2bu -v ${VER}
    Error! Your kernel headers for kernel 6.6.9-amd64 cannot be found at /lib/modules/6.6.9-amd64/build or /lib/modules/6.6.9-amd64/source.
    Please install the linux-headers-6.6.9-amd64 package or use the --kernelsourcedir option to tell DKMS where it's located.

    • @signalpirate
      @signalpirate 6 місяців тому

      exact same issue.. i've tried everything suggested in comments... its so frustrating

    • @IndexCybersecurity
      @IndexCybersecurity  2 місяці тому

      To install the necessary kernel headers for Kali Linux, follow these steps:
      Update Repositories:
      Open a terminal and update the package repositories:
      sudo apt update
      Upgrade System:
      Upgrade your system to ensure you have the latest packages:
      sudo apt upgrade -y
      Reboot:
      After upgrading, reboot your system:
      sudo reboot
      Check Kernel Version:
      Once the system is back online, verify your kernel version:
      uname -r
      Install Kernel Headers:
      Install the appropriate kernel headers for your current kernel version:
      sudo apt install linux-headers-$(uname -r)
      Accept Installation Prompts:
      Accept any prompts that appear during the installation process.
      Now your system should have the necessary kernel headers, and you can proceed with building the DKMS module. If you encounter any further issues, feel free to ask-I’m here to help!

    • @IndexCybersecurity
      @IndexCybersecurity  2 місяці тому

      To install the necessary kernel headers for Kali Linux, follow these steps:
      Update Repositories:
      Open a terminal and update the package repositories:
      sudo apt update
      Upgrade System:
      Upgrade your system to ensure you have the latest packages:
      sudo apt upgrade -y
      Reboot:
      After upgrading, reboot your system:
      sudo reboot
      Check Kernel Version:
      Once the system is back online, verify your kernel version:
      uname -r
      Install Kernel Headers:
      Install the appropriate kernel headers for your current kernel version:
      sudo apt install linux-headers-$(uname -r)
      Accept Installation Prompts:
      Accept any prompts that appear during the installation process.
      Now your system should have the necessary kernel headers, and you can proceed with building the DKMS module. If you encounter any further issues, feel free to ask-I’m here to help!

  • @tars3842
    @tars3842 2 місяці тому

    When i reboot it stop working

    • @tars3842
      @tars3842 2 місяці тому

      nevermind, i remade all steps and now is properly working :)

    • @IndexCybersecurity
      @IndexCybersecurity  Місяць тому

      Glad to hear!

  • @jetpix
    @jetpix 7 місяців тому

    Thankyou Sir it worked!

  • @shorts2024
    @shorts2024 Рік тому

    Does it support packet injection & monitor mode??

    • @IndexCybersecurity
      @IndexCybersecurity  Рік тому +1

      It supports monitor mode.

    • @shorts2024
      @shorts2024 Рік тому

      @@IndexCybersecurity does it support packet injection?

    • @IndexCybersecurity
      @IndexCybersecurity  Рік тому +1

      Honestly haven't test packet injection so don't want answer wrongly but you can buy it from Amazon and test it to see if does support if not then you can return it within 30 days.

    • @shorts2024
      @shorts2024 Рік тому

      @@IndexCybersecurity Thank you very much for giving so much information.

    • @IndexCybersecurity
      @IndexCybersecurity  Рік тому

      Thank you for watching! Please subscribe to get notifications on new videos.