Oracle installation errors and solutions

While Installing Oracle I got following Error: [oracle@neelesh ORACLE]$ ./runInstaller Starting Oracle Universal Installer… Checking installer requirements… Checking operating system version: must be redhat-3, SuSE-9, redhat-4, UnitedLinux-1.0, asianux-1 or asianux-2 Passed All installer requirements met. Preparing to launch Oracle Universal Installer from /tmp/OraInstall2008-07-06_12-26-00PM. Please wait …[oracle@neelesh ORACLE]$ No protocol specified Exception in thread “main” java.lang.InternalError:…

Adding “tmpspace” in Linux

Give below commands as root user:mkdir /<different filesys>/tmpchown root.root /<different filesys>/tmpchmod 1777 /<different filesys>/tmpexport TEMP=/<different filesys> export TMPDIR=/<different filesys> For removing added “tmpspace” give below commands as root user:rmdir /<different filesys>/tmpunset TEMPunset TMPDIR

Installing CanonLBP2900 on CentOS Linux

1. Download Drivers from http://software.canon-europe.com/software/0028622.asp?model= 2. Extract CAPTDRV160.tar.gz 3. # cd CAPTDRV160/driver/rpm 4. # rpm -ivh cndrvcups-capt-1.60-1.i386.rpm 5. # rpm -ivh cndrvcups-common-1.60-1.i386.rpm 6. # /etc/init.d/cups restart 7. # tail /var/log/messages You should see: May 21 13:40:10 susik64 kernel: usb 1-1: Product: Canon CAPT USB Device May 21 13:40:10 susik64 kernel: usb 1-1: Manufacturer: Canon May…

Centralized Authentication Server & sudo access with OpenLDAP on Linux

Setting Up A Centralised Authentication Server With Sudo Access Using LDAP Scope: This document will cover setting up a Centralized Authentication Server with SUDO access using OpenLDAP & clients to authentication from the server. This is very practical document. This has been tested on Linux & Solaris. It will not explain what is LDAP and…

Oracle 10G setup on Linux

groupadd dba          # group of users to be granted SYSDBA system privilege groupadd oinstall     # group owner of Oracle files useradd -c “Oracle software owner” -g oinstall -G dba oracle passwd oracle   mkdir -p /u01/app/oracle chown oracle.oinstall /u01/app/oracle     Login as oracle and edit ~oracle/.bash_profile su – oracle export ORACLE_BASE=/u01/app/oracle export ORACLE_SID=orcl Checking…