News:

Rule #1 - Be Patient - Rule #2 - Don't ask when, if you don't contribute - Rule #3 - You have coding skills - LinuxMCE's small brother is available: http://www.agocontrol.com

Main Menu

[SOLVED] Orbiter does not show media from external hard drive

Started by Avner, July 01, 2011, 07:46:06 AM

Previous topic - Next topic

Avner

Hello,

I have an external network drive (on a Windows machine) that stores my media (video, image and music files)
LinuxMCE didn't automatically recognize the hard drive, so I applied the maual steps described in http://wiki.linuxmce.org/index.php/Howto:_Using_Network_Shares.

Following the manual step, the UpdateMedia service kicked in and synchronized the drive

avner@dcerouter:~$ ps aux | grep Update
avner    13563  0.0  0.0   3236   804 pts/6    S+   20:51   0:00 grep Update
root     13685  0.1  0.0   3012  1112 ?        Ss   Jun28   3:50 SCREEN -d -m -S BkgSS-UpdateMediaDaemon.sh /usr/pluto/bin/UpdateMediaDaemon.sh
root     13686  0.0  0.0   2816  1404 pts/8    Ss+  Jun28   0:00 /bin/bash /usr/pluto/bin/UpdateMediaDaemon.sh
root     13705  2.0  0.9  72240 24732 pts/8    SNl+ Jun28  54:35 /usr/pluto/bin/UpdateMedia -h localhost -P 3306 -u root -D pluto_main -U /mnt/upnp -d /home/public/data||/home/user_1/data -B -t


Now, I can see the netwrok drive and its contents:

dcerouter_1015401:~# ll /home/public/data/other/
total 0
lrwxrwxrwx 1 root public 15 2011-06-28 23:25 Windows Share-F [75] -> /mnt/device/75/


I connected to the database and verified that the contents (e.g. images) from the network drive are registered in the database

avner@dcerouter:~$ mysql -u root -D pluto_media

mysql> select Path, Filename from File where Path like '%/home/public/data/other/Windows Share-F [75]/untarHP_machineDriveF/Avner/freeMind/MyMedia/MyImages/2005%' order by PK_File desc limit 1;
+---------------------------------------------------------------------------------------------------------+--------------+
| Path                                                                                                    | Filename     |
+---------------------------------------------------------------------------------------------------------+--------------+
| /home/public/data/other/Windows Share-F [75]/untarHP_machineDriveF/Avner/freeMind/MyMedia/myImages/2005 | DSCN8410.jpg |
+---------------------------------------------------------------------------------------------------------+--------------+


However, the Orbiter (on the Hybrid machine) doesn't show the media. Clicking on the Video button (in snapshot imgA3) results in an empty (black) list (snapshot imgA2). Quick / full regenerate and reload of the Orbiter didn't help.
Any idea on how to make the orbiter show media files from the external drive?

Thanks,
Avner


Asus P5GD2-X, Intel i915P/G, Pentium 4 3.2 GHz, 2.5GB, nvidia Geforce 8800, Hauppauge WinTV-HVR-1850

Marie.O

Avner,

do you have video files on that hard drive? You only show an image file in your select statement.
If I helped you, feel free to buy me a coffee: [url="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2VKASZLTJH7ES"]https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2VKASZLTJH7ES[/url]

l3mce

In video menu choose "Sort" and change to "Title" and see if they appear.

If your data grid populates you can then change the default sort in web admin.
I never quit... I just ping out.

Avner

Quote from: posde on July 01, 2011, 08:12:32 AM
do you have video files on that hard drive? You only show an image file in your select statement.
The problem relates to all media types, i.e. video, image, audio. I also have video files:
mysql> select Path, Filename from File where Path like '%/home/public/data/other/Windows Share-F [75]/untarHP_machineDriveF/Avner/freeMind/MyMedia/MyVideos/TapesFromTheParents%' orderby PK_File desc limit 1;
+------------------------------------------------------------------------------------------------------------------------+----------+
| Path                                                                                                                   | Filename |
+------------------------------------------------------------------------------------------------------------------------+----------+
| /home/public/data/other/Windows Share-F [75]/untarHP_machineDriveF/Avner/freeMind/MyMedia/MyVideos/TapesFromTheParents | Tape9    |
+------------------------------------------------------------------------------------------------------------------------+----------+
1 row in set (0.05 sec)



After rebooting, Orbiter showed the video files but after a while they disappeared again.
I found that the network drive was dismounted and fails to mount again:

dcerouter_1015401:~# less /var/log/pluto/StorageDevices.log
...
1 Sat Jul  2 00:46:02 PDT 2011 20798 CALLED TO MOUNT DEVICE 75
1 Sat Jul  2 00:46:02 PDT 2011 29768 CALLED TO MOUNT DEVICE 75
1 Sat Jul  2 00:46:03 PDT 2011 15540 CALLED TO MOUNT DEVICE 75
...


