Posts

Showing posts from July, 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

Configure Windows PowerShell to display Current Working Directory Name

Image
Open Powershell and Check your powershell profile path $profile Create a File if it does not exist mkdir C:\Users\anthoniraj\Documents\WindowsPowerShell\ Create a Profile File notepad C:\Users\anthoniraj\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1 Add the following script and save the content function prompt { $p = Split-Path -leaf -path ( Get-Location ) " $p > " } Restart PowerShell. Now you will see only current working directory in console.

Creating a Java Project using Visual Studio Code

Image
Visual Studio Code (VS Code) is the simple and lightweight editor that can be customized for any programming language. Microsoft provides a powerful VS Code plugin for Java Development. You need a stable JDK for developing Java Project. Java Development Kit (JDK): Bell Soft OpenJDK version 17 Editor: VS Code Install Bell Soft OpenJDK Download and install OpenJDK from the official website (64-Bit Full JDK) https://download.bell-sw.com/java/17.0.3.1+2/bellsoft-jdk17.0.3.1+2-windows-amd64-full.msi After installing the JDK, Go to Command window and check the java version, java -version Setting up the VS Code Editor Download Link: https://code.visualstudio.com/download After installing VS Code, Navigate extension icon and search by typing the keyword java Install Extension Pack for Java plugin from Microsoft Create a Java Project Press Ctrl+Shift+P -> Search java in popup then choose Java: Create Java Project option Select No Build Tools Now Choose the works

Redmine Installation with Code Review Plugin in Ubuntu 20.04

Redmine is the popular open source project management system with code review feature. We can tarck the time spent by developers for a particular project. GIT and SVN can also be linked with redmine for code review. It is complete package for managing projects in a small team size. Redmine URL Redmine is a project management web application. https://redmine.org/projects/redmine/wiki/HowTo_Install_Redmine_50x_on_Ubuntu_2004_with_Apache2 Installing dependencies sudo apt- get update && sudo apt- get upgrade -y Install required packages sudo apt install -y apache2 ruby ruby-dev build -essential libapache2- mod -passenger libmysqlclient-dev sudo apt- get install mysql- server ` Download & Extract Redmine wget http s: //redmine.org/releases/redmine- 5.0 . 1 .tar.gz` cd / opt sudo tar -xvzf ~/redmine- 5.0 . 1 .tar.gz sudo cp -r redmine / opt / Symlink to remove version reference sudo ln -s redmine-5 .0 .1 redmine Configure database Create a database a