Give two UNIX kernel parameters that effect an Oracle install
Answers were Sorted based on User's Feedback
Answer / raja
SHMMNI=Max no of shared segments,
SHMMAX=Max size of each shared segments
SHMSEG=specifies the semaphores
Is This Answer Correct ? | 7 Yes | 2 No |
Answer / tanweer
SHMALL
SHMMAX
SHMMNI
These 3 kernel parameters are very importnat for installing
Oracle in Linux / UNIX OS..
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / parthasarathy
kernel.msgmnb -maximum size of a messag
kernel.msgmax-default maxmimum size of a mesage queue
kernel.shmmax-maximum shared segment size
kernel.shmall-maximum number of shared memory segments
kernel.sem-semaphores
Is This Answer Correct ? | 0 Yes | 0 No |
What is the comma to show the space allocation of files?
What is the functions of zambie process?
How do I delete files from command prompt?
How do I use nslookup?
Who invented grep?
distinguish between paging and swapping?
Write a command that will display files in the current directory, in a colored, long format.
what is the advaantage of each user having its own copy of the shell?
what is the use of uniq commmand?
what is the advaantage of each user having its own copy of the shell?
0 Answers BMC, CNS, DELL, Infosys,
What is unix command?
When i run a programm of orphan process. Instead of getting child's parent (ppid)=1 ..i get 1400 and it varies as per system. How can i findthe right soluion??? My pgm: #include<stdlib.h> # include <stdio.h> int main() { int pid; pid=fork(); if(pid < 0) {exit(-1);} else if(pid==0) { printf("Child Process is Sleeping ..."); sleep(10); printf("Orphan Child's Parent ID : %u ",getppid()); } else { printf("Parent Process Completed ... %u ",getpid()); exit(0); } return 0; } Output: