
mythtv
It seems that the default Mythtv installation does not tune the Danish Comx Dvb Channels.
if anyone have a channels.conf file with this data please post. im working on making one now

mythtv
It seems that the default Mythtv installation does not tune the Danish Comx Dvb Channels.
if anyone have a channels.conf file with this data please post. im working on making one now
Install update-manager-core if it is not already installed:
sudo apt-get install update-manager-core
Launch the upgrade tool:
sudo do-release-upgrade
While experimenting with mod_python, I ended up completely hosing my local Apache installed. I had the configuration files in a bad state, so I thought I would just drop all of /etc/apache2, remove Apache, and re-install it. But once that happened, /etc/apache2 wasn’t remade! When I tried to start or stop Apache, it spat back:
|
1
|
.: 44: Can’t open /etc/apache2/envvars
|
Oh right, thanks… So here’s what I did to erase Apache’s memory of my mistakes:
|
1
2 |
sudo dpkg –get-selections | grep apache
sudo apt-get remove –purge apache2 apache2-mpm-worker apache2-threaded-dev apache2-utils apache2.2-common libapache2-mod-python libapache2-mod-python-doc libapache2-mod-wsgi |
|
1
|
sudo apt-get install apache2 libapache2-mod-python libapache2-mod-wsgi libapache2-mod-python-doc libapache2-mod-php5
|
After this, all the configuration files were back, and I had a default Apache install.
Thanks to author http://www.samuelhuckins.com/