Difference between revisions of "User:Trogod/System0Up1810Mythtv"
From MythTV Official Wiki
(→Configure) |
|||
Line 86: | Line 86: | ||
themes tmp | themes tmp | ||
$ cp -pr .mythtv ~/. | $ cp -pr .mythtv ~/. | ||
+ | </pre> | ||
+ | |||
+ | for the purpose of testing my setup without damaging my existing recordings, I will not mount my 2TB storage disk. Instead, I'll just create the <code>/storage</code> directory locally: | ||
+ | <pre> | ||
+ | $ sudo mkdir /storage | ||
+ | $ sudo chmod a+rwx /storage | ||
</pre> | </pre> |
Revision as of 05:24, 25 January 2019
Installing MythTV for System 0 Upgrade to Ubuntu 18.10
January 2019
install Mythtv
for reference
$ sudo add-apt-repository ppa:mythbuntu/30.0 $ sudo apt-get update Hit:1 http://security.ubuntu.com/ubuntu cosmic-security InRelease Err:2 http://ppa.launchpad.net/mythbuntu/30.0/ubuntu cosmic InRelease 403 Forbidden [IP: 91.189.95.83 80] Hit:3 http://us.archive.ubuntu.com/ubuntu cosmic InRelease Hit:4 http://us.archive.ubuntu.com/ubuntu cosmic-updates InRelease Hit:5 http://us.archive.ubuntu.com/ubuntu cosmic-backports InRelease Reading package lists... Done E: Failed to fetch http://ppa.launchpad.net/mythbuntu/30.0/ubuntu/dists/cosmic/InRelease 403 Forbidden [IP: 91.189.95.83 80] E: The repository 'http://ppa.launchpad.net/mythbuntu/30.0/ubuntu cosmic InRelease' is not signed. N: Updating from such a repository can't be done securely, and is therefore disabled by default. N: See apt-secure(8) manpage for repository creation and user configuration details.
I tried editing /etc/apt/sources.list
$ diff sources.list-bak0 sources.list 38d37 < 57a57,58 > > deb [ allow-insecure=yes ] http://ppa.launchpad.net/mythbuntu/30.0/ubuntu cosmic InRelease
from https://launchpad.net/~mythbuntu/+archive/ubuntu/30.0 "This PPA does not contain any packages yet" UGH!!!
I restored sources.list
$ sudo add-apt-repository ppa:mythbuntu/30 $ sudo add-apt-repository --remove ppa:mythbuntu/30.0 $ sudo apt-get update Hit:1 http://ppa.launchpad.net/mythbuntu/30/ubuntu cosmic InRelease Get:2 http://security.ubuntu.com/ubuntu cosmic-security InRelease [88.7 kB] Hit:3 http://us.archive.ubuntu.com/ubuntu cosmic InRelease Get:4 http://us.archive.ubuntu.com/ubuntu cosmic-updates InRelease [88.7 kB] Get:5 http://us.archive.ubuntu.com/ubuntu cosmic-backports InRelease [74.6 kB] Fetched 252 kB in 1s (260 kB/s) Reading package lists... Done $ apt-cache policy mythtv mythtv: Installed: (none) Candidate: 2:30.0~master.201901180435.c62e273~ubuntu18.10.1 Version table: 2:30.0~master.201901180435.c62e273~ubuntu18.10.1 500 500 http://ppa.launchpad.net/mythbuntu/30/ubuntu cosmic/main amd64 Packages 500 http://ppa.launchpad.net/mythbuntu/30/ubuntu cosmic/main i386 Packages 2:30.0~master.20181118.26d8d51-0ubuntu0mythbuntu2 500 500 http://ppa.launchpad.net/mythbuntu/30/ubuntu cosmic/main amd64 Packages 500 http://ppa.launchpad.net/mythbuntu/30/ubuntu cosmic/main i386 Packages 2:29.1+fixes.20180414.329c235-0ubuntu3 500 500 http://us.archive.ubuntu.com/ubuntu cosmic/multiverse amd64 Packages 500 http://us.archive.ubuntu.com/ubuntu cosmic/multiverse i386 Packages
that looks like it worked
sudo apt-get install mythtv
a screen appeared titled "configuring mythtv-database" and asked "will other computers run MythTV?" I answered NO
Configure
from my old home directory:
$ ls -a .mythtv/ 3rdParty Cache-mythfilldatabase-myth-bob Cache-mythtv-setup-myth-bob config.xml lircrc MythGallery MythVideo RAOPKey.rsa themecache thumbcache backuprc Cache-mythfrontend-myth-bob channels HardwareProfile MythBrowser MythMusic pytmdb3.cache remotecache themes tmp $ cp -pr .mythtv ~/.
for the purpose of testing my setup without damaging my existing recordings, I will not mount my 2TB storage disk. Instead, I'll just create the /storage
directory locally:
$ sudo mkdir /storage $ sudo chmod a+rwx /storage