How do I use nslookup?
Answer / Vikas Kumar Tamta
To use nslookup in Unix/Linux, open a terminal and type `nslookup <domain_name>`. For example: `nslookup google.com`.
| Is This Answer Correct ? | 0 Yes | 0 No |
How to convert a hidden file to normal visible file?
What is the comma to display different lines that are found when compare two files?
Which command can you use to find the currently running process in unix server?
what are the different commands used to create files?
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 display no of records in oracle using unix command?
describe the escaping sequence characteres in unix
in UNIX ,What is the command to view contents of a large error log file?
How to setup sudo, only can use for particular date & time only ( for solaris10 )
what are processor execution levels and priorities?
Which mode is used for allowing file write,read and append mode?
What are the differences among a system call, a library function, and a unix command?