-
Daily Popular
- Xtreme Movie Review: Agneepath Agneepath Agneepath (2012)
- JaxtrSMS-Send Free SMS Worldwide | Download for iPhone, Android, BlackBerry, Java
- Load Delimited Data (csv, excel) into MySQL Server
- Collection for insulting – one liners
- 10 Steps: MySQL Monitoring through Nagios: Install & Configure
- Unique birthday card wishes for My dear Brother
- Working with EditPlus Text Editor-Regular Expression How To
- MyDumpSplitter-Extract tables from Mysql dump-shell script
- Place to visit Mumbai: Alibaug 1-2 day tour weekend picnic
- 3 Idiots – Chatur Silencer Speech Chamatkar
-
linux Archive
-
How to Get Stock Quote on Linux using Google ,Curl, Grep, Awk
Posted on November 12, 2010 | 1 CommentMore...If you are a Stock Market Addict and a Techie; normally working on Linux(es); this post will interest you as you still can get quote of your stock on your... -
Audit-Checking login history-to know WHO DID THAT on Redhat Linux
Posted on February 16, 2010 | No CommentsMore...I’m using Redhat Linux (RHEL 5). Yesterday I saw a bit suspicious activities and data movements under my “home” (/home/username directory). I thought of investigate / audit through my Redhat linux... -
crontab not working with dynamic date filename – rhel linux
Posted on January 7, 2010 | No CommentsMore...I have done it for so many times, setting a cronjob. Today I was tring to set a simple cronjob which will output the log file with timestamp attached filename.... -
MySQL Memory Usage Limits on 32 bit Linux
Posted on December 18, 2009 | No CommentsMore...I’m having RHEL 5 (32-bit) and MySQL-5. I was trying to check how much is the Memory Utilization limits for MySQL 5 on 32bit OS. We can easily calculate the... -
How to echo colored text in linux shell script
Posted on December 4, 2009 | 2 CommentsMore...Try following command on you bash: bash $] tput setaf 1 You will see your text color will turn red. To reset it you can type following command to make... -
Simple Shell Script to Monitoring Disk Space on a Linux Machine
Posted on January 11, 2009 | 4 CommentsMore...This article explain a way to get a mail as soon as the disk usage reaches to its critical level to avoid issues later. To set a simple monitor on Linux /... -
Linux Shell Commands – quick how-tos
Posted on January 10, 2009 | No CommentsMore...Following are linux commands, tricks for doing regular tasks. Rename files: replace space by _ in linux: for files in *; do mv "$files" `echo $files | tr ' '...