Fedora 33: Is It Safe?

For discussion of topics specific to MythTV on linux
Post Reply
bitspiel
Junior
Posts: 36
Joined: Sat Mar 15, 2014 8:23 am
United States of America

Fedora 33: Is It Safe?

Post by bitspiel »

(With a hat tip to Marathon Man.)

I build from scratch. Currently running on Fedora 31. But I am toying with the idea of moving to Fedora 33 (would be a fresh install not via upgrade/update). I have a lot of Dell Optiplex 3010 machines that are "functionally" identical so it is trivial for me to try a new OS version.

So, before I start, anyone have any caveats regarding Fedora 33?

Thanks in advance!
User avatar
bill6502
Developer
Posts: 2323
Joined: Fri Feb 07, 2014 5:28 pm
United States of America

Re: Fedora 33: Is It Safe?

Post by bill6502 »

I can only tell you that the MythTV Buildbots have F33 and it's compiling OK.

https://www.mythtv.org/wiki/Release_Notes_-_31 may be of value and there
are other Release Notes for earlier versions.
User avatar
hampton
Developer
Posts: 10
Joined: Wed Apr 22, 2020 3:54 pm
United States of America

Re: Fedora 33: Is It Safe?

Post by hampton »

My primary system is F33 and I have no problem building MythTV. The F33 buildbot is mine, and I also have a rawhide buildbot to catch build problems early.
bitspiel
Junior
Posts: 36
Joined: Sat Mar 15, 2014 8:23 am
United States of America

Re: Fedora 33: Is It Safe?

Post by bitspiel »

Well I finally got around to moving to Fedora 33 and the only thing worth mentioning was some tweaks to my service "profile." The changes rotated around the adoption of NetworkManager.service and the abandoning of network.service

Code: Select all

[Unit]
Description=MythTV Backend Service
After=NetworkManager.service mysqld.service
Wants=httpd.service

[Service]
User=mythtv
Environment=HOME=/home/mythtv
StandardOutput=null
PIDFile=/home/mythtv/mythtvbackend.pid
ExecStart=/usr/local/bin/mythbackend --daemon --logpath /home/mythtv/logs --loglevel debug --pidfile /home/mythtv/mythtvbackend.pid
Type=forking
ExecReload=/bin/kill -HUP $MAINPID
KillSignal=SIGTERM
Restart=always
RestartSec=15

[Install]
WantedBy=multi-user.target
The aforementioned code should reside at /usr/lib/systemd/system and I typically name the contained file as mythtvbackend.service and should be owned by root.
Post Reply