The server in question is using
Logical Volume Manager (LVM), which is a vastly superior way to manage storage space compared to just creating regular partitions with file systems on various disks.
The devices in
/dev/mapper are Logical Volumes. These are virtual block devices carved out of storage space allocated to one or more Volume Groups. The Volume Groups in turn are created from a number of Physical Volumes, which can be entire block devices or partitions.
Try the following commands and see if things don't start to make sense:
Code:
lvdisplay
vgdisplay
pvdisplay
Also, you shouldn't try to change the names of the devices. The subfolders under
/dev/mapper are actually names of Volume Groups, and the device nodes in those subfolders represent Logical Volumes.
Rather then using device names (be they
/dev/sdaX or
/dev/mapper/something/or_other), you should just refer to UUIDs or even labels in
/etc/fstab. That way it makes no difference what the actual device is called, which is something you'll learn to appreciate when a new disk or array volume is added to a system and it ends up being enumerated
before one of the existing disks.