View unanswered posts    View active topics

All times are UTC - 6 hours





Post new topic Reply to topic  [ 19 posts ] 
Go to page 1, 2  Next

Print view Previous topic   Next topic  
Author Message
Search for:
PostPosted: Sun Apr 06, 2008 3:03 pm 
Offline
Joined: Thu Sep 27, 2007 5:44 pm
Posts: 580
Hey,

I was gone for the weekend and when I came home, my combined BE/FE did not show any information from the database (upcoming recordings, schedules, etc). I did not attempt to watch any videos or anything at the time. I tried restarting the backend and frontend and was unable to connect to the backend from the frontend. So I did what any confused person would do, restarted the computer.

Everything still loads, but it cannot record or play live tv. It will play recorded TV and videos, but without audio. I tried to start the backend in a shell window and it gives the following complaint:

Channel(/dev/video0)::Open(): Can't open video device, error "Permission denied"

Oddly enough, if I start everything as root, it seems to be working normally. Here's a snippet from the backend log (I don't know if this was running backend as root or mythtv):
Code:
2008-04-06 15:43:18.312 MainServer: HandleRemoteEncoder(cmd GET_STATE) Unknown encoder: 4
2008-04-06 15:43:18.315 MainServer: HandleRemoteEncoder(cmd GET_STATE) Unknown encoder: 5
2008-04-06 15:43:21.648 MainServer: HandleRemoteEncoder(cmd GET_STATE) Unknown encoder: 4
2008-04-06 15:43:21.650 MainServer: HandleRemoteEncoder(cmd GET_STATE) Unknown encoder: 5
2008-04-06 15:44:02.547 Expiring NASCAR Racing "Sprint Cup: Samsung 500" from Sun Apr 6 12:30:00 2008, 4 MBytes, forced expire (LiveTV recording)
2008-04-06 15:44:05.576 Error deleting '/myth/tv/1006_20080406153722.mpg' could not open
                        eno: Permission denied (13)
2008-04-06 15:44:05.578 Delete Error '/myth/tv/1006_20080406153722.mpg'
                        eno: Permission denied (13)
2008-04-06 15:44:05.579 Error deleting file: /myth/tv/1006_20080406153722.mpg. Keeping metadata in database.
2008-04-06 15:46:02.601 Expiring NASCAR Racing "Sprint Cup: Samsung 500" from Sun Apr 6 12:30:00 2008, 4 MBytes, forced expire (LiveTV recording)
2008-04-06 15:46:05.621 Error deleting '/myth/tv/1006_20080406153722.mpg' could not open
                        eno: Permission denied (13)
2008-04-06 15:46:05.624 Delete Error '/myth/tv/1006_20080406153722.mpg'
                        eno: Permission denied (13)
2008-04-06 15:46:05.625 Error deleting file: /myth/tv/1006_20080406153722.mpg. Keeping metadata in database.
2008-04-06 15:47:10.770 MainServer::HandleAnnounce Monitor
2008-04-06 15:47:10.773 adding: mythtv as a client (events: 0)
2008-04-06 15:47:10.774 MainServer::HandleAnnounce Monitor
2008-04-06 15:47:10.776 adding: mythtv as a client (events: 1)


