Skip to content

Instantly share code, notes, and snippets.

@xardit
Created May 25, 2016 21:06
Show Gist options
  • Save xardit/69eb6495e9fce649a934af0377c83dc8 to your computer and use it in GitHub Desktop.
Save xardit/69eb6495e9fce649a934af0377c83dc8 to your computer and use it in GitHub Desktop.
This is a "NEED TO HAVE" KALI Linux application and settings to prettify it
#INSTALL KALI WITHOUT NETWORK BECAUSE SOMETIMES CANT REACH APT SERVERS AND IT STUCKS Note:{if you are stucked and dont want to rebegin just pres CTRL+ALT+F2 or F3 or F5} and type `ps` and `kill $PROCESS_NR` ,usualy apt-get stucks, than get back with CTRL+ALT+F4
#/etc/apt/sources.list must have those lines
deb http://http.kali.org/kali kali main contrib non-free
deb http://security.kali.org/kali-security kali/updates main contrib non-free
#run a update
apt-get clean && apt-get update
#IF in VM do those to lines
apt-get install linux-headers-`uname -r`
# vm tools tar file copt to /usr/src/ and extract it and then inside it run `./vmware-install.pl`
#run a upgrade > note:it may need some time, needs to download 600MB from kali clean version 1.0.6 iso
apt-get upgrade
#Need to have Install tools
# gedit,sysv-rc-conf,flashplayer,network-vpn/pptp,putty,archiveManager(fileroller),tor-vidalia,privoxy,phpmyadmin,php-pear(packageMNG for php),filezilla,htop,nethogs
apt-get install gedit gnome-tweak-tool sysv-rc-conf flashplugin-nonfree network-manager-openvpn-gnome network-manager-pptp network-manager-pptp-gnome network-manager-strongswan network-manager-vpnc network-manager-vpnc-gnome putty unrar unace rar p7zip zip unzip p7zip-full p7zip-rar file-roller vidalia tor privoxy phpmyadmin php-pear python-software-properties filezilla filezilla-common htop nethogs xclip
# install nodejs and npm
mkdir /usr/src/nodejs
cd /usr/src/nodejs
curl http://nodejs.org/dist/node-latest.tar.gz | tar xz --strip-components=1
./configure
make install
curl https://www.npmjs.org/install.sh | sh
npm install -g express request async grunt-cli grunt socket.io uglify-js jshint nodeunit cssmin watch
#config privoxy listen as 0.0.0.0 ,not "localhost"
#config phpmyadmin at /etc/phpmyadmin/config.inc.php
#config apache by adding "ServerName localhost" @ /etc/apache2/ports.conf
#add icons:
* gnome-terminal -e "nethogs eth0" -t "NETWORK ACTIVITY (nethogs eth0)"
* gnome-terminal -e "htop" -t "PROCESS ACTIVITY (htop)"
apt-get autoremove && apt-get autoclean
#fix some things
#-> KALI>SystemTools>Preferences>Advanced Settings
* FONT > set all to 9
* Theme > WindowTheme>Simple
#-> KALI>SystemTools>Preferences>System Settings
* Keyboard > Shortcuts > Custom :ADD>>
{cmd:gedit,key:START+G},
{cmd:subl,key:START+S}. //sublime
{cmd:gnome-terminal,key:START+T},
{cmd:truecrypt -d --force,key:CTRL+ALT+.}
#Startup error "Could not apply the stored configuration for monitors"
rm .config/monitors.xml
#INSTALL MinGW - aptitude search mingw for C# compiling
apt-get install g++-mingw-w64-i686 gcc-mingw-w64-i686
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment