Category Archives: Networking

Find out active IPs in a Linux LAN

If you are on a LAN and wish to find out which computers in it currently have access to that certain LAN, you can use the following command: for ip in $(seq 1 254); do ping -c 1 192.168.1.$ip>/dev/null; [ $? -eq 0 ] && echo “192.168.1.$ip UP” || : ; done This will ping… Read More »

Is Linux better than Windows web hosting?

People often get confused on which OS is better on getting the best performance or what’s best suited for a website. And this question is often debatable since it usually depends on what programs or scripting language you are planning to run on your website. But we still can’t deny the fact that Linux is… Read More »