dcerouter_1015401:~# less /var/log/pluto/umount-wrapper.log
...
21407 CALLED TO 'mount -t cifs -s -o username=family,password=*****,dir_mode=0777,file_mode=0777,iocharset=utf8 //192.168.80.129/F /mnt/device/75'
21407 EXIT WITH STATUS 0
21497 CALLED TO 'mount -t cifs -s -o username=family,password=*****,dir_mode=0777,file_mode=0777,iocharset=utf8 //192.168.80.129/F /mnt/device/75'
21497 EXIT WITH STATUS 0
...


tty2 shows the following error repeatedly:
...
cifs_read_super: get root inode failed
cifs_read_super: get root inode failed
...




Trying to run the mount command manually from the command line fails:
dcerouter_1015401:~# mount -t cifs -s -o username=family,password=*****,dir_mode=0777,file_mode=0777,iocharset=utf8 //192.168.80.129/F /mnt/device/75
mount error: cifs filesystem not supported by the system
Refer to the mount.cifs(8) manual page (e.g.man mount.cifs)


However, mounting the drive using fstab succeeds. Adding the following line in /etc/fstab
mount -t cifs -s -o username=family,password=*****,dir_mode=0777,file_mode=0777,iocharset=utf8 //192.168.80.129/F /mnt/device/75
and mounting the drive using mount -a from the command line mounts the network drive successfully.

I tried to work around the problem by mounting through fstab. The drive mounts succesfully first, but after a while dismounts, and then fails to mount again.

Solving the problem of the network drive mount failure is the next step to solve the original problem.
Any ideas?
Asus P5GD2-X, Intel i915P/G, Pentium 4 3.2 GHz, 2.5GB, nvidia Geforce 8800, Hauppauge WinTV-HVR-1850

l3mce

Can you replace the ethernet cable?

ps, you should probably edit out your password on a public board.
I never quit... I just ping out.

Avner

Thanks l3mce, I edited out the password.

I don't think the problem is with the ethernet cable, because the problem is systematic.
- mounting through fstab always succeeds
- mounting using the following command fails:
mount -t cifs -s -o username=family,password=*****,dir_mode=0777,file_mode=0777,iocharset=utf8 //192.168.80.129/F /mnt/device/75

In fact, at the time when getting the mount failures, the drive is actually mounted successfully to a different mount point and I can see its content.

I googled the mount problem, and found some hints to possible kernel failure. dmesg shows the following error:
dcerouter_1015401:~# dmesg -c
...
[50638.131144]  CIFS VFS: cifs_read_super: get root inode failed
[50638.699850]  CIFS VFS: cifs_read_super: get root inode failed
...


I am using Ubuntu 8.10, kernel: 2.6.27-7-generic.
Asus P5GD2-X, Intel i915P/G, Pentium 4 3.2 GHz, 2.5GB, nvidia Geforce 8800, Hauppauge WinTV-HVR-1850

l3mce

I would unplug it, delete it from the device tree, reload router, and plug it back in.

Something is gummed up.
I never quit... I just ping out.

Avner

I unplugged the network drive, deleted the device from the device tree, rebooted the machine, and plugged back the network drive.
After this the Orbiter behavior changed as follows:
Video files: the data grid shows the video files as expected (see img1.jpg).
Audio files: the data grid is empty (see img2.jpg). Only after I click on the "AB" button, it populates as expected (see img3.jpg)
... (continued in next post)
Asus P5GD2-X, Intel i915P/G, Pentium 4 3.2 GHz, 2.5GB, nvidia Geforce 8800, Hauppauge WinTV-HVR-1850

Avner

