Download Oracle on Linux RHEL5 ??


 
Thread Tools Search this Thread
Operating Systems Linux Red Hat Download Oracle on Linux RHEL5 ??
# 8  
Old 09-04-2008
Bug

Quote:
Originally Posted by radoulov
Try changing:

Code:
ulimit -p 16384

to:

Code:
ulimit -u 16384

Hey, it worked. Thanks mate.

Could you please explain a bit, so that I can take care of that in future.

Also, I hope this will not hamper functioning of Oracle Database.


Regards,
VIKAS
# 9  
Old 09-04-2008
The documentations says:

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

It's ksh, not bash (I guess in some ksh implementations -p means number of processes). In bash it's the -u option.
# 10  
Old 09-04-2008
Bug

Quote:
Originally Posted by radoulov
The documentations says:

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

It's ksh, not bash (I guess in some ksh implementations -p means number of processes). In bash it's the -u option.

Fine, got it. Thanks a million.
Login or Register to Ask a Question

Previous Thread | Next Thread

4 More Discussions You Might Find Interesting

1. Linux

Can not play sound in Linux RHEL5.

Hi All, Recently I installed Linux RHEL5 on my machine. It seems that I can not play sound on RHEL5. I have real player installed along with RHEL5 but, when I try to play any song, the error message comes up saying "Can not open the audio device.Another application may be using it." Does any... (2 Replies)
Discussion started by: gydave
2 Replies

2. UNIX for Dummies Questions & Answers

Linux free download

Hello, I am not sure where to post this questions... I have Windows XP in my home computer. I need to install Linux on my home computer for learning purpose. Can one please recommend any free download link to download free linux... Any help is appreciated... Thank you... (1 Reply)
Discussion started by: govindts
1 Replies

3. UNIX for Dummies Questions & Answers

Linux Download

Can you download Linux and install it on a machine using Windows 95? I'd like to learn it with my old laptop. Any ideas? nov_user :confused: (3 Replies)
Discussion started by: nov_user
3 Replies

4. What is on Your Mind?

LINUX Download

I would like to download a basic copy of LINUX to my PC as a sandbox in which I can run basic commands and functions as a learning tool. I have an older PC - Pentium III Processor at 1GHz, 128MB RAM at 133 MHz, Windows ME operating system. Is there a version of LINUX that would be compatible with... (9 Replies)
Discussion started by: ednan171
9 Replies
Login or Register to Ask a Question