Wednesday, April 27, 2011

RPM install in OLE

Hi Friends,

Need to install RPM's in easy way........ use yum tool

Install yum rpm and fellow below steps


cd /etc/yum.repos.d
wget http://public-yum.oracle.com/public-yum-el5.repo
# yum install libaio*
# vi public-yum-el5.repo --- edit the version required

yum install gcc*

that is all

Enjoy :) ........ YUM


Unable to access apps in IE 8

Unable to access apps in IE 8

1. Disable the XSS filter.
2. In MSIE 8 --->Tools > Internet Options >
3. Security Settings -->Custom Level >
Scroll down to entry "Enable XSS Filter" > Select Disable XSS Filter button.

Once Enable XSS filter is set to be disable and try to access Forms will now launch.

:-)

To get Linux rpm's Arch+version

Linux rpm's Arch+version

rpm -qa --queryformat %-{name}-%{version}-%{release}-%{arch}"\n"

:)

Wednesday, December 29, 2010

Unable to SCP the files

Remove the exiting entry of destination ip address in source key authentication file.

Enjoy :)

Friday, October 15, 2010

error while loading shared libraries: libc.so.

unknowly libc.so.6 file is removed., recreate the soft link as show below.....

cd /usr/lib or /lib
ln -s libc-2.5.so libc.so.6
ls -ltr libc.so.6*

error while loading shared libraries: libdb.so.3:
ln -s /usr/lib/libdb.so.2 /usr/lib/libdb.so.3


RunInstaller fails with java.lang.UnsatisfiedLinkError 

$cd /usr/lib 
$ln -s libXpm.so.4.11.0 libXp.so.6

ln –s /usr/lib/libgdbm.so.2.0.0 libdb.so.2
ln -s /usr/lib/libdb.so.2 /usr/lib/libdb.so.3 ---Error: libdb.so.3: can't open shared object file
ln -s libc-2.5.so  libc.so.6 --- ls -tlr libc.so.6*


ln -s /usr/lib/libgdbm.so.2.0.0 /usr/lib/libdb.so.2
chmod 755 /usr/lib/libgdbm.so.2.0.0
chmod 755 /usr/lib/libdb.so.2

Saturday, October 9, 2010

Enable SSH in Linux env

Linux password-less login
configuring password less between two linux system

workstation#1
ssh-keygen -t rsa
Enter your password
scp ~/.ssh/id_rsa.pub user@remote.server.com:.ssh/authorized_keys
scp user@remote.server.com:.ssh/authorized_keys ~/.ssh

workstation#2
ssh-keygen -t rsa
cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys
scp ~/.ssh/authorized_keys user@remote.server.com:.ssh/