Archive

Archive for July, 2009

Could not resolve mount point

July 10th, 2009 iceman No comments

This morning end user complaint that she failed to access to her folder.
After checking I found that my machine didn’t mount to the file server.
Then I try to remount again but it give me “Could not resolve mount point” error message.

[root@ftp ~]#mount -t smbfs -o username=username%password //MyFileServer/SharedFolder /mnt/MountedFolder

Could not resolve mount point /mnt/MountedFolder

After googling I still failed to get a solution.

Then, I listed my /mnt and found that my MountedFolder got problem as below.

[root@ftp mnt]# ls -l /mnt
total 1
?——— 1 root root 4096 Jul 10 11:13 MountedFolder

There was a question mark for the folder mod.
Solution:
reboot the machine then list again the folder

[root@ftp mnt]#ls -l /mnt
total 1
drwxrwxrwx 1 root root 4096 Jul 10 11:13 MountedFolder

Now it was back to normal.
Remount again the folder and can access to the mounted folder now.

It could me many reason you get a “Could not resolve mount point”.
You may googling the solution and mine is one of the solution.
If you had try others solution and can’t work and your mount folder have a “question mark” aslo.
You should try it.

Have a nice day.

Related posts

Categories: Networking Tags: , ,

DOS Command – How To Delete Windows Shared Folder Connection

July 9th, 2009 iceman No comments

How to delete windows shared folder connection by using DOS command?

To view current windows shared folder connections.

Command:

net use

Output:
C:\Documents and Settings\user>net use

New connections will not be remembered.
Status    Local     Remote Network

——————————————————————————-
OK               Z:          \\sharedhostname\sharedfoldername\
Microsoft Windows Network
The command completed successfully.

To delete CERTAIN windows shared folder connection.

Command:

net user z: /d

Remark : where z: is the mapping drive letter.

To delete ALL windows shared folder connection.

Command:

net use * /d

Related posts

data recovery