Members
..:: Login

Features
..:: Articles
..:: Wallpapers
..:: Linux Tutorial
..:: Mobile
..:: Motorola A1200 Hacks
How-to: Ubuntu Edgy and MythTV and Hauppauge PVR-150
by djlosch
The purpose of this install guide is to install MythTV on Ubuntu Edgy, using a Hauppauge PVR-150. Some linked docs here may help you, but this guide is to achieve that purpose with minimal work. Most of the other Edgy tutorials leave off a significant amount of information, and are specifically only usable with cards compatible with DVB (for the nova-T line of cards), but the Hauppauge PVR-xxx line is not compatible at the moment. This is not for the Feint of Mind (tm), so your grandma will probably have some difficulty in this. You should have a medium amount of Linux experience before trying this, but do not fret. Excluding Edgy's install time, I can run through this entire install in about 20 minutes.

PLEASE, READ everything in a section when doing it. SKIMMING will often leave you wondering what is going on, and you'll learn nothing (which is neither the goal of this guide, nor open source). I also get a bunch of emails from people who missed a key detail simply because they didn't read. I also highly advise copying and pasting text from your browser window to your terminal, or you may get typos.

..:: Background

MythTV is Tivo and Windows Media Center on steroids. The most notable features include
  • a TV recorder
  • an optional web based recording manager (that is awesome)
  • automatic commercial skipping for recorded TV
  • no playback restrictions (WinMCE disables playback for what content creators deem is "premium" content after 3 days)
  • no monthly fees
  • allows easy expansion (just add network storage or another internal hard drive)
  • a music manager
  • a DVD player
  • a video file player (that plays every non-DRM'd codec you've ever seen)
I love MythTV. Once you have a DVR, regular television is unwatchable. Annoying commercials (that raise the volume 30-50%) are no longer an issue. Rewinding, pausing, and fast forwarding regular TV is spectacular.

..:: My Experiences

This is a little bit of my experience with Ubuntu and MythTV. If you don't care about this (and most of you shouldn't as it's merely my professional opinion on the version changes), just skip to the next section. Basically, I started using Mythtv .18 on Ubuntu 5.10. The only cards I have any experience with are the PVR-150 and the PVR-500. I set the 150 up for myself and the 500 for my older brother. They're nearly the same install method. I used the hyams MythTV method for Breezy, but when Dapper (6.06) came out, I tried that out, and there were issues with Ubuntu using an upgraded version of MySQL. I knew that it would take less time for me to reinstall on Breezy than it would to fix the Dapper issues. So I went back to Breezy. After a bit, I got tired of playing World of Warcraft on my laptop (5 fps or less is horrendous) so I took down my MythTV box to use it as a WoW box. I'm now ditching WoW to pull up MythTV (that's my only acceptably fast computer). I downloaded Ubuntu Edgy (6.10), and the MythTV install is amazingly easier than it used to be. I don't know whether I'm just so familiar with the install, or that it's just gotten to be so easy. Anyways, here goes.

..:: Install MythTV Backend and Frontend

