Is there a command that tells you the device name (ie. "/dev/sda1"), when you give it a mount point (ie. "/home")?
I'm running Ubuntu Server 9.04.
df
, mount
, or just cat /etc/fstab
.
If the actual physical device is hidden behind software RAID (eg, you see /dev/md), then cat /proc/mdstat
will uncover that layer.
And if there's a blanket of LVM (eg, you see something like /dev/LogVol00), use pvdisplay
.