I wanted to use an exfat formatted 64GB USB-key but it didn't worked out of the box. I searched the forum and found some topics about this problem but none gave a good solution on how to get things going.
Therefore I place this topic on how I solved this "problem".
Maybe it is not as it should be done by the book but the hereunder mentioned steps gave me a working solution.
So here are the steps to be taken to get things going:
What steps do I have to take be able to read/use the USB-stick?
Open a telnet session with e.g. DCC_E2
1 Install the package fuse-exfat_1.1.0-r0.0_mips32el.ipk (versionnumber may differ!) with the command
opkg install fuse-exfat
2 Install the package exfat-utils_1.0.1-r0.0_mips32el.ipk (versionnumber may differ!) with the command
opkg install exfat-utils
and restart your receiver. (I'm not sure if this restart is actually needed.)
3 Insert the USB-key to be used into one of the USB-slots and wait a few seconds
4 give the command
cat /proc/partitions
you see something like this
root@et8000:~# cat /proc/partitions major minor #blocks name 8 0 976762584 sda 8 1 976762580 sda1 31 0 524288 mtdblock0 31 1 6144 mtdblock1 31 2 518144 mtdblock2 8 16 62411243 sdb
Look for a line that could represent the capacity of your USB-key.
In this case the first 2 lines are my 1GB hard disk (sda and sda1) and the last line in this case is my 64GB Innostor USB-key which I want to mount and is device sdb.
This sdb is needed to mount the USB-key.
5 Again in telnet give the command
mkdir /media/<desired name>
In my case I want to name the mount innostor, so the command to use is
mkdir /media/innostor
6 Now the USB-key will be mounted on media/innostor (my chosen name) with the command
mount.exfat-fuse /dev/sdb /mnt/innostor -o nonempty
If everything worked out well you should be able to read and write your exfat formatted USB-key.
Please feel free to comment or supplement the above
As always: Use at your own risk
Edited by Pedro_Newbie, 2 January 2016 - 15:29.