Difference between revisions of "User:Trogod/System0Up1810Needs"

From MythTV Official Wiki
Jump to: navigation, search
m (LIRC configure)
(LIRC configure)
Line 54: Line 54:
 
$ sudo mv lircd.conf-orig lircd.conf
 
$ sudo mv lircd.conf-orig lircd.conf
 
$ sudo service lircd restart
 
$ sudo service lircd restart
 +
</pre>
 +
 +
I wasn't seeing any output when I tried <pre>irw</pre> so I tried
 +
<pre>
 +
$ mode2 -d /dev/lirc0
 +
Using driver devinput on device /dev/lirc0
 +
Cannot initiate device /dev/lirc0
 +
</pre>
 +
maybe I need to remove the devinput conf file....
 +
<pre>
 +
$ cd /etc/lirc/lircd.conf.d/
 +
$ sudo mv devinput.lircd.conf devinput.lircd.conf-orig
 +
$ sudo service lircd restart
 +
</pre>
 +
 +
I cleaned up my conf files and separated the two remotes
 +
<pre>
 +
$ sudo mv previous.conf tivo.conf
 +
$ sudo cp tivo.conf atlas4.conf
 +
$ sudo vi tivo.conf
 +
$ sudo vi atlas4.conf
 
</pre>
 
</pre>
  

Revision as of 06:54, 29 January 2019

System 0 Upgrade to Ubuntu 18.10 


NOTES

  • may want to install mythbuntu-lirc-generator, see LIRC


ALSA

as of 24 January 2019

$ cat /proc/asound/version 
Advanced Linux Sound Architecture Driver Version k4.18.0-13-generic.
$ sudo apt-get upgrade alsa
The following packages were automatically installed and are no longer required:
  libncursesw5 libtinfo5
Use 'sudo apt autoremove' to remove them.
The following packages will be upgraded:
  irqbalance
1 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.

I haven't removed libncursesw5 nor libtinfo5, yet. I'll do sudo apt autoremove, later.

LIRC

$ sudo apt install lirc
The following additional packages will be installed:
  libftdi1-2 liblirc-client0 liblirc0 libusb-0.1-4
Suggested packages:
  lirc-compat-remotes lirc-drv-irman lirc-doc lirc-x setserial ir-keytable
Recommended packages:
  gir1.2-vte
The following NEW packages will be installed:
  libftdi1-2 liblirc-client0 liblirc0 libusb-0.1-4 lirc
0 upgraded, 5 newly installed, 0 to remove and 0 not upgraded.

LIRC configure

from my old home

$ cp -pr .lirc .lircrc ~/.

config files

  273  sudo cp -pr lircd.conf lircd.conf-orig
  274  sudo cp -pr lircmd.conf lircmd.conf-orig
$ sudo cp lircd.conf lircmd.conf /etc/lirc/.
$ sudo mv lircd.conf lircd.conf.d/previous.conf
$ sudo mv lircd.conf-orig lircd.conf
$ sudo service lircd restart
I wasn't seeing any output when I tried
irw
so I tried
$ mode2 -d /dev/lirc0
Using driver devinput on device /dev/lirc0
Cannot initiate device /dev/lirc0

maybe I need to remove the devinput conf file....

$ cd /etc/lirc/lircd.conf.d/
$ sudo mv devinput.lircd.conf devinput.lircd.conf-orig
$ sudo service lircd restart

I cleaned up my conf files and separated the two remotes

$ sudo mv previous.conf tivo.conf
$ sudo cp tivo.conf atlas4.conf
$ sudo vi tivo.conf 
$ sudo vi atlas4.conf 

development software

needed for HDHOMERUN software

$ sudo apt-get install make gcc autoconf automake
$ sudo apt-get install -y pkg-config

HDHOMERUN software

see

$ cd ~/hdhomerun/
$ wget http://download.silicondust.com/hdhomerun/libhdhomerun_20180817.tgz
$ wget http://download.silicondust.com/hdhomerun/hdhomerun_config_gui_20180817.tgz
$ tar xzf hdhomerun_config_gui_20180817.tgz 
$ tar xzf libhdhomerun_20180817.tgz 

I tried

$ cd hdhomerun_config_gui/
$ ./configure
configure: error: Package requirements (gtk+-2.0 >= 2.0.0) were not met:
No package 'gtk+-2.0' found

so then

$ cd hdhomerun_config_gui/
$ make
$ sudo make install
(ignoring request to make install)
$ which hdhomerun_config 
/usr/bin/hdhomerun_config
$ ls -Ftl /usr/bin/hdhomerun_config 
-rwxr-xr-x 1 root root 75848 Aug 21 20:39 /usr/bin/hdhomerun_config*

not sure why my build didn't install, however, the date on the existing one looks like it is the current version.