Help on linux


 
Thread Tools Search this Thread
Operating Systems Linux Ubuntu Help on linux
# 1  
Old 04-10-2011
Help on linux

Hi all,this is the first day to this forum.I recently(4 days back) installed Ubuntu 10.10.I am dual booting,one is Windows xp and the other Ubuntu.I need a little help on installation of Oracle in Ubuntu 10.10..which version of oracle supports the version of my ubuntu..
So,kindly someone let me know these details.

Thanks in advance
Smilie
# 2  
Old 04-10-2011
# 3  
Old 04-10-2011
Question

No version of oracle offers support for Ubuntu 10.10 or any distributions of Ubuntu...I wanted to know if some people might be knowing better than me..

 
Operating System Requirements
The following operating system versions (or later) are required for Oracle Database 11g Release 2 (11.2):
  • On Linux x86
    • Asianux Server 3 SP2
    • Oracle Linux 4 Update 7
    • Oracle Linux 5 Update 2
    • Red Hat Enterprise Linux 4 Update 7
    • Red Hat Enterprise Linux 5 Update 2
    • SUSE Linux Enterprise Server 10 SP2
    • SUSE Linux Enterprise Server 11
  • On Linux x86-64
    • Asianux Server 3 SP2
    • Oracle Linux 4 Update 7
    • Oracle Linux 5 Update 2
    • Oracle Linux 5 Update 5 (only if using Oracle Unbreakable Enterprise Kernel)
    • Red Hat Enterprise Linux 4 Update 7
    • Red Hat Enterprise Linux 5 Update 2
    • Red Hat Enterprise Linux 5 Update 5 (only if using Oracle Unbreakable Enterprise Kernel)
    • SUSE Linux Enterprise Server 10 SP2
    • SUSE Linux Enterprise Server 11
That is the recent version of oracle
# 4  
Old 04-10-2011
why not using a linux that is known to work? also, linux == linux (with little differences). so if one linux works with oracle, another should also.
the best way is to test your configuration and build knowledge... if that is not possible, go for a supported configuration and use the fine documentation.

hth
# 5  
Old 04-10-2011
I too thought like that may be it will offer support
Quote:
linux == linux (with little differences)
,but just now i installed Oracle 10g Xe in ubuntu 10.10,it's not opening

Code:
oracle@ubuntu:~$ sqlplus / as sysdba
sqlplus: command not found

# 6  
Old 04-10-2011
That just means that sqlplus is not found on your PATH. You did set up a user called oracle, ORACLE_HOME, SID and all the requisite environmental variables?

Here is a typical setup script for oracle. You will need to modify it to suit your particular setup.
Code:
# Oracle Settings
TMP=/tmp; export TMP
TMPDIR=$TMP; export TMPDIR

ORACLE_HOSTNAME=ultra.xfpmurphy.com; export ORACLE_HOSTNAME
ORACLE_UNQNAME=orcl; export ORACLE_UNQNAME
ORACLE_BASE=/app/oracle; export ORACLE_BASE
ORACLE_HOME=$ORACLE_BASE/product/11.2.0; export ORACLE_HOME
ORACLE_SID=orcl; export ORACLE_SID
ORACLE_TERM=xterm; export ORACLE_TERM
PATH=/usr/sbin:$PATH; export PATH
PATH=$ORACLE_HOME/bin:$PATH; export PATH

LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib; export LD_LIBRARY_PATH
CLASSPATH=$ORACLE_HOME/JRE:$ORACLE_HOME/jlib:$ORACLE_HOME/rdbms/jlib; export CLASSPATH

if [ $USER = "oracle" ]; then
    if [ $SHELL = "/bin/ksh" ]; then
        ulimit -p 16384
        ulimit -n 65536
    else
        ulimit -u 16384 -n 65536
    fi
fi

# 7  
Old 04-11-2011
Where do u want this whole thing to be modified..Sorry for my poor knowledge,I am new to this Linux platform(5th day).
I have working knowledge on windows for the past 6 years..

It would be of great help if u make it understand to me here in Linux
Login or Register to Ask a Question

Previous Thread | Next Thread

2 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Simple sed command not working; could be a Mac/Linux vs. PC/Linux issue

Hello, I am on a Mac and trying to clean up some monthly files with a very simple SED: sed '3,10d;/<ACROSS>/,$d' input.txt > output.txt (from the input, delete lines 3 - 10; then delete from the line containing <ACROSS> to the end of the file) then output to output.txt Even when I try... (2 Replies)
Discussion started by: verbatim
2 Replies

2. Fedora

Which is the better platform to learn UNIX/Linux (Kali Linux Vs. Red Hat or other)?

I just started a new semester and I started my UNIX class yesterday. I've already decided to use python along with my learning process but what I really want to use with it is Kali as my UNIX/Linux platform to learn off of since I already wanted to learn Cyber Sec. anyways. I just wanted to know if... (12 Replies)
Discussion started by: ApacheOmega
12 Replies
Login or Register to Ask a Question