Topics:
DVR
nvrec
Mplayer
Links
Misc
Commands
Humor
New user
uploaded files
|
(linux_command_line)-> (Parent)->determine mounted drives from the command line |
submited by Russell Mon 19 Dec 05 |
To determine the mounted drives from the command line use the mount command.
$ mount -t ext3
/dev/mapper/VolGroup00-LogVol00 on / type ext3 (rw)
/dev/hda1 on /boot type ext3 (rw)
/dev/md2 on /backup type ext3 (rw)
This can be run as any user. It does not require root access. The -t ext3 option limits the display to only mounts of the type ext3. Leave this option out to show all mounted devices, but that will list more than just drives. ( It will show the proc file system, ramdisks and other logical devices that are mounted)
For more information check out the man page for mount.
This post is a repsonce to this search
|
Add comment or question...:
|