Posts

Showing posts from November, 2022

Enable WIFI ADAPTER Monitor Mode in Kali Linux

Connect the WIFI adapter and add it in VirtualBox USB Settings TP-Link TL-WN725N 150Mbps Wireless N Nano USB Adapter https://www.amazon.in/gp/product/B008IFXQFU Check the Adapter Chippet lsusb Bus 001 Device 002 : ID 2357 : 0109 TP-Link TL-WN823N v2 / v3 [Realtek RTL8192EU] Bus 001 Device 001 : ID 1 d6b: 0002 Linux Foundation 2 . 0 root hub Bus 002 Device 002 : ID 80 ee: 0021 VirtualBox USB Tablet Bus 002 Device 001 : ID 1 d6b: 0001 Linux Foundation 1 . 1 root hub Find Appropriate Driver for Realtek RTL8192EU from GitHub https://github.com/clnhub/rtl8192eu-linux Install the dependencies sudo apt install linux-headers-generic build-essential dkms git Clone the Driver git clone https://github.com/clnhub/rtl8192eu-linux.git Configure the Architecture and Monitor Mode Open MakeFile in Text Editor or Nano If you're using a different architecture than x86, the set (MakeFile) CONFIG_PLATFORM_I386_PC = n set your architecture CONFIG_PLATFORM_ARM_AARCH64

How to Install Sublime Text in Ubuntu or Kali Linux ?

Run ALL the given below commands in Terminal Install the GPG key wget -qO - https: // download.sublimetext.com /sublimehq-pub.gpg | gpg --dearmor | sudo tee / etc /apt/ trusted.gpg.d /sublimehq-archive.gpg > / dev /null Add stable channel from official website echo "deb https://download.sublimetext.com/ apt/stable/" | sudo tee /etc/apt/sources. list .d/sublime- text . list Update apt sources bash sudo apt-get update Ensure that apt is set up to work with https sources sudo apt- get install apt-transport- https Install Sublime Text: sudo apt- get install sublime- text