what is mount ,tell me about mount ,how can u use in real
time project??

Answer Posted / sangu

mounting a specific file system in linux so that the user
can make use of the file present in the specific mount
point directory.

eg:
mount -t ext2.ko /dev/sda5 /mnt

here ext2.ko is the file system
device partition is /dev/sda5
/mnt is the mount point directory which contains the files
of the specific file system

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

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 # include 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:

1956


What does the command '$ls | wc –l > file1' do?

888


How do I use nslookup?

749


What is the difference between awk and grep?

786


What does the command ' $who | sort –logfile > newfile' do?

1010


How does shebang work?

796


What is the command to compare two files in unix?

806


What does awk stand for?

786


What command is used to check the current users?

777


What is the significance of the 'tee' command?

810


Is there a way to erase all files in the current directory, including all its sub-directories, using only one command?

1009


Does cp command overwrite files?

818


What is ‘ps’ command for?

832


How do I search for a file in unix command?

730


Write a command to display a file’s contents in various formats?

841