True transparency in CentOS

I have enabled transparency for my gnome terminal but I am always getting my desktop wallpaper as background of terminal after googling I found compiz missing. Compiz is available in base repo itself. pre style="color:#55cc66;background:#001800;" sudo="" yum="" install="" compiz After installing look for system-Preferences-WindowsTweak Manager and last option would give compiz and there enable...

How to extract system load through SSH

Hi , with some research I have written these simple scripts which can extract only load average part from uptime command. these scripts you can use for getting information you requested from remote systems through SSH. Script #1 #!/bin/bash for i in localhost  do ssh raja@$i $'uptime | awk \'{print $6 $7 $8 $9 $10}\' ' done Script #2 #!/bin/bash for i in localhost  do ssh raja@$i...

Restore Permission on Home directory

This Post I am taking from askubuntu , not answered by me but posting in my blog so that it can help others in future.http://askubuntu.com/questions/567599/emsudo-chmod-x-caused-me-cannot-open-anythingNote: This is the way like doing as undoing what you have done.sudo chmod -x * -Rfind . -type dYou will get an error like below find: 'xxxxx': Permission denied then do asfind . -type d -exec chmod...