Is there any command so that one can get all the client names and their mount points by this single command in Linux? How about in Windows?
Asked
Active
Viewed 37 times
1 Answers
0
You can use usermount
command to list all the mount points.
But also you can give a try to check /etc/fstab
file
cat /etc/fstab
or
df -k

Arnab Nandy
- 6,472
- 5
- 44
- 50
-
Thanks. Do you know any command which does the same in Windows? – frhling Nov 17 '14 at 08:17
-
I will check if there is any, but can't give surety of having one. – Arnab Nandy Nov 17 '14 at 08:20
-
@frhling there is one too I can find `mountvol [[drive:]path VolumeName|/l]` which can do the same in windows, by the way if it solving your problem accept the answer. Thanks – Arnab Nandy Nov 17 '14 at 08:26