Get Ubuntu 6.10 and then install it. You can use the default installation parameters if you want. I typically do. Once up and running in the installed version (not the live version), open a terminal and type
sudo su
Enter your password (and hit enter). This will basically log you in as root without permanently destroying your Ubuntu sudo model. Backup your /etc/apt/sources.list:
sudo cp /etc/apt/sources.list /etc/apt/sources.list.default
Then modify your /etc/apt/sources.list file to include these:
deb http://archive.ubuntu.com/ubuntu/ edgy main restricted universe multiverse
deb http://archive.ubuntu.com/ubuntu/ edgy-updates main restricted universe multiverse
deb http://security.ubuntu.com/ubuntu/ edgy-security main restricted universe multiverse
deb http://archive.ubuntu.com/ubuntu/ edgy-backports main restricted universe multiverse
Then type:
apt-get update
apt-get upgrade
After that finishes, type
apt-get install mplayer phpmyadmin apache2 php5 mysql-server libapache2-mod-php5 libapache2-mod-auth-mysql php5-mysql gstreamer0.10-ffmpeg gstreamer0.10-gl gstreamer0.10-plugins-base gstreamer0.10-plugins-good gstreamer0.10-plugins-bad gstreamer0.10-plugins-bad-multiverse gstreamer0.10-plugins-ugly gstreamer0.10-plugins-ugly-multiverse libxine-extracodecs
Once apache, php, mysql, and phpmyadmin have finished installing, go to http://localhost/phpmyadmin and set a root password for MySQL. Do NOT use tilda (a special terminal app) for this next step, because folding up really borks this next installation. The myth installer uses a console GUI to request a few things, and folded tilda doesn't handle it well. If you don't know what tilda is, you're not using it, so don't worry about it. Also, you can't combine this and the previous line, because you have to have mysql-server installed before mythtv installs. Now, type
apt-get install mythtv-frontend mythtv-backend mythtv-database mythvideo mythweather mythweb mythmusic mythplugins
During this install, MythTV will ask for your MySQL root password. You'll also need to run the following line, but it often encounters errors because of server issues so keep trying until it succeeds:
apt-get install msttcorefonts
During the install, go to zap2it and register for an account to get free TV listings. For the Certificate Code, use the MythTV project code: ZIYN-DQZO-SBUT. Take note of your account username and password, because you'll have to put it into MythTV in a few minutes.

..:: Install IVTV module

The next step is going to be to install the IVTV module used for the Hauppauge PVR-xxx video capture cards . I use the PVR-150, but the 500 works well too. If you're not using this series, check here for your hardware. If you're using the PVR-xxx series, continue with my instructions. Type:
apt-get install ivtv-source devscripts ivtv-utils
Get, build, and install the IVTV driver:
cd
wget ftp://ftp.shspvr.com/download/wintv-pvr_250-350/inf/pvr_1.18.21.22254_inf.zip
export DEBFULLNAME="Mario Limonciello"
export DEBEMAIL="superm1@ubuntu.com"
ivtv-make-fwpkg pvr_1.18.21.22254_inf.zip
dpkg -i ivtv*firmware*deb
Get the PVR-150 and 500 firmware addition:
wget http://home.eng.iastate.edu/~superm1/contrib/firmware/v4l-cx25840.fw -O /lib/firmware/v4l-cx25840.fw
The next few instructions must be run one at a time:
m-a update,prepare
m-a a-i ivtv
depmod -a
modprobe ivtv
If there are no errors, then you're good so far, and you should test IVTV by typing:
mplayer /dev/video0
If you get video, that's fantastic. Otherwise, I don't know what you did wrong, because this worked the first time for me.

..:: Startup: Set MythTV as the default user to login

edit /etc/gdm/gdm.conf. find these two lines:
AutomaticLoginEnable=false
AutomaticLogin=
and change them to
AutomaticLoginEnable=true
AutomaticLogin=mythtv

..:: Set Up Your Card and Get Your First Set of Listings

All that is really remaining is to configure your capture card, but you should do this as the MythTV user. The MythTV install will create the user, but you will need to set the MythTV user password:
passwd mythtv
Then log out, and when you log back in as MythTV, type:
mythtv-setup
I'm assuming you're using an NTSC television (in the US), so you can ignore the first bubble. Go to "2. Capture Cards" and select "New Capture Card". Enter the following settings:
Card type: MPEG-2 Encoder card (PVR-250, PVR 350)
Video device: /dev/video0
Default input: Tuner0
Then go to "3. Video Sources" and select "New Video Source". Enter the following settings:
Video source name: PVR-150-1
XMLTV listings grabber: NorthAmerica (DataDirect)
User ID: your_zap2it_username
Password: your_zap2it_password
Hit "Retrieve Line-ups" and wait a second. Exit that section and then select "4. Inputs", and enter this setting:
Video Source: PVR-150-1
Finally, fill your database full of listings:
mythfilldatabase

