Kali Linux – Chrome Installation How I Installed Chrome on Kali Linux #################################### 1. go to google chrome and download the .deb that fits your bit 32 bit or 64 bit, IRead More…
JOBS & PROCESS CONTROL – moving process to background – a new process, or a running process – bg/fg & the difference between disown/disown -h/nohup
A Rather Long Introduction Great article: http://www.cyberciti.biz/faq/unix-linux-disown-command-examples-usage-syntax/ Also this one: http://unix.stackexchange.com/questions/3886/difference-between-nohup-disown-and Can put a process into background using “command &“, typing “fg” will bring it to the foreground, you can press control-z toRead More…
JOBS & PROCESS CONTROL – JOBS & NOHUP & DTACH
JOBS NOTE: each command here starts with the # prompt, you obviously dont need to write the # on the prompt PUT JOB IN BACKGROUND – STILL TIED TO SHELL: # commandRead More…
ipfm – ip flow meter – NETWOK MONITORING LOGS
ipfm – NETWORK MONITORING LOGS – IP FLOW METER – ipfm.conf EXAMPLE CONFIG ipfm is a great program for generating daily and hourly reports of your network traffic. It organizes it basedRead More…
install LAMP (linux apache2 mysql php5) on debian
All LAMP is just Apache2 and mysql and php5 installed in that order on LINUX. Install it in that order to have dependencys not messed up (although ive set it up beforeRead More…
IFTOP and IFSTAT cheatsheet for me
##### iftop ##### Interactive environment for view (STEP 0) INSTALL apt-get install iftop (STEP 1) COMMAND LINE iftop -nNBP -i eth0 -B for bytes units (by default without thisRead More…
HOW TO TEST REAL SPEED OF DRIVES WITHOUT CACHING
HOW TO TEST REAL SPEED OF DRIVES WITHOUT CACHING ################################################ Create a ram disk which is a big portion of RAM and fill it up. Then test the regular disks speed.Read More…
MY NOTES ON WIFI PACKET CAPTUREING
MY NOTES ON WIFI PACKET CAPTUREING ################################### lsusb lspci apt-get update apt-get upgrade apt-get install tcpdump apt-get install pcap apt-get install build-essential libssl-dev iwconfig ifconfig wlan0 down iwconfig wlan0 mode Monitor iwconfigRead More…
How to setup/install WordPress on a fresh debian system
HOW TO SETUP WORDPRESS ON A FRESH DEBIAN SYSTEM ################################################## This should work on DEBIAN 7 and DEBIAN 6 First we install LAMP and then MYSQL and then WORDPRESS LAMPRead More…
Download the .debs from a package
Download the .debs from a package Good links: https://help.ubuntu.com/community/AptGet/Howto http://www.cyberciti.biz/tips/linux-debian-package-management-cheat-sheet.html http://www.cyberciti.biz/howto/question/linux/apt-get-cheat-sheet.php WAY1: For new apt 0.8 and newer we have have “apt-get download” List your version apt-get OUTPUT FOR ME: 0.9.7.8 cdRead More…