Main
|
netstat -ntu | awk ' $5 ~ /^[0-9]/ {print $5}' | cut -d: -f1 | sort | uniq -c | sort -n |
Alternative
|
netstat -ntu | awk ' $5 ~ /^(::ffff:|[0-9|])/ { gsub("::ffff:","",$5); print $5}' | cut -d: -f1 | sort | uniq -c | sort -nr |
|
netstat -nt | awk -F":" '{print $2}' | sort | uniq -c |
|
netstat -ntu | awk ' $5 ~ /^[0-9]/ {print $5}' | cut -d: -f1 | sort | uniq -c | sort -n |
http://www.commandlinefu.com
First we must download ISO from source, choose near from you. 1. Update OS, # yum upgrade 2. Install some tools, so we can check running services # yum install nano bash-completion net-tools wget curl lsof -y 3. Now I can… Read more ›
Hi all, Just do “yum install php-process” Done
New Linux Software Powered by pkgs.org
Hi guys, This is my story on my office about network. Company have 2 server only with low specification server (HP ML110 – 1 Eth, memory upgrade 8 GB each server), network device is Mikrotik RB1100 and Switch un-manage. And… Read more ›
Snoopy Snoopy is a PHP class that simulates a web browser. It automates the task of retrieving web page content and posting forms
How to change your age on google account If you registered without your google account, you will not asked by google about your profile information. Google will ask create google account only.
On joomla 2.5, I can’t find parameter of default image directory in site configuration, usually “images” or root web directory/images. Then I try to install K2 extension, in parameter configuration of K2 have default root image directory in “media/k2/items”. But… Read more ›
My environment : Server OS : CentOS 5.6 Joomla : 2.5.4 Install httpd as web server # yum install httpd Install mysql as database # yum install mysql-server
Environment : Server A, 192.168.2.10, server1.localdomain, root, user1 Server B, 192.168.2.20, server2.localdomain, root, user2 Condition : Server A, wanna put file of content in directory /app/web/ to Server B where owner is user1 and will execute by root