..:: Startup: Set mythbackend and mythfrontend to run on boot

The default init.d startup script is broken (or at least was for me on both breezy and edgy), so I'm currently using hyam's backend script. I give full credit for this script to hyam. You can get this script by typing:
wget http://s91928265.onlinehome.us/hfamily/mythtv/mythtv-backend -O /etc/init.d/mythtv-backend
Then restart the myth-backend daemon.
/etc/init.d/mythtv-backend start
On the gnome start menu, go to System->Preferences->Sessions and on the Startup Programs tab, add "mythfrontend" without the quotes. Finally, run the client, and explore the menus:
mythfrontend

..:: Disable the Screensaver

Since you don't want the screensaver popping up while you're watching a movie, go to System->Preferences->Screensaver, and disable the screen saver. In the "Advanced" tab, turn off power management.

..:: Option: MythCenter Theme

I personally like the MythCenter theme. To get it type:
wget http://mythtv.fotoniq.nl/files/MythCenter.tar.gz
tar -xzvf MythCenter.tar.gz --directory=/usr/share/mythtv/themes/
It should appear in the Appearances configuration menu when you're running mythfrontend.

..:: Option: Enable Your Remote

Some Hauppauge packages come with the grey remote. Mine did, and installation is incredibly simple, but I have not made any customizations to it. I actually use my universal remote, and had it just memorize the hauppauge functions. To install the daemon, check the MythTV LIRC on Ubuntu Edgy How-to.

..:: Option: MPD to Control Music

I personally dislike the mythmusic frontend. I think using a remote for playlist manipulation (instead of a mouse) is silly, and way too time consuming. Also, I almost always have my laptop around, so the MPD project seems perfect for the job. Check my MPD MythTV How-To on how to get it installed in Ubuntu Edgy.

..:: Troubleshooting: Static Past Channel X

Many people have reported this error, and I've even received it myself. Basically, I'll be able to view up through channel 13 or 14, and then everything else after is just static. The solution is to go back into myth-setup and make sure that the tuner is set to "us-cable". You may or may not have to deal with this depending on your cable provider and how Zap2it handles your listing.

..:: Troubleshooting: Changing Channels Doesn't Actually Change the Channel

The symptom of this is that regardless of what channel you select (using up, down, or typing in a number), the video source doesn't actually change, but the OSD will. Re-run mythtv-setup as root and delete your cards/tuners. Then exit, and re-run mythtv-setup and add your tuner/card(s) as the mythtv user.

..:: Credits

https://wiki.ubuntu.com/Install_IVTV_Edgy
https://help.ubuntu.com/community/MythTV_Edgy_Backend_Frontend

Post Last Updated: Dec 12, 2006 3:15 pm
Related Articles
..:: Linux Tutorial - Nov 5, 2006 12:41 pm
Social Bookmarking (?)

StumbleUpon

Comments
Rik wrote on Monday, 1 January '07 - 4:28:58 PM -0500 [reply]
Thanks for such detailed and complete tutorial.

The only aspect of the tutorial I found problems with are:
1. "Then log out, and when you log back in as MythTV, type:
MythTV-setup
should read:
"Then log out, and when you log back in as mythtv, type:
mythtv-setup

2. Commands such as:
wget http://mythtv.fotoniq.nl/files/MythCenter.tar.gz -O /usr/share/mythtv/themes
did not work for me. I had to do this:
wget http://mythtv.fotoniq.nl/files/MythCenter.tar.gz
tar -zxvpf MythCenter.tar.gz
mv ./MythCenter /usr/share/mythtv/themes/

3. mythfrontend could not connect to the backend, with 127.0.0.1 or Internet IP. I had to run the backend as root before the frontend could connect to it.

