I use nfs to connect to pc's
client: 192.168.2.20
server: 192.168.2.22
I establish the connection with the mount command on the client:Unmounting goes with:This works great when bot pc's are connected but there is a problem when the server is not reachable (turend off). I tried the --force option:This seems to work but the umount command is not completed so the prompt will not return.
I also tried the --lazy option but that gave the same result.
How can I umount the unreachable server properly?
client: 192.168.2.20
server: 192.168.2.22
I establish the connection with the mount command on the client:
Code:
sudo mount -t nfs 192.168.2.22:/home/peer /mnt/asus/home
Code:
sudo umount 192.168.2.22:/home/peer orsudo umount /mnt/asus/home
Code:
sudo umount -f 192.168.2.22:/home/peer orsudo umount -f /mnt/asus/home
I also tried the --lazy option but that gave the same result.
How can I umount the unreachable server properly?
Statistics: Posted by peer — 2024-02-16 09:21 — Replies 4 — Views 119