Archive for July, 2008

Great Linux Online Courses

If you are looking for an Online Linux Course or an Online Linux Classes i personally refer you to linux.org they offer vast tutorials from beginners to intermediate level Linux courses up to Advanced Linux Course. Their intermediate course covers from basic to advance Linux System Administration plus tips and tricks that you can use on your Linux daily System Administration. So go ahead go to their website to learn more…

Linux Online -http://www.linux.org

Like this blog? Why not buy me a cup of coffee?

Firefox 3: Faster Bookmarks

This video is a quick tutorial on the new feature of Firefox 3 bookmarks.

Like this blog? Why not buy me a cup of coffee?

I just want to take this opportunity to thank my top 10 Entrecard droppers fro the month of June , Thanks for the support and for consistently visiting and dropping your card to my site. Also to all Entrecard users who visited my site Thank you.

webomatik
Bizphere
60 Were Enough
sourkandy
The Path to the Pegasus Letter
First Door on the Left
Famous Quotes
Prove Me Wrong
Sonnie’s Porch
MyBlogIt

Like this blog? Why not buy me a cup of coffee?

Linux Netstat How-To

Netstat (network statistics) is a command-line tool that displays network connections (both incoming and outgoing), routing tables, and a number of network interface statistics. Netstat is a useful tool for checking your network configuration and activity.

Examples:

netstat

Displays generic net statistics of the host you are currently connected to.

netstat -an

Shows all connections to the server including the source and destination ips and ports if you have proper permissions.

netstat -rn

Displays routing table for all ips bound to the server.

netstat -an |grep :80 |wc -l

Display the amount of active connections on port 80. Removing the pipe and wc command would display each connection.

netstat -natp

Display active Internet connections.

Read the rest of this entry »

Like this blog? Why not buy me a cup of coffee?