My setup:
Ubuntu 6.1
PVR-150
Epox Socket AM2 mobo
AMD Athlon 64 3800.

djlosch wrote on Tuesday, 2 January '07 - 10:26:58 PM -0500 [reply]
1) I had done a GSAP(mythtv->MythTV) a while back and apparently missed a few changes.
2) I made a mistake in the syntax. Fixed with the --directory flag
3) With hyam's script in, the backend should run as root. I forgot to mention to restart the backend (as I had a reboot in there when I tested it).

Overall, thanks for the comments. They allow me to fix things up. I colored your syntax to help distinguish commands. Keep the comments coming.

azlinux wrote on Wednesday, 3 January '07 - 2:36:42 PM -0500 [reply]
djlosch, thank you for this how to. Without it I would have no MythTV. I was installing using Putty and I had to install mysql 1st seperately to input the mysql root passwd, then install the rest. Another note for others using COX for cable was that I had to manually program the frequency of channels 14+, 2 -13 came in fine. After I plugged all of that in she worked like a dream. She's has been up for 3 days with NO issues.
My setup:
Ubuntu 6.10
PVR-150
AMD 1800XP
1GB RAM
1 80 GB WD IDE HD
1 320 GB WD SATA HD
Both HD's used in 1 LVM
ReiserFS Partitions
P.S. Rik thanks for the clarifications for the masses, I didn't have time until now to post myself and I had run into the same.

richard wrote on Sunday, 14 January '07 - 8:20:20 AM -0500 [reply]
install failed at the mysql bit with multiple errors. Can't post the errors here as it complains of html tags. Do you have a forum somewhere that I can post to?
Richard


djlosch wrote on Sunday, 14 January '07 - 8:53:40 AM -0500 [reply]
Check my contact page and send me an email. I have html in comments disabled to cut down on spam.

djlosch wrote on Wednesday, 7 February '07 - 7:30:41 PM -0500 [reply]
I updated the tutorial a lot and responded to your issues with the updates.

randy wrote on Sunday, 21 January '07 - 12:24:31 AM -0500 [reply]
First, thanks so much for this, I've done serveral MythTV setups on Redhat/Fedora, this was a breeze. Currently my box has no sound. I've seen some stuff "out there" about disabling the sound server, but they all refer to an option under preferences that I can't find. I'm still working on it though. I've never done a setup with a PVR 150, so I don't know if I've missed something here. Is there any special sound setup I need to do?

randy wrote on Sunday, 21 January '07 - 12:25:41 AM -0500 [reply]
I should clarify. My system has sound. It plays sound clips and video files fine, but watching LiveTV or recordings in MythTV, I get no sound.

Rip wrote on Wednesday, 7 February '07 - 11:39:41 AM -0500 [reply]
Randy, if you're still having this problem you may want to look at the output of ivtvctl -Q. I was having a similar problem even after I'd gotten sound working for MP3/DVD playback etc. What worked for me:
rip@nasty:/etc/modprobe.d$ ivtvctl -Q
ioctl VIDIOC_G_AUDIO ok
Audio input = 1: Line In 1
rip@nasty:/etc/modprobe.d$ ivtvctl -q 0
ioctl VIDIOC_S_AUDIO ok
Audio input set to 0
rip@nasty:/etc/modprobe.d$ ivtvctl -Q
ioctl VIDIOC_G_AUDIO ok
Audio input = 0: Tuner 1
Good luck!

djlosch wrote on Wednesday, 7 February '07 - 7:34:42 PM -0500 [reply]
thanks for replying rip. i have never had this problem ever, so i can't replicate the conditions to fix it

Jeff wrote on Monday, 12 February '07 - 7:37:41 PM -0500 [reply]
Randy:
Make sure to use ALSA for sound, you can set it in Edgy's sound preference, and to set the line input to capture.

