errors

From the files that are on it, it doesn't look like you have assigned the disk to the Humax through the storage menus. Not in front of one at the moment and I can't remember what the option is called. That might be they key to why it isn't storing the EPG data on it.
 
okay this could be it - in the data storage settings on the humax you can 'select the hdd for pvr' unfortunately this is greyed out in my case.
 
Try installing the e2fsprogs package then running the assignhd diagnostic:

Code:
humax# opkg install e2fsprogs
humax# diag assignhd

then reboot and see how the disk shows up in data storage and whether an epg file appears.
 
Thanks. but didn't work. I do have Audio Video folders now though?

humax# ls -l
drwx------ 2 root root 4096 Jun 6 20:03 Audio
drwx------ 2 root root 4096 Jun 6 20:03 Video
drwx------ 2 root root 16384 Jun 6 19:47 lost+found
drwxrwxrwx 8 root root 4096 Jan 1 2000 mod
 
The Humax stores the UUID of the disk it's using in a file at /var/lib/humaxtv/ext_hdd_info, so has that been updated with the UUID?

Code:
humax# cat /var/lib/humaxtv/ext_hdd_info
7686bfef-e62f-47f2-8929-324aabd6f459humax#

The file shouldn't contain a carriage return so the next prompt should be appended to the UUID as shown above.
 
Ok, that's wrong.. Assignhd should have sorted it..

You can get the UUID of your disk with blkid, then put it into the file yourself like this:

Code:
humax# /mod/sbin/blkid /dev/sda1
/dev/sda1: LABEL="Rugged" UUID="7686bfef-e62f-47f2-8929-324aabd6f459" TYPE="ext3"
humax# echo -n 7686bfef-e62f-47f2-8929-324aabd6f459 > /var/lib/humaxtv/ext_hdd_info

Edit: Or try the assignhd diagnostic again, I've updated it to not expect a disk label.

Then restart to make the Humax software re-read the file.
 
have this now.

humax# cat /var/lib/humaxtv/ext_hdd_info
7686bfef-e62f-47f2-8929-324aabd6f459humax#
 
Ah, that's MY disk's UUID. You need to use whatever yours is.

Try 'diag assignhd' again and post the output here.
 
doh, should have seen that, get this after restart :

humax# cat /var/lib/humaxtv/ext_hdd_info
112b276c-59a0-42d9-bf6e-88f476369e48humax#
 
humax# diag assignhd
Running: assignhd
mkdir: can't create directory '/media/drive1/Video': File exists
mkdir: can't create directory '/media/drive1/Audio': File exists
mkdir: can't create directory '/media/drive1/.tsr': File exists
Disk UUID = [112b276c-59a0-42d9-bf6e-88f476369e48]
Assigned disk, reboot now.
humax#
 
Back
Top