April 21, 2010
If I ask You a Little Love
If I give U love, Can I ask all just a little love would u give ur hand forever?
If I wait here, If I just stay right here.would you come to me and come forever?
If I give U all my care, Can I ask just a little care,
would u give me that and forget the world???
I don’t know how; How to say;how I feel
Those three words are said too much, I hope U know it all.
Forget what we’re told Before we get too old
Give me ur hand to complete my life
Let’s don’t waste time in reading our minds
and to let go each moments of our life.
I need your grace, To remind me, To find my own
All that I am all that I ever was
Is here in your black shining eyes, they’re all I can see.
I don’t know where Confused about how as well
Just know that these things will never change for us at all
If I give my life, if I give my entire life,would u take it and care it forever?
If I ask to kiss me, would U take face and kiss me forever?
All That I need, All that I need is you & you know it well !!
A farewell
When you far, when you near, Sometimes smile and sometimes tear. Good times varnish in wind like a smell of stargazer.
A little tune spreading soon far and near. , Spring gone with leaving a breeze in air.
This is a farewell to say u dear, We love you all from there to here. These are the most amazing days to remember.
These are the days which will stay forever.
May be we will stay at a distance but U will remain in our heart forever.
February 22, 2010
Imagination
His home brunt down by long ago fires, His mind washed away by ravaging floods, But still he gets stirred by human faces, still he builds a goddess from the earth.
He feels like he is the only one who suffered, Whose prayers were not answered by God, When he needed his closed ones very badly they even left him, but still he can’t stop believing.
He thinks someday his dreams will come true, he will get back everything what he had lost someday, Although he knows A loss is a loss, But still he can’t stop imagining
February 21, 2010
I wish I would a little Wise!!
“Walking on lonely roads tonight
& keeping you in my eyes,
I wish I would not be so stupid, a little wise.
Please Try to be patience, I am still learning.
I know you are far away from me but am still missing.
Where are you my angle, can’t you see me crying, I am letting myself down by sacrificing..
I wish you could be here and see me…..
& I love her so much, I would not trade her for golds,
I am walking in the moon beans and staring out the sky..
Hey you are in my eyes but can’t keep you as tears goes by.
Hell I am gonna to be me, I want to be free….
Trying to pull myself away, but crap it seems so hard..
You see you are like everyone when trouble falls, you hide by your self…
Hell I want to be me!!!! I want to be free from lies lies and lies…..”
January 1, 2010
New Year 2010!!!
One of my good friend asked me what is your New Year Resolution?? The reply was clear and loud ” If you asked me for my New Year Resolution, it would be to find out who I am!!!!
December 30, 2009
God Vs. Nature Of Man.
“I still pray but it’s something automatic, and I’m not even sure I still believe in it… Because I’ve suffered, and God didn’t listen to my prayers. because many times in my life I have tried to love with all my heart, and my love has wound up being”
I don’t believe there is someone called God exist in the planet. If it was then I would not suffered in so much of pain Or may be there is suffering in life, and there are defeats. No one can avoid them. But it’s better to lose some of the battles in the struggles for your dreams than to be defeated without ever knowing what you’re fighting for. May be I never knew what I was fighting for!!!! May be she never existed.
October 19, 2009
A Sinking Ship
This is a story about a Captain who was in so much love with his ship that he can do anything for it/ After all that was the ship what offered him everything/ Position, Value, a carrier/ He was known by not his name. He was known by the captain of “black rose” (the ship’s name).One day when he was sailing into the sea, strome came & the ship started sinking. Everyone of his crew mates left the ship. But he was so muh love with the ship that, he decided to take a water burried with the ship. Love is like a sinking ship & life is somewhere similar to the Captain.
October 15, 2009
A LoNelY Day
October 13 the worst day of my entire life till the date. In this day I lost everything that I had once. All the dreams broke down like they never existed. This is the day where I lost the person whom I love so much. More than my life. She gone gone & gone so far away from me that I can’t never expect to get her back. Still can remember the deadly pain in my heart. It something like a bullet in my heart or more pain can’t explain. Now can understand how it feels when heart breaks, all dreams breaks and emotions are treated like some kind of sand that is inside someone’s foot. Hope this condition will never happen to someone in this planet. “Love is blind, but trust me if you ll blind in love like me; you will never ever can see yourself also.”
October 10, 2009
Wild Secrets of Heart
Light light colurs bright wash the moon away. Known faces brush well known hands, fall away.Turning, turning, sleep surrounding, leaving songs to play.Slight sweet melodies call me back and then retreat.
Still today that wild secret heart remains.
Such short short days painted in known ways a nest. Such short short nites were familar delights blossom and rest.
You were lost in a haze a disordered maze of distress.
whereever you will go I ll follow the shadow road.
Still today the wild secret heart remains.
September 15, 2009
Oracle 10G installation on RHEL4
I was recently working on Oracle 10G installtion on RHEL4. These are the quick steps to install the software. Hope you guys will Enjoy doing R&D on Oracle.
Prerequisites for Installation of 10g on RHEL 4
Requirement 1: Install RHEL 4 on the machine.
Requirement 2: Keep Oracle10g Rel2_Linux_x86 CD with you.
Installing Oracle10g Release 2:
Step 1: groupadd oinstall
Step 2: groupadd dba
Step 3: groupadd oper
Step 4: useradd –g oinstall –G dba,oper –d /home/oracle oracle
Step 5: passwd oracle
Give the password as oracle
Step 6: mkdir –p /oracle/app
Step 7: chown –R oracle:oinstall /oracle
Step 8: chmod –R 775 /oracle
Step 9: vi /etc/sysctl.conf
kernel.shmall = 2097152
kernel.shmmax = 536870912
kernel.shmmni = 4096
kernel.sem = 250 32000 100 128
fs.file-max = 65536
net.ipv4.ip_local_port_range = 1024 65000
net.core.rmem_default=262144
net.core.wmem_default=262144
net.core.rmem_max=262144
net.core.wmem_max=262144
Step 10: Save the file and apply it using sysctl -p
Step 11: logout
Step 12: Login as oracle with password oracle
Step 13: open a terminal
Step 14: vi .bash_profile
ORACLE_BASE=/oracle/app
ORCALE_HOME=$ORACLE_BASE/product/10.2.0/db_1
ORACLE_SID=orcl
LD_LIBRARY_PATH=$ORACLE_HOME/jdk/jre/i386:$ORACLE_HOME/jdk/jre/lib/i386/server:$ORACLE_HOME/rdbms/lib:$ORACLE_HOME/lib:$LD_LIBRARY_PATH
PATH=$PATH: $HOME /bin
PATH=$ORACLE_HOME/bin:$PATH
export ORACLE_BASE
export ORACLE_HOME
export ORACLE_SID
export LD_LIBRARY_PATH
export PATH
export username
Step 15: logout
Step 16: put CD of Oracle10g
Step 17: mount /media/cdrecorder => mount /dev/cdrw/runIns
Step 18: /media/cdrecorder/runInstaller
Installation Complete in Normal Mode.
Creating ASM Disk [ AUTOMATIC STORAGE MANAGEMENT ]
Step 1: cd /oracle/app/
Step 2: mkdir asmdisks
Step 3: cd asmdisks
Step 4: dd if=/dev/zero of=asm_disk1 bs=1024k count=400
Step 5: dd if=/dev/zero of=asm_disk2 bs=1024k count=400
Step 6: dd if=/dev/zero of=asm_disk3 bs=1024k count=400
Step 7: dd if=/dev/zero of=asm_disk4 bs=1024k count=400
Step 8: dd if=/dev/zero of=asm_disk5 bs=1024k count=400
Step 9: chmod 777 asm_disk*
Step 10: losetup /dev/loop1 asm_disk1
Step 11: losetup /dev/loop2 asm_disk2
Step 12: losetup /dev/loop3 asm_disk3
Step 13: losetup /dev/loop4 asm_disk4
Step 14: losetup /dev/loop5 asm_disk5
Note down the major and minor numbers :
bound to major 7, minor 1
bound to major 7, minor 2
bound to major 7, minor 3
bound to major 7, minor 4
bound to major 7, minor 5
Step 15: raw /dev/raw/raw1 /dev/loop1
Step 16: raw /dev/raw/raw2 /dev/loop2
Step 17: raw /dev/raw/raw3 /dev/loop3
Step 18: raw /dev/raw/raw4 /dev/loop4
Step 19: raw /dev/raw/raw5 /dev/loop5
Step 20: chown oracle:oinstall /dev/raw/raw1
Step 21: chown oracle:oinstall /dev/raw/raw2
Step 22: chown oracle:oinstall /dev/raw/raw3
Step 23: chown oracle:oinstall /dev/raw/raw4
Step 24: chown oracle:oinstall /dev/raw/raw5
Step 25: vi /etc/sysctl/rawdevices
/dev/raw/raw1 /dev/loop1 7 1 (numbers we had noted previously)
/dev/raw/raw2 /dev/loop2 7 2
/dev/raw/raw3 /dev/loop3 7 3
/dev/raw/raw4 /dev/loop4 7 4
/dev/raw/raw5 /dev/loop5 7 5
Step 26: Open a terminal and write : service rawdevices restart
Step 27: exit
Step 28: sqlplus “sys/oracle as sysdba”
Step 29: dbca
The Database Configuration Assistant will open
Step 30: Choose CONFIGURE AUTOMATIC STORAGE MANAGEMENT
Step 31: Next
Step 32: Run the script in Root user:
/oracle/app/product/10.2.0/db_1/bin/.localconfig add
Step 33: exit
Step 34: Next
Step 35: Give the SYS password and Confirm the password and click OK
Step 36: Give the Disk Group Name to DG1 and choose the number of disks you want to use.
Step 37: Ok and then Finish.