Andy wrote on Wednesday, 14 February '07 - 5:58:27 AM -0500 [reply]
Excellent How-To! I used it to install MythTV on a VIA Epia SP8000E with a PVR-150 running Edgy and everything went very smoothly.
I used Synaptic to install the packages instead of apt-get, and that seemed to work fine.
Thanks!

Pete wrote on Monday, 19 February '07 - 1:29:42 PM -0500 [reply]
I'm getting ready to install and will use this tutorial to do it. One question, from a previous attempt: don't you need to have v4l setup first? I don't have those devices. I'll also be using Edgy.

djlosch wrote on Monday, 19 February '07 - 7:12:34 PM -0500 [reply]
from a fresh edgy install, this guide is all you need to have a working mythtv box. if it's not listed here, you don't need to do it.

over the next few weeks, i'm going to look into mythrename and auto-removal of commercials and re-encoding of the video so different frontends can easily be used.

angst wrote on Monday, 26 February '07 - 12:45:44 AM -0500 [reply]
I really appreciate your effort. my install fails when I go into Input Connections. the top selection is [MPEG:/dev/vidio0](tuner 1)->(None). When I tested the PVR350, i saw video, so i know it works. Because of this, when I try to select source it is grayed out and won't let me select anything. A source is configured, named PVR-350. Any ideas?
thanks again, your howto got me the farthest after a weekend of tinkering! The first time I saw video!
angst

angst wrote on Monday, 26 February '07 - 1:05:28 AM -0500 [reply]
ok. i am an idiot. wasted all day and just found my right arrow key to switch between sources. It looked grayed out to me so i thought i was stuck. working like a charm now.


Jeff wrote on Tuesday, 27 February '07 - 5:38:54 PM -0500 [reply]
I just want to thank you for this page on installing mythtv. I do have one problem I can not play dvd's on myth I have to play them on mplayer so I can not rip either

Jeremy Hannah wrote on Friday, 16 March '07 - 7:00:47 PM -0400 [reply]
Thank you for this excellent guide. I do now have MythTV up and running. I have found your guide to be one of the best available, and I will certainly recommend it to anyone who is in the process of setting up MythTV. My next set will be to try and find a remote control for my Ubuntu box and MythTV. Does any one have any recommendations?
please keep up the great work, and thank you for the helpful site!

dhughes wrote on Tuesday, 20 March '07 - 11:44:00 AM -0400 [reply]
I tried your tutorial but I can't get past "...go to http://localhost/phpmyadmin and set a root password for MySQL"

I use the phpmyadmin url and I see the username and password fields (but it doesn't ask for a new username and password it's just two regular fields). I make up a username and password but it then says Access Denied.

There is a warning message below the username and pasword fields saying "Cookies must be enabled at this point". I added http://localhost/phpmyadmin (I'm guessing you literally mean to use "localhost").

Anyway that's where it ends for me :(

disruptor108 wrote on Wednesday, 21 March '07 - 2:11:32 AM -0400 [reply]
The default username for MySQL is 'root', you leave the password field blank because there isn't a default password

paul kobasa wrote on Saturday, 24 March '07 - 7:37:32 PM -0400 [reply]
great howto! got me going with this, but I need to spend some more time on the details. LIRC for example.
Thanks for putting this up. This is the spirit of free software and peer support. ^
Paul.

