what is soft mount and hard mount? i have to make permanent
nfs mount permanent what shall i do?
Answer Posted / susheel
Soft mount:-
[root@susheel ~]# showmount -e 192.168.0.105
Export list for 192.168.0.105:
/nfs *
[root@susheel ~]# mount 192.168.0.105:/nfs/ /mnt/
Hard Mount (Parmanent mounting):-
[root@susheel ~]# vim /etc/fstab
192.168.0.105:/nfs /mnt nfs
defaults 0 0
:wq!
[root@susheel ~]# mount -a
Note: After mount -a u will be able to see share file
in /mnt path
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
How use linux command line?
What is Syntax of any Linux command?
How is grep so fast?
What does sh do in linux?
How do I get to root directory in linux?
what is the fastest way to enter a series of commands from the command-line in linux
How to know linux os is 32 bit or 64 bit?
Which command puts a script to sleep untill a signal is recieved?
What is the command to check cpu speed in linux?
Brief about finger username?
What is vnc?
Does cp overwrite?
How do I stress test my cpu?
What does (cd dir && command) do?
How do I create a .txt file?