Mount : Device busy

 mount -f nfs 1234:/export/ert /der/fr/ert

mount : /der/fr/ert: device busy

normally I will then do an

fuser filesystem 

and kill the pids, which I did.

now if I do an

fuser /der/fr/ert

I get the mount point and no pid
> fuser /der/fr/ert
/der/fr/ert:

but it still tells me device busy and I can not mount.
no on is in there
I tried to umount , but its not mounted.
I cam mount the remote to /mnt no issues,
what am I missing, why can I not mount the mount point?

---------- Post updated at 10:35 AM ---------- Previous update was at 10:12 AM ----------

"solved" since I could do nothing no matter what I tired, I deleted the mount point and then recreated it, and then and only then , I was able to mount.

thanks.

You were probably in one of the directories of /der/fr/ert yourself when you issued that mount command.

Do a

# cd /

before you issue the mount command.