Any clue on when this will be available or how to check?
EDIT: Looks like v35 is on rawhide (dev repo of next build of Fedora).
Regards, Patrick
v35 on Fedora (from rpmfusion)
Re: v35 on Fedora (from rpmfusion)
I updated to the Fedora 42 beta and v35 was available.
Trying to update 41 from 42/rawhide repos wasn't going to work.
Trying to update 41 from 42/rawhide repos wasn't going to work.
- jfabernathy
- Senior
- Posts: 623
- Joined: Wed Feb 18, 2015 2:37 pm
- Location: Raleigh, NC

Re: v35 on Fedora (from rpmfusion)
If you want to stay on Fedora 41 until F42 is official it's straight forward to build from source these days:
For dependencies and source:
Setup mythtv user. Below is how I do it:
Setup database:
Disabling the firewall makes things easier for mythtv
Setup the backend systemd service. Multiple ways to do this. One way is to create the file:
NOTE! the mythtv executables are in /usr/local/bin/
At the point you can complete the setup with the web setup app;
At first the web app will complain about the mythconverg not being setup. If you click on Test Database it will tell you how to set it up. Select the radio button for mariadb and follow the instructions. Then click save and go back to the top and restart the backend. Now complete the setup as normal
For dependencies and source:
Code: Select all
mkdir ~/build
cd ~/build
sudo dnf install git ansible
git clone https://github.com/mythtv/ansible.git
git clone https://github.com/mythtv/mythtv.git
cd ansible
./mythtv.yml --limit=localhost
cd ~/build/mythtv
git checkout fixes/35
sudo cmake --preset qt5
sudo cmake --build build-qt5Code: Select all
sudo groupadd --gid 1006 mythtv
sudo useradd -m --home-dir /home/mythtv --uid 1006 --gid mythtv --shell /bin/bash mythtv
sudo usermod -aG mythtv $USERCode: Select all
# mariadb-server should be installed
sudo systemctl enable --now mariadb
sudo mysql_secure_install #The instructions during the command prompt tell you what to enter.Code: Select all
sudo systemctl disable --now firewalldCode: Select all
/etc/systemd/system/mythtv-backend.serviceCode: Select all
[Unit]
Description=MythTV Backend
Documentation=https://www.mythtv.org/wiki/Mythbackend
After=mysql.service network.target
[Service]
User=mythtv
EnvironmentFile=-/etc/mythtv/additional.args
ExecStart=/usr/local/bin/mythbackend --quiet --syslog local7 $ADDITIONAL_ARGS
StartLimitBurst=10
StartLimitInterval=10m
Restart=on-failure
RestartSec=1
[Install]
WantedBy=multi-user.targetCode: Select all
sudo systemctl enable --now mythtv-backend.serviceCode: Select all
http://localhost:6544Re: v35 on Fedora (from rpmfusion)
What are the key differences in the setup process for MythTV on Fedora 41 versus Fedora 42 once it's officially released?