I am running Linux on an external SSD. I am trying to mount an exFat partition which is on the internal hard drive. ( MS Windows is installed on an NTFS partition on the internal drive. )
exFat is already installed ( sudo apt-get install exfat-fuse exfat-utils).
sudo mount -t exfat /dev/sda4 /media/me/restored
returns
FUSE exfat 1.2.8
ERROR: exFAT file system is not found.
sudo mount /dev/sda4 /media/me/restored
returns
mount: /media/me/restored: wrong fs type, bad option, bad superblock
on /dev/sda4, missing codepage or helper program, or other error.
lsblk -o NAME,LABEL,SIZE,FSTYPE
returns
NAME LABEL SIZE FSTYPE
sda 931.5G isw_raid_member
├─sda1 SYSTEM_DRV 260M vfat
├─sda2 16M isw_raid_member
├─sda3 Windows 246.7G ntfs
├─sda4 683.6G isw_raid_member
└─sda5 WINRE_DRV 998.5M ntfs
sdb 465.8G
├─sdb1 512M vfat
├─sdb2 83.7G ext4
└─sdb4 SSD-D 381.6G exfat
sda3 is the internal Windows partition.
sda4 is the internal exFat partition, created with diskmgmt.msc (in Windows).