... (continued from previous post)
Image files: the data grid shows flickr and the local drive (see img4.jpg) but the files for the network drive don't show up.
When searching for a file from the external drive it shows up (see img5.jpg) and the actual image displays when selecting a search result, but I cannot get the data grid to show the image files (I tried clicking arbitrarily on the letter buttons, e.g. on the "AB" button as I did for the audio files but the data grid still doesn't show the images from the external drive.

Is there a way to reset and repopulate the data grid?
Asus P5GD2-X, Intel i915P/G, Pentium 4 3.2 GHz, 2.5GB, nvidia Geforce 8800, Hauppauge WinTV-HVR-1850

l3mce

The only way I am aware of is in files & media > media files sync
click the dir on the left, then Delete ALL missing files from database... then Resynchronize.
I never quit... I just ping out.

Avner

...
cifs_read_super: get root inode failed
cifs_read_super: get root inode failed
...


The reason I was getting the messages above (and all the other mount failures) was due to the samba service.
These messages were swamping all terminals, and freezing the Orbiter (it wouldn't redraw and appear completely black).
I stopped the service from starting at reboot by doing:
update-rc.d -f samba remove This solved the mounting problem.

Asus P5GD2-X, Intel i915P/G, Pentium 4 3.2 GHz, 2.5GB, nvidia Geforce 8800, Hauppauge WinTV-HVR-1850

Avner

The pictures still don't show the external drive and only show the flickr directory and the local drive (WDC_WD800JB-00JJ) (see img4.jpg from previous post)

When I created the network shared drive, the external hard drive was symlinked from the directory /home/public/data/other as expected.

Just to be sure I created a symlink to the external drive, from the directory /home/public/data/pictures
sudo ln -s /mnt/device/74 /home/public/data/pictures/family-PC

avner@dcerouter:~$ ll /home/public/data/pictures/
total 0
lrwxrwxrwx 1 root public 14 2011-07-07 21:07 family-PC -> /mnt/device/74
lrwxrwxrwx 1 root public 12 2011-01-03 22:39 flickr -> /home/flickr
lrwxrwxrwx 1 root public 35 2011-07-07 19:51 WDC_WD800JB-00JJ (sda1) on dce [31] -> /mnt/device/31/public/data/pictures


I can see an example picture from the external drive from both symlinks:
avner@dcerouter:~$ ll /home/public/data/pictures/family-PC/untarHP_machineDriveF/Avner/freeMind/MyMedia/myImages/2006/2006_04_14/IMG_0069.JPG
-rwxrwxrwx 1 root root 1034604 2006-04-14 13:06 /home/public/data/pictures/family-PC/untarHP_machineDriveF/Avner/freeMind/MyMedia/myImages/2006/2006_04_14/IMG_0069.JPG

avner@dcerouter:~$ ll /home/public/data/other/WindowsShare-F\ \[74\]/untarHP_machineDriveF/Avner/freeMind/MyMedia/myImages/2006/2006_04_14/IMG_0069.JPG
-rwxrwxrwx 1 root root 1034604 2006-04-14 13:06 /home/public/data/other/WindowsShare-F [74]/untarHP_machineDriveF/Avner/freeMind/MyMedia/myImages/2006/2006_04_14/IMG_0069.JPG


The picture from the external drive is also in the database:

mysql> select * from File where Path = '/home/public/data/other/WindowsShare-F [74]/untarHP_machineDriveF/Avner/freeMind/MyMedia/myImages/2006/2006_04_14' and Filename = 'IMG_0069.JPG' order byPK_File desc limit 1;
+---------+--------------+-----------------+---------------+--------------+---------------------+-------------------------------------------------------------------------------------------------------------------+--------------+---------+-------------+------------------+-----------+---------------------+-----------+---------------------+----------------+-------+--------+--------+----------------------------------+--------+--------+-----------+----------+------------+---------------------+--------------+
| PK_File | EK_MediaType | FK_MediaSubType | FK_FileFormat | FK_FileGroup | DateAdded           | Path                  | Filename     | Missing | IsDirectory | EK_Users_Private | EK_Device | ModificationDate    | AttrCount | AttrDate            | DateLastViewed | IsNew | Ignore | INode  | MD5                            | Source | psc_id | psc_batch | psc_user | psc_frozen | psc_mod             | psc_restrict |
+---------+--------------+-----------------+---------------+--------------+---------------------+-------------------------------------------------------------------------------------------------------------------+--------------+---------+-------------+------------------+-----------+---------------------+-----------+---------------------+----------------+-------+--------+--------+----------------------------------+--------+--------+-----------+----------+------------+---------------------+--------------+
|  191495 |            7 |            NULL |          NULL |         NULL | 2011-07-07 00:52:34 | /home/public/data/other/WindowsShare-F [74]/untarHP_machineDriveF/Avner/freeMind/MyMedia/myImages/2006/2006_04_14 | IMG_0069.JPG |       0 |           0 |             NULL |        74 | 2011-06-20 23:57:42 |         0 | 0000-00-00 00:00:00 | NULL           |     1 |      0 | 611745 | 4cfa26b644f17f62f184f3e279659cfb | F      |   NULL |      NULL |     NULL |          0 | 2011-07-07 20:12:13 |         NULL |
+---------+--------------+-----------------+---------------+--------------+---------------------+-------------------------------------------------------------------------------------------------------------------+--------------+---------+-------------+------------------+-----------+---------------------+-----------+---------------------+----------------+-------+--------+--------+----------------------------------+--------+--------+-----------+----------+------------+---------------------+--------------+
1 row in set (0.00 sec)


Still, Orbiter -> Picture is stuck on the flickr directory and the local drive (WDC_WD800JB-00JJ), and won't show the external drive (img4.jpg from previous post)
Asus P5GD2-X, Intel i915P/G, Pentium 4 3.2 GHz, 2.5GB, nvidia Geforce 8800, Hauppauge WinTV-HVR-1850

Avner

I used the solution in: http://forum.linuxmce.org/index.php?topic=11387.0 and specifically created a symlink to the directory: "pictures" in the local drive, as follows:
ln -s   /mnt/device/74/untarHP_machineDriveF/ /mnt/device/31/public/data/pictures/untarHP_machineDriveF
This solved the problem. Now, Orbiter shows the video, audio and pictures.

Asus P5GD2-X, Intel i915P/G, Pentium 4 3.2 GHz, 2.5GB, nvidia Geforce 8800, Hauppauge WinTV-HVR-1850