3

I'm trying to connect my external hdd which is in ExFat, but it won't mount it. I've got "fuse:device not found", but if i do fdisk -l, I can see it. Can someone know how to fit it ?

Or if you have an idea to mount a hdd in exfat, i take it :).

Antoine
  • 31
  • 1
  • 2

1 Answers1

1

You can add the UUID in /etc/fstab similar to this:

## Western Digital My Book
UUID=F577-20E3  /mnt/mybook     exfat   defaults,nofail 0       1

Separated by tabs, NOT spaces. NOFAIL option allows the operating system to continue to boot regardless of errors from the drive (missing, corrupt etc.)

Instructions here: https://raspberrypi.stackexchange.com/a/14623/27509

Ron K.
  • 320
  • 1
  • 8