merlene wrote on Monday, 26 March '07 - 9:25:18 AM -0400 [reply]
I'm hoping someone can help. I'm on Edgy and have followed the above step by step but when I get to the firmware portion I get this result:
wget http://home.eng.iastate.edu/~superm1/contrib/firmware/v41-cx25840.fw -O /lib/firmware/v41-cx25840.fw
--09:21:34-- http://home.eng.iastate.edu/~superm1/contrib/firmware/v41-cx25840.fw
=> `/lib/firmware/v41-cx25840.fw'
Resolving home.eng.iastate.edu... 129.186.23.45
Connecting to home.eng.iastate.edu|129.186.23.45|:80... connected.
HTTP request sent, awaiting response... 404 Not Found
09:21:34 ERROR 404: Not Found.


After several attempts (over several days) to move beyond this I've decided to do the rest of the instructions above but I can't get the backend to work:
wget http://s91928265.onlinehome.us/hfamily/mythtv/mythtv-backend -O /etc/init.d/mythtv-backend
--09:24:33-- http://s91928265.onlinehome.us/hfamily/mythtv/mythtv-backend
=> `/etc/init.d/mythtv-backend'
Resolving s91928265.onlinehome.us... 82.165.194.64
Connecting to s91928265.onlinehome.us|82.165.194.64|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 1,836 (1.8K) [text/plain]

100%[====================================>] 1,836 --.--K/s