The server was running for 56 straight days before rebooting. The only thing I had changed was adding a couple lines to crontab as root (maybe they shouldn't have been as root?):

5 4 * * 0 (/usr/local/bin/idle.sh && /usr/local/bin/mythbackup) >/var/log/backup.log 2>&1
20 4 * * 0 chmod 655 /myth/backup/*


The /var/log/backup.log is 6053 lines long, but the end reads:
Code:
/bin/tar: Error exit delayed from previous errors
Sanity checking your backup...

Checking for the existance of the backup tar file...
Using file /myth/backup/savedfiles.tar.gz
Backup tar file exists. Checking the compression...
Compression looks OK. Checking backup tar file contents...
Generating a list of the backup contents...
Generating a list of the directory contents...
/usr/bin/find: ./home/brian/DVDs: Stale NFS file handle
/usr/bin/find: ./home/brian/mp3: Stale NFS file handle
/usr/bin/find: ./home/brian/movies: Stale NFS file handle
Comparing directory versus backup contents...
Live and saved file lists match.

Checking for the existance of the DB dump file...
Using file /myth/backup/mythconverg.sql.gz
DB dump file exists. Checking the compression...
Compression looks OK. Checking DB dump contents...
Generating a list of tables and record counts in the DB dump...
Generating a list of tables and record counts in the live DB...
Comparing live versus saved tables...
7c7
< credits 81064
---
> credits 87113
44,46c44,46
< oldprogram 11671
< oldrecorded 253
< people 49983
---
> oldprogram 11647
> oldrecorded 254
> people 49974
52,54c52,54
< program 28263
< programgenres 43569
< programrating 13140
---
> program 30295
> programgenres 46670
> programrating 14141
56c56
< record 9
---
> record 10
59c59
< recordedcredits 40
---
> recordedcredits 106
61,62c61,62
< recordedprogram 3
< recordedrating 6
---
> recordedprogram 16
> recordedrating 16
Warning, table lists are not identical!

The backup is bad or already out of date!


I've been searching the forums, wiki, and google for a couple hours and nobody is awake in IRC :lol:

I could really use a hand here. Thanks!


Top
 Profile  
 
 Post subject:
PostPosted: Sun Apr 06, 2008 5:14 pm 
Offline
Joined: Sat Sep 02, 2006 9:17 am
Posts: 359
What do you get from running ls -l /dev/vid*
For reference, I have 2 PVR-150's, and an HDHomeRun, here's my output:
Code:
joe@mythbox:~$ ls -l /dev/vid*
crw-rw---- 1 root video 81,  0 Mar 31 18:08 /dev/video0
crw-rw---- 1 root video 81,  1 Mar 31 18:08 /dev/video1
crw-rw---- 1 root video 81, 24 Mar 31 18:08 /dev/video24
crw-rw---- 1 root video 81, 25 Mar 31 18:08 /dev/video25
crw-rw---- 1 root video 81, 32 Mar 31 18:08 /dev/video32
crw-rw---- 1 root video 81, 33 Mar 31 18:08 /dev/video33

I'm guessing yours either start with "crw-------" or have something like "root root" after the 1 instead of "root video"

The first case would get fixed with (run as root)
Code:
chmod 664 /dev/videoX

(Replace X with 0, 1, or whichever is bad)

The second case would get fixed with (same note about the X)
Code:
 chown root:video /dev/videoX


Top
 Profile  
 
 Post subject:
PostPosted: Sun Apr 06, 2008 6:01 pm 
Offline
Joined: Thu Sep 27, 2007 5:44 pm
Posts: 580
Code:
crw-rw---- 1 root video 81,  0 Apr  6 15:42 /dev/video0
crw-rw---- 1 root video 81,  1 Apr  6 15:42 /dev/video1
crw-rw---- 1 root video 81, 24 Apr  6 15:42 /dev/video24
crw-rw---- 1 root video 81, 25 Apr  6 15:42 /dev/video25
crw-rw---- 1 root video 81, 32 Apr  6 15:42 /dev/video32
crw-rw---- 1 root video 81, 33 Apr  6 15:42 /dev/video33


I noticed that mythtv was only in the group mythtv. I added it to video and audio. The video seems to be working now, but the audio still gets errors on the frontend... /dev/dsp permission denied. Which groups is mythtv supposed to be in by default?

I think running mythbackup as root somehow hosed things.


Top
 Profile  
 
 Post subject:
PostPosted: Sun Apr 06, 2008 6:27 pm 
Offline
Joined: Thu Mar 25, 2004 11:00 am
Posts: 9551
Location: Arlington, MA
knappster wrote:
I think running mythbackup as root somehow hosed things.

Doubtful, as that's the normal way to run it (when you run it from the menu it's run as root via sudo), and how I test it.

Also, that bad backup tells me something else is going on like running out of disk space, or something restarting the servers while the backup is running, or ... See this thread for some warnings... http://knoppmyth.net/phpBB2/viewtopic.php?t=13613&postorder=asc&start=37


Top
 Profile  
 
 Post subject:
PostPosted: Sun Apr 06, 2008 7:01 pm 
Offline
Joined: Thu Sep 27, 2007 5:44 pm
Posts: 580
Well, I have no script restarting the backend if it crashes, as I have never had it crash. I guess it would be good to note that I did hear the voice say "backup failed" approximately 10 hours after the backup was supposed to start. Shortly after, I meant to type mythbackend and accidentally typed mythbackup as mythtv and it went successfully.

Another FYI: chmod 777 /dev/dsp I can run both mythfrontend and mythbackend as mythtv, just as it was before. I think the permissions get reset when the computer is restarted, though, so I would like to dig deeper into this.

PS: Just tested the crontab line again as root and it completed successfully. It seems that things are working for my mythtv user again after adding it to groups:
mythtv root disk dialout fax voice cdrom floppy tape sudo audio video plugdev games users fuse

and then rebooting.


Top
 Profile  
 
 Post subject:
PostPosted: Mon Apr 07, 2008 6:15 am 
Offline
Joined: Fri Sep 15, 2006 12:16 pm
Posts: 292
Here are the groups that the user mythtv belong to from a working R5F27 FEBE with samba and ntfs-3g.
Quote:
mythtv disk dialout fax voice cdrom floppy tape sudo audio video plugdev games users fuse


Have you checked to see if you are out of space on either the root or /myth partitions?

Cliff

_________________
R5F27 using R5F1 Nvidia drivers
HD-5500 analog from NTSC Sat Rx, with OTA DVB too
GeForce MX-440 SVideo tvout to a TV
Older dual core 3.4ghz Intel CPU
Asus P5PE-VM Motherboard
2 GB RAM
1 TB LVM2
VirtualBox
Samba


Top
 Profile  
 
 Post subject:
PostPosted: Mon Apr 07, 2008 6:55 am 
Offline
Joined: Thu Sep 27, 2007 5:44 pm
Posts: 580
cliffsjunk wrote:
Here are the groups that the user mythtv belong to from a working R5F27 FEBE with samba and ntfs-3g.
Quote:
mythtv disk dialout fax voice cdrom floppy tape sudo audio video plugdev games users fuse


Have you checked to see if you are out of space on either the root or /myth partitions?

Cliff


Cliff,

I have not checked the space on the two partitions individually. Looking at mythweb I see there is 140 GB free, would that be combined or just on the /myth partition?

I'll have to check root when I get home tonight.
However, last night I did add the user to all of the groups that you had listed and after a reboot, things have been working. So I guess the question is no longer "what happened to the permissions?", it is "Why did mythtv get booted from all of the groups except: mythtv?"


Top
 Profile  
 
 Post subject:
PostPosted: Mon Apr 07, 2008 5:24 pm 
Offline
Joined: Thu Sep 27, 2007 5:44 pm
Posts: 580
mythtv:~$ df
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/sda1 4828768 2820496 1763684 62% /
/dev/sda3 306924568 169285436 137639132 56% /myth
tmpfs 239916 4 239912 1% /dev/shm

Not out of space now... I suppose that doesn't rule out temporary files yesterday.


Top
 Profile  
 
 Post subject:
PostPosted: Mon Apr 07, 2008 5:49 pm 
Offline
Joined: Sun Sep 25, 2005 3:50 pm
Posts: 1013
Location: Los Angeles
knappster wrote:
Not out of space now... I suppose that doesn't rule out temporary files yesterday.


Run
Code:
df -i
this will show inode usage. You can still have space left on a device, but no inodes.

_________________
Mike
My Hardware Profile


Top
 Profile  
 
 Post subject:
PostPosted: Mon Apr 07, 2008 6:48 pm 
Offline
Joined: Thu Sep 27, 2007 5:44 pm
Posts: 580
mythtv:~$ df -i
Filesystem Inodes IUsed IFree IUse% Mounted on
/dev/sda1 500992 103311 397681 21% /
/dev/sda3 74944 1812 73132 3% /myth
tmpfs 59979 3 59976 1% /dev/shm

I assume that's good.


Top
 Profile  
 
 Post subject:
PostPosted: Wed Apr 16, 2008 9:34 pm 
Offline
Joined: Thu Sep 27, 2007 5:44 pm
Posts: 580
I have just noticed that using the myt2xvid3 script is now failing as well. This is from the mythbackend.log of what I tried to run tonight:
Code:
2008-04-16 22:24:47.389 JobQueue: Started "Trancode to XviD" for "South Park" recorded from channel 1042 at Mon Apr 14 20:29:00 2008
Starting nuvexport...
Generating cutlist
/usr/bin/mythcommflag --chanid 1042 --starttime 20080414202900 --gencutlist
2008-04-16 22:24:47.822 Using runtime prefix = /usr
2008-04-16 22:24:47.859 New DB connection, total: 1
2008-04-16 22:24:47.893 New DB connection, total: 2
/usr/local/bin/nuvexport --chanid=1042 --start=20080414202900 --mode=XviD --nice=19 --cutlist --nodenoise --nodeinterlace --crop --multipass --path=/myth/video/archive/
OSPEED was not set, defaulting to 9600 at /usr/local/share/nuvexport/nuv_export/shared_utils.pm line 61
TERM not set at /usr/local/share/nuvexport/nuv_export/shared_utils.pm line 61
Compilation failed in require at /usr/local/bin/nuvexport line 36.
BEGIN failed--compilation aborted at /usr/local/bin/nuvexport line 36.

Cleaning up temp files.
Nuvexport encoding seems to have failed
/usr/bin/mythcommflag --chanid 1042 --starttime 20080414202900 --clearcutlist
Cleaning up temporary files
rm -f /myth/video/archive/1042_20080414202900.temp.mp4
Generating cutlist
/usr/bin/mythcommflag --chanid 1042 --starttime 20080414202900 --clearcutlist
2008-04-16 22:24:48.199 Using runtime prefix = /usr
2008-04-16 22:24:48.228 New DB connection, total: 1
2008-04-16 22:24:48.260 New DB connection, total: 2
2008-04-16 22:24:48.288 Cutlist set to:
South Park is ready for your XviD
2008-04-16 22:24:48.301 JobQueue: Finished "Trancode to XviD" for "South Park" recorded from channel 1042 at Mon Apr 14 20:29:00 2008.


I just checked the files in /myth/tv and the .mpg files are -rw-r--r--
and the .png files are -rw-rw-rw

/myth/video/archive has rwx permissions for mythtv user. I'm assuming that I still have a permissions thing screwy... any thoughts?


Top
 Profile  
 
 Post subject:
PostPosted: Wed Apr 16, 2008 9:44 pm 
Offline
Joined: Thu Sep 27, 2007 5:44 pm
Posts: 580
:roll: Seems to be working after a reboot.


Top
 Profile  
 
 Post subject:
PostPosted: Tue Apr 22, 2008 6:38 am 
Offline
Joined: Thu Sep 27, 2007 5:44 pm
Posts: 580
Okay, now the myt2xvid3 script is not working again. I am scratching my head here guys. The only thing I can say for sure that has happened in both cases between when it was working and when it wasn't is the idle and backup scripts in my crontab. It would have run Friday afternoon and the myt2xvid3 scripted worked Wednesday/Thursday, but I haven't run it again until this morning.

I won't be able to check anything on my box until this evening, but any suggestions would be appreciated. I'll also double check that I have the newest idle.sh script when I get home. This is bizarre. :shock:


Top
 Profile  
 
 Post subject:
PostPosted: Tue Apr 22, 2008 7:17 pm 
Offline
Joined: Thu Sep 27, 2007 5:44 pm
Posts: 580
mythbackend.log for bad xvid transcode
Code:
2008-04-22 07:02:24.852 JobQueue: Started "Trancode to XviD" for "South Park" recorded from channel 1042 at Mon Apr 21 20:29:00 2008
Starting nuvexport...
Generating cutlist
/usr/bin/mythcommflag --chanid 1042 --starttime 20080421202900 --gencutlist
2008-04-22 07:02:26.673 Using runtime prefix = /usr
2008-04-22 07:02:26.753 New DB connection, total: 1
2008-04-22 07:02:26.820 New DB connection, total: 2
/usr/local/bin/nuvexport --chanid=1042 --start=20080421202900 --mode=XviD --nice=19 --cutlist --nodenoise --nodeinterlace --crop --multipass --path=/myth/video/archive/
OSPEED was not set, defaulting to 9600 at /usr/local/share/nuvexport/nuv_export/shared_utils.pm line 61
TERM not set at /usr/local/share/nuvexport/nuv_export/shared_utils.pm line 61
Compilation failed in require at /usr/local/bin/nuvexport line 36.
BEGIN failed--compilation aborted at /usr/local/bin/nuvexport line 36.

Cleaning up temp files.
Nuvexport encoding seems to have failed
/usr/bin/mythcommflag --chanid 1042 --starttime 20080421202900 --clearcutlist
Cleaning up temporary files
rm -f /myth/video/archive/1042_20080421202900.temp.mp4
Generating cutlist
/usr/bin/mythcommflag --chanid 1042 --starttime 20080421202900 --clearcutlist
2008-04-22 07:02:27.496 Using runtime prefix = /usr
2008-04-22 07:02:27.525 New DB connection, total: 1
2008-04-22 07:02:27.581 New DB connection, total: 2
2008-04-22 07:02:27.630 Cutlist set to:
South Park is ready for your XviD
2008-04-22 07:02:27.643 JobQueue: Finished "Trancode to XviD" for "South Park" recorded from channel 1042 at Mon Apr 21 20:29:00 2008.


output from (run 2008-04-18):
(/usr/local/bin/idle.sh && /usr/local/bin/mythbackup) >/var/log/backup.log 2>&1
Code:
Checking what MythTV is doing now or plans within 20 minutes...

mythshutdown returned 0
schemalock 0
running jobs 0
inuse programs 0
potential recordings 0
planned recordings 0

System is idle
Starting rollover of old backups, this may take a while...
Moving /myth/backup/mythconverg.sql.gz to /myth/backup/mythconverg.sql.gz.1
Moving /myth/backup/savedfiles.tar.gz to /myth/backup/savedfiles.tar.gz.1
Rollover completed.
Stopping MythTV server: mythbackend .
Stopping MySQL database server: mysqld.
Checking MyISAM file: archiveitems.MYI
Data records:       6   Deleted blocks:       0
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check data record references index: 2
- check record links

---------

Checking MyISAM file: callsignnetworkmap.MYI
Data records:       0   Deleted blocks:       0
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check data record references index: 2
- check record links

---------

Checking MyISAM file: capturecard.MYI
Data records:       2   Deleted blocks:       1
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check record links

---------

Checking MyISAM file: cardinput.MYI
Data records:       2   Deleted blocks:       0
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check record links

---------

Checking MyISAM file: channel.MYI
Data records:      71   Deleted blocks:       0
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check data record references index: 2
- check record links

---------

Checking MyISAM file: codecparams.MYI
Data records:     118   Deleted blocks:       0
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check record links

---------

Checking MyISAM file: credits.MYI
Data records:   87036   Deleted blocks:    6932
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check data record references index: 2

---------

Checking MyISAM file: customexample.MYI
Data records:       0   Deleted blocks:       0
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check record links

---------

Checking MyISAM file: diseqc_config.MYI
Data records:       0   Deleted blocks:       0
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check record links

---------

Checking MyISAM file: diseqc_tree.MYI
Data records:       0   Deleted blocks:       0
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check data record references index: 2
- check record links

---------

Checking MyISAM file: dtv_multiplex.MYI
Data records:       0   Deleted blocks:       0
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check record links
---------

Checking MyISAM file: dtv_privatetypes.MYI
Data records:      49   Deleted blocks:       0
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check record links

---------

Checking MyISAM file: dvdinput.MYI
Data records:       8   Deleted blocks:       0
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check record links

---------

Checking MyISAM file: dvdtranscode.MYI
Data records:      11   Deleted blocks:       0
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check record links

---------

Checking MyISAM file: eit_cache.MYI
Data records:       0   Deleted blocks:       0
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1

---------

Checking MyISAM file: favorites.MYI
Data records:       0   Deleted blocks:       0
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1

---------

Checking MyISAM file: filemarkup.MYI
Data records:      43   Deleted blocks:       0
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check record links

---------

Checking MyISAM file: gallerymetadata.MYI
Data records:       0   Deleted blocks:       0
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check record links

---------

Checking MyISAM file: gamemetadata.MYI
Data records:       2   Deleted blocks:       0
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check data record references index: 2
- check data record references index: 3
- check data record references index: 4
- check data record references index: 5
- check record links

---------

Checking MyISAM file: gameplayers.MYI
Data records:       4   Deleted blocks:       0
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check data record references index: 2
- check record links

---------

Checking MyISAM file: housekeeping.MYI
Data records:       3   Deleted blocks:       0
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check record links

---------

Checking MyISAM file: inuseprograms.MYI
Data records:       0   Deleted blocks:       5
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check record links

---------

Checking MyISAM file: jobqueue.MYI
Data records:       0   Deleted blocks:      22
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check data record references index: 2
- check record links

---------

Checking MyISAM file: jumppoints.MYI
Data records:     110   Deleted blocks:       0
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check record links

---------

Checking MyISAM file: keybindings.MYI
Data records:     820   Deleted blocks:       0
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check record links

---------

Checking MyISAM file: keyword.MYI
Data records:       0   Deleted blocks:       0
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check record links

---------

Checking MyISAM file: music_albums.MYI
Data records:     444   Deleted blocks:       0
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check data record references index: 2
- check record links

---------

Checking MyISAM file: music_artists.MYI
Data records:     292   Deleted blocks:       0
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check data record references index: 2
- check record links

---------

Checking MyISAM file: music_genres.MYI
Data records:      72   Deleted blocks:       0
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check data record references index: 2
- check record links

---------

Checking MyISAM file: music_playlists.MYI
Data records:       4   Deleted blocks:       0
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check record links

---------

Checking MyISAM file: music_smartplaylist_categories.MYI
Data records:       3   Deleted blocks:       0
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check data record references index: 2
- check record links

---------

Checking MyISAM file: music_smartplaylist_items.MYI
Data records:       8   Deleted blocks:       0
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check data record references index: 2
- check record links

---------

Checking MyISAM file: music_smartplaylists.MYI
Data records:       8   Deleted blocks:       0
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check data record references index: 2
- check data record references index: 3
- check record links

---------

Checking MyISAM file: music_songs.MYI
Data records:     826   Deleted blocks:       1
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check data record references index: 2
- check data record references index: 3
- check record links

---------

Checking MyISAM file: music_stats.MYI
Data records:       0   Deleted blocks:       0
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check record links

---------

Checking MyISAM file: musicmetadata.MYI
Data records:       0   Deleted blocks:       0
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check data record references index: 2
- check data record references index: 3
- check data record references index: 4
- check data record references index: 5
- check data record references index: 6
- check data record references index: 7
- check record links

---------

Checking MyISAM file: musicplaylist.MYI
Data records:       0   Deleted blocks:       0
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check record links

---------

Checking MyISAM file: mythlog.MYI
Data records:       0   Deleted blocks:       0
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check record links

---------

Checking MyISAM file: mythweb_sessions.MYI
Data records:       1   Deleted blocks:       1
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check data record references index: 2
- check record links

---------

Checking MyISAM file: netflix.MYI
Data records:       2   Deleted blocks:       1
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check record links

---------

Checking MyISAM file: networkiconmap.MYI
Data records:       0   Deleted blocks:       0
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check data record references index: 2
- check record links

---------

Checking MyISAM file: newssites.MYI
Data records:       0   Deleted blocks:       0
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check record links

---------

Checking MyISAM file: oldfind.MYI
Data records:       0   Deleted blocks:       1
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1

---------

Checking MyISAM file: oldprogram.MYI
Data records:   12004   Deleted blocks:       0
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check record links

---------

Checking MyISAM file: oldrecorded.MYI
Data records:     264   Deleted blocks:       3
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check data record references index: 2
- check data record references index: 3
- check data record references index: 4
- check data record references index: 5
- check data record references index: 6
- check data record references index: 7
- check data record references index: 8
- check record links

---------

Checking MyISAM file: people.MYI
Data records:   50690   Deleted blocks:       0
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check data record references index: 2

---------

Checking MyISAM file: phonecallhistory.MYI
Data records:       0   Deleted blocks:       0
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check record links

---------

Checking MyISAM file: phonedirectory.MYI
Data records:       2   Deleted blocks:       0
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check record links

---------

Checking MyISAM file: pidcache.MYI
Data records:       0   Deleted blocks:       0
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1

---------

Checking MyISAM file: playgroup.MYI
Data records:       1   Deleted blocks:       1
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check record links

---------

Checking MyISAM file: profilegroups.MYI
Data records:      12   Deleted blocks:       0
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check data record references index: 2
- check record links

---------

Checking MyISAM file: program.MYI
Data records:   30475   Deleted blocks:    4144
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check data record references index: 2
- check data record references index: 3
- check data record references index: 4
- check data record references index: 5
- check data record references index: 6
- check data record references index: 7
- check record links

---------

Checking MyISAM file: programgenres.MYI
Data records:   46976   Deleted blocks:    3842
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check data record references index: 2

---------

Checking MyISAM file: programrating.MYI
Data records:   14472   Deleted blocks:    1051
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check data record references index: 2

---------

Checking MyISAM file: recgrouppassword.MYI
Data records:       0   Deleted blocks:       0
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check data record references index: 2
- check record links

---------

Checking MyISAM file: record.MYI
Data records:       9   Deleted blocks:      13
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check data record references index: 2
- check data record references index: 3
- check data record references index: 4
- check data record references index: 5
- check record links

---------

Checking MyISAM file: record_tmp.MYI
Data records:       6   Deleted blocks:       0
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check record links

---------

Checking MyISAM file: recorded.MYI
Data records:      36   Deleted blocks:     111
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check data record references index: 2
- check data record references index: 3
- check data record references index: 4
- check data record references index: 5
- check data record references index: 6
- check record links

---------

Checking MyISAM file: recordedcredits.MYI
Data records:     255   Deleted blocks:     599
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check data record references index: 2

---------

Checking MyISAM file: recordedmarkup.MYI
Data records:      77   Deleted blocks:     267
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check record links

---------

Checking MyISAM file: recordedprogram.MYI
Data records:      33   Deleted blocks:     105
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check data record references index: 2
- check data record references index: 3
- check data record references index: 4
- check data record references index: 5
- check data record references index: 6
- check data record references index: 7
- check record links

---------

Checking MyISAM file: recordedrating.MYI
Data records:      27   Deleted blocks:      58
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check data record references index: 2

---------

Checking MyISAM file: recordedseek.MYI
Data records:  104126   Deleted blocks:  111351
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check record links

---------

Checking MyISAM file: recordingprofiles.MYI
Data records:      41   Deleted blocks:       0
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check record links

---------

Checking MyISAM file: recordmatch.MYI
Data records:      42   Deleted blocks:      71
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1

---------

Checking MyISAM file: romdb.MYI
Data records:  165158   Deleted blocks:       0
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check data record references index: 2
- check data record references index: 3
- check data record references index: 4
- check data record references index: 5
- check data record references index: 6
- check record links

---------

Checking MyISAM file: schemalock.MYI
Data records:       0   Deleted blocks:       0
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference

---------

Checking MyISAM file: settings.MYI
Data records:    1240   Deleted blocks:       0
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check record links

---------

Checking MyISAM file: streams.MYI
Data records:      25   Deleted blocks:       0
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check record links

---------

Checking MyISAM file: tvchain.MYI
Data records:      98   Deleted blocks:      41
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check record links

---------

Checking MyISAM file: videocategory.MYI
Data records:       0   Deleted blocks:       0
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check record links

---------

Checking MyISAM file: videocountry.MYI
Data records:      10   Deleted blocks:       0
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check record links

---------

Checking MyISAM file: videogenre.MYI
Data records:      18   Deleted blocks:       0
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check record links

---------

Checking MyISAM file: videometadata.MYI
Data records:     208   Deleted blocks:       0
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check data record references index: 2
- check data record references index: 3
- check data record references index: 4
- check record links

---------

Checking MyISAM file: videometadatacountry.MYI
Data records:      69   Deleted blocks:       0
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check data record references index: 2

---------

Checking MyISAM file: videometadatagenre.MYI
Data records:     151   Deleted blocks:       0
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check data record references index: 2

---------

Checking MyISAM file: videosource.MYI
Data records:       1   Deleted blocks:       0
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check data record references index: 2
- check record links

---------

Checking MyISAM file: videotypes.MYI
Data records:      22   Deleted blocks:       0
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check record links

---------

Checking MyISAM file: websites.MYI
Data records:       4   Deleted blocks:       0
- check file-size
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check record links
Stopping MySQL database server: mysqld.
Starting MySQL database server: mysqld.
Checking for corrupt, not cleanly closed and upgrade needing tables..
Restarting MythTV server: mythbackendNo /usr/bin/mythbackend found running; none killed.
.
.
[a bunch of file names cut from here / no errors]
Sanity checking your backup...

Checking for the existance of the backup tar file...
Using file /myth/backup/savedfiles.tar.gz
Backup tar file exists. Checking the compression...
Compression looks OK. Checking backup tar file contents...
Generating a list of the backup contents...
Generating a list of the directory contents...
Comparing directory versus backup contents...
Live and saved file lists match.

Checking for the existance of the DB dump file...
Using file /myth/backup/mythconverg.sql.gz
DB dump file exists. Checking the compression...
Compression looks OK. Checking DB dump contents...
Generating a list of tables and record counts in the DB dump...
Generating a list of tables and record counts in the live DB...
Comparing live versus saved tables...
Live and saved table lists match.

Backup passes all checks.

The crontab runs mythbackup at 13:00 and the backup.log file was last modified 13:01.
The idle.sh script I was using was taken from the wiki, which is (still) not up to date. I will use the one from the forums in the future. But the question remains... what is causing my transcode to xvid to fail?


Top
 Profile  
 
 Post subject:
PostPosted: Tue Apr 22, 2008 7:53 pm 
Offline
Joined: Thu Mar 25, 2004 11:00 am
Posts: 9551
Location: Arlington, MA
The one from the wiki is newer. The correct URL is
http://www.knoppmythwiki.org/index.php?binary=internal%3A%2F%2Ff2d54386f4609dcf9034d595ec5f5472.bin
It looks like the link on the page hadn't been updated.


Top
 Profile  
 

Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 19 posts ] 
Go to page 1, 2  Next



All times are UTC - 6 hours




Who is online

Users browsing this forum: No registered users and 14 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Jump to:  
cron
Powered by phpBB® Forum Software © phpBB Group

Theme Created By ceyhansuyu