Install NVIDIA Drivers on Kali
apt-get update apt-get dist-upgrade apt-get install -y linux-headers-$(uname -r) apt-get install nvidia-kernel-dkms
References :
http://docs.kali.org/general-use/install-nvidia-drivers-on-kali-linux
Disable tracker-miner-fs in Linux
gsettings set org.freedesktop.Tracker.Miner.Files crawling-interval -2 gsettings set org.freedesktop.Tracker.Miner.Files enable-monitors false
After this changes, it is highly recommended to cleanup the database to reclaim some lost space on the disk:
tracker-control -r
References :
http://askubuntu.com/questions/346211/tracker-store-and-tracker-miner-fs-eating-up-my-cpu-on-every-startup
How to get sound over HDMI to VGA working when using a TV
sudo nano /boot/config.txt
hdmi_force_hotplug=1 hdmi_drive=2
References :
https://www.element14.com/community/thread/18205/l/how-to-get-sound-over-hdmi-working-when-using-a-tv?displayFullThread=true
http://raspberrypi.stackexchange.com/questions/2169/how-do-i-force-the-raspberry-pi-to-turn-on-hdmi
How to give your Raspberry Pi a Static IP Address
sudo nano /etc/network/interfaces
auto eth0 iface eth0 inet static address 192.168.1.81 netmask 255.255.255.0 gateway 192.168.1.254
sudo rm /var/lib/dhcp/*
sudo reboot
ifconfig
References :
http://www.modmypi.com/blog/tutorial-how-to-give-your-raspberry-pi-a-static-ip-address
Run a program at Raspberry Pi boot
sudo nano /etc/rc.local
python /home/pi/myscript.py &
References :
https://www.raspberrypi.org/documentation/linux/usage/rc-local.md
Deauthentication attack in Wifi with Aircrack-ng
deauthenticate all clients in a network
aireplay-ng --deauth [number of deauth packets] -a [access point mac] [monitor interface] aireplay-ng --deauth 10 -a FC:75:16:D4:CC:2A wlan0mon
deauthenticate a specific client in a network
aireplay-ng --deauth [number of deauth packets] -a [access point mac] -c [target mac] [monitor interface] aireplay-ng --deauth 10 -a FC:75:16:D4:CC:2A -c 50:01:BB:7B:95:17 wlan0mon
References :
http://www.aircrack-ng.org/doku.php?id=deauthentication