If JFS file system is 100% full how we can increase the file
system ?
Answers were Sorted based on User's Feedback
Answer / partho patnaik
# umount <mountpoint>
# lvextend –L <n> /dev/vgXX/lvolX
-L <n> set new size of lvol to n MB
# extendfs –F vxfs /dev/vgXX/rlvolX
# mount <mountpoint>
| Is This Answer Correct ? | 0 Yes | 3 No |
Explain the steps that a shell follows while processing a command.
What is the use of the command 'ls -x chapter[1-5]' ?
distinguish between paging and swapping?
distinguish between physical addresses and logical address?
23 Answers College School Exams Tests, CTS, Infosys, SAX, TATA, TCS,
How to check the flavor of UNIX?
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:
how to find the 51th record of a file containing 100 records in unix.
What is updatedb?
Give the command to display space usage on the UNIX file system.
Explain ‘library functions’ with respect to unix commands?
What are the commands in UNIX to list the files in a Directory?
Give a regular expression that finds two things, try to come up with regular expressions that find each individually using "egrep" command?