Mount Linux disk from live disk

How to mount a linux disk from a livedisk?

find out the disks:
sudo fdisk -l

mount the disk:
cd
mkdir mnt
sudo mount /dev/sda1 mnt

unmount the disk:
sudo umount mnt