RSS .92| RSS 2.0| ATOM 0.3
  • Home
  •  

    Prune old mythtv channels

    October 12th, 2008

    Looking for a way to bulk remove channels that I’ve delselected in my channel lineup at Schedules Direct, I happened upon this blog post. Seems to work great :)

    For the impatient, the important bit is this:

    DELETE channel,program FROM channel NATURAL LEFT JOIN program WHERE program.title IS NULL;


    How to mount partitioned disk image files

    October 1st, 2008

    Mounting unpartitioned disk image files in Linux is easy. You just execute ‘mount -o loop disk.img /mnt’ right?

    Well, if your disk image file happens to contain partitions its a little bit trickier. Here is what you need to do:

    Read the rest of this entry »