09:24:34 (998.87 KB/s) - `/etc/init.d/mythtv-backend' saved [1836/1836]

root@merlene-desktop:/home/merlene# /etc/inid.d/mythtv-backend restart
bash: /etc/inid.d/mythtv-backend: No such file or directory
Any suggestions would be appreciated.

merlene wrote on Monday, 26 March '07 - 9:29:38 AM -0400 [reply]
I should have mentioned in the post above:

I'm using Edgy and a hauppage PVR-150 tuner.

I've tried starting the backend both as mythtv and as the primary user with the same result as above.

djlosch wrote on Monday, 26 March '07 - 1:51:16 PM -0400 [reply]
you have a typo
root@merlene-desktop:/home/merlene# /etc/inid.d/mythtv-backend restart
bash: /etc/inid.d/mythtv-backend: No such file or directory
you typed inid.d, it's init.d.

As for the 404, you typo'd again: That's a lower case L, not the number one. I recommend copying and pasting commands directly into the terminal for this exact reason. Do not worry though. When I was setting up mythtv for the first time, I was making similar mistakes, and had no idea what the problem was.

merlene wrote on Tuesday, 27 March '07 - 11:46:28 AM -0400 [reply]
Ok so I've started over with a fresh install of Edgy and following the above. This time I did as you suggested and cut & paste each line. All's well until I get to:
Then restart the myth-backend daemon.
/etc/init.d/mythtv-backend restart

at which point I get this result:
:/home/mythtv# /etc/init.d/mythtv-backend restart
Usage: /etc/init.d/mythbackend {start|stop|restart|force-reload}

So I try /etc/init.d/mythbackend restart with this result:
bash: /etc/init.d/mythbackend: No such file or directory


merlene wrote on Tuesday, 27 March '07 - 1:02:39 PM -0400 [reply]
I rebooted the machine and tried again and got the backend running and now have television.

Thanks for the great article and all of the help!

(Now I can only get to channel 14 but I'm going to run myth-setup again as you suggested and hope that helps. Thanks again!)

Randall in Memphis wrote on Friday, 30 March '07 - 4:14:23 PM -0400 [reply]
This is my 3rd format of ubuntu trying to install Myth TV with a Hauppage 150 card. I always end up with a myth backend problem. Here is the error I get whenever I got to your step where you install MythTV everywhere. Also, I had no problem setting up my Mysql password n PHpmyadmin.
Setting up mythweb (0.20-0.6ubuntu4) ...
* Forcing reload of apache 2.0 web server... apache2: Could not determine the server's fully qualified domain name, using 127.0.1.1 for ServerName
apache2: Could not determine the server's fully qualified domain name, using 127.0.1.1 for ServerName
[ ok ]

Setting up mythtv-backend (0.20-0.2ubuntu2) ...
udev active, devices will be created in /dev/.static/dev/
Starting MythTV server: mythbackendSession management error: Authentication Rejected, reason : None of the authentication protocols specified are supported and host-based authentication failed


Randall in Memphis wrote on Friday, 30 March '07 - 4:34:17 PM -0400 [reply]
When I try and run Mythth -setup this is what I get
$ mythtv-setup
X Error: BadDevice, invalid or uninitialized input device 166
Major opcode: 144
Minor opcode: 3
Resource id: 0x0
Failed to open device
X Error: BadDevice, invalid or uninitialized input device 166
Major opcode: 144
Minor opcode: 3
Resource id: 0x0
Failed to open device


djlosch wrote on Tuesday, 3 April '07 - 11:14:07 AM -0400 [reply]
with the mythweb and apache error, that is expected on any system that lacks a domain name and is on a local network. that won't affect anything really.

as for your other errors, did you do a server install or the default ubuntu install?

Jean-Paul wrote on Saturday, 31 March '07 - 1:20:05 PM -0400 [reply]
Your article is AWESOME! That being said, I too am having problems with only being able to run mythfrontend as localhost instead of from my IP address, which in turn won't allow me to run any of my other frontends. Everything else seems to work perfectly. Is there something I missed?
Also have you had any luck with Mythstreamtv?

Jean-Paul wrote on Monday, 2 April '07 - 3:38:16 PM -0400 [reply]
Never mind I did a little searching and found it here: http://www.mythtv.org/docs/mythtv-HOWTO-6.html#modify_perm_mysql
Thanks again for the awesome How-to!

djlosch wrote on Tuesday, 3 April '07 - 11:14:50 AM -0400 [reply]
I haven't looked significantly into setting up mythclients so i cannot answer your question at this time. I also have not looked into mythstreamtv. However, I will look into both in a few weeks.

Randall in Memphis wrote on Tuesday, 3 April '07 - 8:57:53 PM -0400 [reply]
I did a Default Ubuntu install I believe. Just got the CD and installed straight from it. I did install on a separate partitioned SATA hard drive on my pc. I am wondering if I should just wait until the new Ubuntu comes out and try again. Maybe some hardware bugs will be worked out.

RickT wrote on Friday, 6 April '07 - 11:40:14 AM -0400 [reply]
Re Jean-Paul's question and self-solution -- I was not so fortunate in getting a remote front-end to run just by setting permissions. What I found I had to do (after much agonizing googling resulted in one ambiguous clue) was to log into phpmyadmin, open mythconverg and look for the MasterServerIP setting. That only appeared in one row, with "localhost" in the final hostname column. That row needed to be cloned for each other machine that I was running a frontend on -- I used the "xxxxx-desktop", "xxxxx-laptop" style hostname, don't know if ip addresses would work. Once I had done that and reloaded mysql, it worked like a charm. After a week of spending my free time banging my head against the wall with this problem, you cannot imagine what a feeling of accomplishment that was.

Dexter wrote on Tuesday, 24 April '07 - 8:50:30 AM -0400 [reply]
Thanks alot for the guide, it works like a charm.

Steven wrote on Saturday, 28 April '07 - 1:04:33 PM -0400 [reply]
I followed this setup and it works perfectly, so well in fact that I now need to add another hard drive for all the recordings.
I've searched google and have seen several setups that start off using LVM at the start of their myth setup, but no one that added a hard drive later without starting off using LVM partitioning.
Can any one explain how to add a hard drive, I would rather not have to start all over. Thanks.

Andrew Roazen wrote on Sunday, 27 May '07 - 1:41:40 AM -0400 [reply]
Part of the reason for the problems Rik reported is that you inadvertently omitted one of Hyams' more important steps: enabling admin access to the mythtv user in /etc/groups. This isn't optional, because without it sudo doesn't work for the mythtv user.

Add Comment
Name:

Comment:


Please do leave a comment as I love to get feedback from visitors.
  • All fields are required, but your real name is not required.
  • Plain URLs (once again, no HTML or BBcode) will change to clickable links after 72 hours.
  • Comments are of the opinion of their author, not myself, and are not endorsed by myself.
  • Spam will immediately call upon the wrath of the BanHammer.