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.
After installing look for system-Preferences-WindowsTweak Manager and last option would give compiz and there enable transparency.

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 $'uptime | grep -o "load.*"'
done

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-anything

Note: This is the way like doing as undoing what you have done.

sudo chmod -x * -R
find . -type d

You will get an error like below 
find: 'xxxxx': Permission denied 
then do as
find . -type d -exec chmod +x {} \;