How to view mapped drives

Issues related to configuring your network
Post Reply
gadgetguy681
Posts: 1
Joined: 2018/10/04 20:28:31

How to view mapped drives

Post by gadgetguy681 » 2018/10/08 14:47:42

I have something on my server trying to authenticate with an old password. I believe it is a mapped drive to a Windows machine. Is there a command to show all of the mapped drives so I can locate it? Also, once I find the connected share, how do I update the password for the account?

lightman47
Posts: 1521
Joined: 2014/05/21 20:16:00
Location: Central New York, USA

Re: How to view mapped drives

Post by lightman47 » 2018/10/08 18:01:55

/etc/fstab is generally where drives get mapped. Perhaps checking there would help you. If, however, your local drive is mapped on the Windows machine, then perhaps the Win machine is the culprit.

- no other ideas at the moment

Whoever
Posts: 1357
Joined: 2013/09/06 03:12:10

Re: How to view mapped drives

Post by Whoever » 2018/10/09 03:09:06

lightman47 wrote:
2018/10/08 18:01:55
/etc/fstab is generally where drives get mapped. Perhaps checking there would help you. If, however, your local drive is mapped on the Windows machine, then perhaps the Win machine is the culprit.

- no other ideas at the moment

Also the automounter.

Check the files l/etc/auto.*, starting with /etc/auto.master. If this machine uses NIS, then you need to check the yp maps also.

User avatar
jlehtone
Posts: 4523
Joined: 2007/12/11 08:17:33
Location: Finland

Re: How to view mapped drives

Post by jlehtone » 2018/10/11 19:11:16

Code: Select all

findmnt
Shows both current mounts and mount-points that the automounter does manage.

There might be useful error messages in

Code: Select all

/var/log/messages

jscarville
Posts: 135
Joined: 2014/06/17 21:50:37

Re: How to view mapped drives

Post by jscarville » 2018/10/15 20:06:03

If you are you trying to see what the server has exported.

For NFS

# exports

For samba

# smbstatus

Post Reply