Categories
-
Recent Posts
Recent Comments
Archives
May 2013 M T W T F S S « Nov 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
Category Archives: Linux
How to find ports which are in use on linux server
netstat -na | grep ‘tcp\|udp’ | awk ‘{print $4}’ | cut -d: -f2 | sort | uniq -c | awk ‘{print $2}’ Please find below the description of commands used in above string — netstat command is used to check … Continue reading
How to secure your Linux Box
1) Keep the system up to date by applying all the latest update/patches. Read news websites for bug fix and security updates. Make sure packages are signed and from the know source. 2) Delete or Disable the things you do … Continue reading
Linux command line history with timestamp
History command is a very useful command for the linux administror to list out all the executed commands. It is very useful to find out what commands was executed that broke down the server. By default the command history could … Continue reading
Posted in Linux
Leave a comment