Monthly Archive: April 2014

Create a symbolic link 0

Create a symbolic link

$> ln -s source newlink I've been using this command for more than 10 years and I still need to look it up to see the parameter order !

Check who is using port 80 on linux 0

Check who is using port 80 on linux

Check what application is using port 80 sudo netstat -pnlt | grep ':80'   To review what port apache is binded on : sudo netstat -pnlt | grep http