How to mount XFS filesystem in ubuntu
Solution 1:
Regarding the output of the fdisk command, I would mount your partition using the following command:
sudo mount -t xfs /dev/sdb1 /mnt/stora
The error message you get comes from a typo: the device to your partition is /dev/sdb1
and not /dev/sdb
.