1. Edit your shell configuration file : nano ~/.bashrc # or nano ~/.zshrc 2. Add the functions : Append the following lines to your configuration file. These functions will wrap the commands and pipe their output through lolcat : function lolcat_wrapper() { command "$@" | lolcat } alias ls='lolcat_wrapper ls' alias cat='lolcat_wrapper cat' alias echo='lolcat_wrapper echo' alias grep='lolcat_wrapper grep' alias tail='lolcat_wrapper tail' alias head='lolcat_wrapper head' alias dmesg='lolcat_wrapper dmesg' alias df='lolcat_wrapper df' alias du='lolcat_wrapper du' alias free='lolcat_wrapper free' alias ps='lolcat_wrapper ps' alias top='lolcat_wrapper top' alias htop='lolcat_wrapper htop' alias ifconfig='lolcat_wrapper ifconfig' alias ip='lolcat_wrapper ip' alias ping='lolcat_wrapper ping' alias traceroute='lolcat_wrapper traceroute' alias ...
Creating a fake access point, also known as an evil twin or rogue access point, can be done using tools available in Kali Linux. Here's a general overview of the steps involved: 1. **Prepare Your Environment**: Ensure you have a wireless network adapter capable of supporting monitor mode and packet injection. Kali Linux typically comes with compatible drivers for many wireless adapters. You can check the compatibility of your wireless adapter with Kali Linux by researching online or consulting the documentation. 2. **Set Up Your Wireless Interface**: Open a terminal window in Kali Linux and use the following commands to set your wireless interface (replace `<interface>` with the name of your wireless interface): ```bash sudo ifconfig <interface> down sudo iwconfig <interface> mode monitor sudo ifconfig <interface> up ``` This puts your wireless interface ...
By default you cannot change the Kali Linux resolution out of the settings menu when running on a Hyper-V Virtual Machine. To change the resolution: 1. Open a terminal session 2. Run the command: sudo vi /etc/default/grub 3. Scroll down to the line GRUB_CMDLINE_LINUX_DEFAULT=”quiet” and press the [i] Key to enable the Insert function on Vi editor 4. Change the resolution configuration for the Hyper-V Video Synthetic driver with the following: GRUB_CMDLINE_LINUX_DEFAULT=”quiet splash video=hyperv_fb:1920×1080″ 5. Write changes and quit Vi: Press the Esc Key Type :wq 6. Update the Grub configuration by running the command: sudo update-grub 7. Reboot the virtual machine restart When you go to login to Kali Linux it will still have the default resolution but once you have logged into the operating system it will refresh and open in your new resolution.
Comments
Post a Comment