Dear visitor, welcome to VDR Portal. If this is your first visit here, please read the Help. It explains in detail how this page works. To use all features of this page, you should consider registering. Please use the registration form, to register here or read more information about the registration process. If you are already registered, please login here.
|
|
Source code |
1 |
apt-get install vdr-plugin-mcli vdr-addon-mcli-tool |
|
|
Source code |
1 |
apt-get install vlan |
|
|
Source code |
1 |
modprobe 8021q |
|
|
Source code |
1 |
echo 8021q >> /etc/modules |
|
|
Source code |
1 |
vconfig add eth0 2 |
|
|
Source code |
1 2 3 4 5 |
auto eth0.2
iface eth0.2 inet static
address 10.0.0.1
netmask 255.255.255.0
vlan_raw_device eth0
|
|
|
Source code |
1 |
--ifname eth0.2 |
before you reboot your system, place a channels.conf in your system for your DVB-S/S2/T or C devices.This post has been edited 1 times, last edit by "kris" (Nov 13th 2010, 1:57pm)
HI,
Its very easy.
![]()
Source code
1 apt-get install vdr-plugin-mcli vdr-addon-mcli-tool
VLAN is more complicated...
You need the vlan package
![]()
Source code
1 apt-get install vlan
then load the module
![]()
Source code
1 modprobe 8021q
AFTER THAT, take the module in /etc/modules to load this automatically
![]()
Source code
1 echo 8021q >> /etc/modules
We make a new virtually device named eth0.2
![]()
Source code
1 vconfig add eth0 2
(without a dot between eth0 and 2)
we edit the file /etc/network/interfaces (at the end of the line)
If you have more than one client, you must use an another value for "address" (for example: 10.0.0.2 or 10.0.0.3 etc)
![]()
Source code
1 2 3 4 5auto eth0.2 iface eth0.2 inet static address 10.0.0.1 netmask 255.255.255.0 vlan_raw_device eth0
and last but not least, we tell the mcli plugin, the vlan device
/etc/vdr/plugins/plugin.mcli.conf. At the end of the line insert
![]()
Source code
1 --ifname eth0.2
Easy! huh?before you reboot your system, place a channels.conf in your system for your DVB-S/S2/T or C devices.
best regards
Kris
P.S. i did a new clean-install of yavdr 0.3.0a with netceiver and vlan yesterday and it works fine....
This post has been edited 1 times, last edit by "markrankin" (Apr 20th 2011, 7:21pm)




The eth0 static is configured with an IP for my LAN.
Quoted
auto
iface lo inet loopback
auto eth0
iface eth0 inet static
address 172.16.0.2
netmask 255.255.0.0
network 172.16.0.0
gateway 172.16.0.1
auto eth0.2
iface eth0.2 inet static
address 10.0.0.1
netmask 255.255.255.0
vlan_raw_device eth0
Quoted
According to the pics the SLM2008 is setted up for two VLANS. ID=1 everything is interconnected except NETCEIVER on PORT2. ID=2 only NETCEIVER and ION BOARD (yaVDR) are connected. I think this config is ok.
Hello Again Kris:Hi,
Quoted
According to the pics the SLM2008 is setted up for two VLANS. ID=1 everything is interconnected except NETCEIVER on PORT2. ID=2 only NETCEIVER and ION BOARD (yaVDR) are connected. I think this config is ok.
yes, it´s look good. The Netceiver on Port 2 and VLAN=ID 2 interact only with the ION-Board.
your settings in the /etc/network/interfaces looks great too.
What´s your Problem then?
Regards
Kris

Apparently the module wasn't loaded so I've edited the file:
Quoted
root@avantgarde:/usr/src/netceiver_20081113# ls -la
total 2608
drwxrwxr-x 2 27480 users 4096 2011-05-03 18:22 .
drwxrwsr-x 8 root src 4096 2011-05-03 18:21 ..
-rwxrwxr-x 1 27480 users 1636704 2008-11-13 22:01 mcli
-rwxrwxr-x 1 27480 users 505604 2008-11-13 22:01 netcvdiag-static
-rwxrwxr-x 1 27480 users 514436 2008-11-13 22:01 netcvupdate-static
root@avantgarde:/usr/src/netceiver_20081113# ./mcli --ca-enable 3 --ifname eth0.2
DVB - TV Client Version 0.99.23 (Oct 11 2008 20:41:3(c) BayCom GmbH
Cannot Open /dev/dvblo0
Cannot Open /dev/dvblo1
Cannot Open /dev/dvblo2
Cannot Open /dev/dvblo3
Cannot Open /dev/dvblo4
Cannot Open /dev/dvblo5
Cannot Open /dev/dvblo6
Cannot Open /dev/dvblo7
Device Type Limits: DVB-S: 8 DVB-C: 8 DVB-T: 8 ATSC: 8 DVB-S2: 8
Starting ci thread for netceiver UUID fe80::208:54ff:fe55:15f5
Starting thread for tuner UUID fe80::208:54ff:fe55:15f5:0200 [Philips TDA10046H DVB-T] at device 0 with type 2
No such file or directory (2): Cannot open /dev/dvblo0 - dvbloop driver loaded?
And added the line dvbloop to it. Now:
Quoted
root@avantgarde:/usr/src/netceiver_20081113# nano /etc/modules
Adapters created so now we could put the plugins files again in /usr/lib/vdr/plugins/ and test the connection.
Quoted
root@avantgarde:/usr/src/netceiver_20081113# ./mcli --ca-enable 3 --ifname eth0.2
DVB - TV Client Version 0.99.23 (Oct 11 2008 20:41:3(c) BayCom GmbH
Device Type Limits: DVB-S: 8 DVB-C: 8 DVB-T: 8 ATSC: 8 DVB-S2: 8
Starting ci thread for netceiver UUID fe80::208:54ff:fe55:15f5
Starting thread for tuner UUID fe80::208:54ff:fe55:15f5:0200 [Philips TDA10046H DVB-T] at device 0 with type 2
created dvb adapter: 0
Starting thread for tuner UUID fe80::208:54ff:fe55:15f5:0402 [Conexant CX24116 DVB-S2] at device 2 with type 4
created dvb adapter: 1
^Croot@avantgarde:/usr/src/netceiver_20081113#
It means the vdr.plugin.mcli connect to the NETCEIVER. Really?.
Quoted
May 3 19:13:41 avantgarde vdr: [1759] mcli: Add Tuner: Philips TDA10046H DVB-T [fe80::208:54ff:fe55:15f5:0200], Type 2 @ 1
May 3 19:13:41 avantgarde vdr: [1759] mcli: Add Tuner: Conexant CX24116 DVB-S2 [fe80::208:54ff:fe55:15f5:0402], Type 4 @ 1
|
|
Source code |
1 |
vdr 27126 1 7 18:29 ? 00:06:29 /usr/bin/vdr -v /freigaben/video0 -c /var/lib/vdr -L /usr/lib/vdr/plugins -r /usr/lib/vdr/vdr-recordingaction -s /usr/lib/vdr/vdr-shutdown.wrapper -E /var/cache/vdr/epg.data -u vdr -g /tmp --port 6419 -w 60 -Pmcli --ifname eth0.2 |
, if you see that, you can use "netcviag -a". minimum one tuner must have a "LOCK"
Quoted
-Pmcli --ifname eth0.2
Quoted
May 3 19:13:41 avantgarde vdr: [1759] mcli: Add Tuner: Philips TDA10046H DVB-T [fe80::208:54ff:fe55:15f5:0200], Type 2 @ 1
Do you think the "cam-plugin" is causing the "no-works"?. I think I need a patched version but..... I can't find it. So I'll install yaVDR 0.3.0a again and try to make it works without "cam-plugin" compile. But.... If we don't need the dvbloop-driver, why loading it before VDR load the plugin it appeared to connect?.
when you use the Mcli-PLUGIN you don´t need the dvbloop-driver and the mcli-damon. Unload the "bad-cam-Plugin" while testing (do you know, that you need a "special version" for the netceiver?)
I think in yaVDR 0.3.0a the driver is loaded into the kernel so we can use mcli plugin in VDR to connect to the NETCEIVER.
Quoted
root@avantgarde:/usr/src/netceiver_20081113# ls -la
total 2608
drwxrwxr-x 2 27480 users 4096 2011-05-03 18:22 .
drwxrwsr-x 8 root src 4096 2011-05-03 18:21 ..
-rwxrwxr-x 1 27480 users 1636704 2008-11-13 22:01 mcli
-rwxrwxr-x 1 27480 users 505604 2008-11-13 22:01 netcvdiag-static
-rwxrwxr-x 1 27480 users 514436 2008-11-13 22:01 netcvupdate-static
root@avantgarde:/usr/src/netceiver_20081113# ./mcli --ca-enable 3 --ifname eth0.2
DVB - TV Client Version 0.99.23 (Oct 11 2008 20:41:3(c) BayCom GmbH
Cannot Open /dev/dvblo0
Cannot Open /dev/dvblo1
Cannot Open /dev/dvblo2
Cannot Open /dev/dvblo3
Cannot Open /dev/dvblo4
Cannot Open /dev/dvblo5
Cannot Open /dev/dvblo6
Cannot Open /dev/dvblo7
Device Type Limits: DVB-S: 8 DVB-C: 8 DVB-T: 8 ATSC: 8 DVB-S2: 8
Starting ci thread for netceiver UUID fe80::208:54ff:fe55:15f5
Starting thread for tuner UUID fe80::208:54ff:fe55:15f5:0200 [Philips TDA10046H DVB-T] at device 0 with type 2
No such file or directory (2): Cannot open /dev/dvblo0 - dvbloop driver loaded?
Apparently the module wasn't loaded so I've edited the file:And added the line dvbloop to it. Now:
Quoted
Quoted
root@avantgarde:/usr/src/netceiver_20081113# nano /etc/modules
Quoted
Quoted
root@avantgarde:/usr/src/netceiver_20081113# ./mcli --ca-enable 3 --ifname eth0.2
DVB - TV Client Version 0.99.23 (Oct 11 2008 20:41:3(c) BayCom GmbH
Device Type Limits: DVB-S: 8 DVB-C: 8 DVB-T: 8 ATSC: 8 DVB-S2: 8
Starting ci thread for netceiver UUID fe80::208:54ff:fe55:15f5
Starting thread for tuner UUID fe80::208:54ff:fe55:15f5:0200 [Philips TDA10046H DVB-T] at device 0 with type 2
created dvb adapter: 0
Starting thread for tuner UUID fe80::208:54ff:fe55:15f5:0402 [Conexant CX24116 DVB-S2] at device 2 with type 4
created dvb adapter: 1
^Croot@avantgarde:/usr/src/netceiver_20081113#
Thank you again kris for your help.
Quoted
if you see that, you can use "netcviag -a". minimum one tuner must have a "LOCK"
Still testing.
Quoted
root@avantgarde:/usr/local/src/netceiver_20081113# ls -la
total 1008
drwxrwxr-x 2 27480 users 4096 2011-05-04 16:17 .
drwxr-xr-x 3 root root 4096 2011-05-04 16:10 ..
-rwxrwxr-x 1 27480 users 505604 2008-11-13 22:01 netcvdiag
-rwxrwxr-x 1 27480 users 514436 2008-11-13 22:01 netcvupdate-static
root@avantgarde:/usr/local/src/netceiver_20081113# ./netcvdiag -a
Count: 1
NetCeiver 0:
UUID <fe80::208:54ff:fe55:15f5>, ALIVE, tuners 2
OS <2.4.32-uc0>, App <0.99.23>, FW <AVR0033/FPGA8AV>, HW <0053>
Serial <33a00000021a86ba>, Vendor <BayCom GmbH>, state 0
SystemUptime 71582, ProcessUptime 71563
Tuner 0: <Philips TDA10046H DVB-T>, SatList: <>, Preference 0
Tuner 1: <Conexant CX24116 DVB-S2>, SatList: <Multiswitch 1>, Preference 0
NetCeiver 0: SatList <Multiswitch 1>, entries 3
Satname: <S19.2E>, Position <19.2E>, entries 4
Entry 0: Polarisation V, Min 10700, Max 11700, LOF 9750 MINI_A TONE_OFF VOLTAGE_13 DiSEqC <E0 10 38 F0>
Entry 1: Polarisation V, Min 11701, Max 13000, LOF 10600 MINI_A TONE_ON VOLTAGE_13 DiSEqC <E0 10 38 F1>
Entry 2: Polarisation H, Min 10700, Max 11700, LOF 9750 MINI_A TONE_OFF VOLTAGE_18 DiSEqC <E0 10 38 F2>
Entry 3: Polarisation H, Min 11701, Max 13000, LOF 10600 MINI_A TONE_ON VOLTAGE_18 DiSEqC <E0 10 38 F3>
Satname: <S13.0E>, Position <13.0E>, entries 4
Entry 0: Polarisation V, Min 10700, Max 11700, LOF 9750 MINI_B TONE_OFF VOLTAGE_13 DiSEqC <E0 10 38 F4>
Entry 1: Polarisation V, Min 11701, Max 13000, LOF 10600 MINI_B TONE_ON VOLTAGE_13 DiSEqC <E0 10 38 F5>
Entry 2: Polarisation H, Min 10700, Max 11700, LOF 9750 MINI_B TONE_OFF VOLTAGE_18 DiSEqC <E0 10 38 F6>
Entry 3: Polarisation H, Min 11701, Max 13000, LOF 10600 MINI_B TONE_ON VOLTAGE_18 DiSEqC <E0 10 38 F7>
Satname: <S28.2E>, Position <28.2E>, entries 4
Entry 0: Polarisation V, Min 10700, Max 11700, LOF 9750 MINI_A TONE_OFF VOLTAGE_13 DiSEqC <E0 10 38 F8>
Entry 1: Polarisation V, Min 11701, Max 13000, LOF 10600 MINI_A TONE_ON VOLTAGE_13 DiSEqC <E0 10 38 F9>
Entry 2: Polarisation H, Min 10700, Max 11700, LOF 9750 MINI_A TONE_OFF VOLTAGE_18 DiSEqC <E0 10 38 FA>
Entry 3: Polarisation H, Min 11701, Max 13000, LOF 10600 MINI_A TONE_ON VOLTAGE_18 DiSEqC <E0 10 38 FB>
UUID <fe80::208:54ff:fe55:15f5>:
slot 0.0, type DVB-T, used: 0
NO LOCK, frequency 0Hz (0.0kHz), position <180.0W>
strength 0000, snr 0000, ber deaddead, unc deaddead
NIMCurrent 0
RotorStatus 0, RotorDiff 0.0
UUID <fe80::208:54ff:fe55:15f5>:
slot 1.0, type DVB-S2, used: 0
NO LOCK, frequency 0kHz (0.0MHz), position <180.0W>
strength 0000, snr 0000, ber deaddead, unc deaddead
NIMCurrent 0
RotorStatus 0, RotorDiff 0.0
root@avantgarde:/usr/local/src/netceiver_20081113#
Quoted
I think I need a patched version but..... I can't find it
Quoted
I can't find it. So I'll install yaVDR 0.3.0a again and try to make it works without "cam-plugin" compile.
|
|
Source code |
1 |
apt-get install vdr-plugin-mcli vdr-addon-mcli-tool mcli-dev vlan |
. I use to install NETCEIVER in Ubuntu loading dvbloop and executing mcli daemon, having no issues for scaning channels and receive signal from the tunner.
Quoted
apt-get install vdr-plugin-mcli vdr-addon-mcli-tool mcli-dev
Fourth in /etc/network/interfaces
Quoted
--ifname eth0.2
VLAN ok, mcli plugin installed, config file modified and channels inf channels.conf. Let's go to check /var/log/user.log:
Quoted
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
auto eth0
iface eth0 inet static
address 172.16.0.2
netmask 255.255.0.0
network 172.16.0.0
gateway 172.16.0.1
# Config VLAN=2
auto eth0.2
iface eth0.2 inet static
address 10.0.0.2
netmask 255.255.255.0
vlan_raw_device eth0
Quoted
May 6 09:46:01 avantgarde dvbmon: Saving number of devices (0) after boot
May 6 09:46:01 avantgarde dvbmon: vdr started by udev allready
May 6 09:46:01 avantgarde vdr: [1465] cTimeMs: using monotonic clock (resolution is 1 ns)
May 6 09:46:01 avantgarde vdr: [1448] cTimeMs: using monotonic clock (resolution is 1 ns)
May 6 09:46:01 avantgarde vdr: [1448] VDR version 1.7.16 started
May 6 09:46:01 avantgarde vdr: [1448] switched to user 'vdr'
May 6 09:46:01 avantgarde vdr: [1448] codeset is 'UTF-8' - known
May 6 09:46:01 avantgarde vdr: [1448] found 27 locales in /usr/share/locale
May 6 09:46:01 avantgarde vdr: [1448] no locale for language code 'por'
May 6 09:46:01 avantgarde vdr: [1448] loading plugin: /usr/lib/vdr/plugins/libvdr-mcli.so.1.7.16
May 6 09:46:01 avantgarde vdr: [1448] loading plugin: /usr/lib/vdr/plugins/libvdr-wirbelscan.so.1.7.16
May 6 09:46:01 avantgarde vdr: [1448] loading plugin: /usr/lib/vdr/plugins/libvdr-text2skin.so.1.7.16
May 6 09:46:01 avantgarde vdr: [1448] loading plugin: /usr/lib/vdr/plugins/libvdr-extrecmenu.so.1.7.16
May 6 09:46:01 avantgarde vdr: [1448] loading plugin: /usr/lib/vdr/plugins/libvdr-streamdev-server.so.1.7.16
May 6 09:46:01 avantgarde vdr: [1448] loading plugin: /usr/lib/vdr/plugins/libvdr-channellists.so.1.7.16
May 6 09:46:01 avantgarde vdr: [1448] loading plugin: /usr/lib/vdr/plugins/libvdr-femon.so.1.7.16
May 6 09:46:01 avantgarde vdr: [1448] loading plugin: /usr/lib/vdr/plugins/libvdr-epgsearchonly.so.1.7.16
May 6 09:46:01 avantgarde vdr: [1448] loading plugin: /usr/lib/vdr/plugins/libvdr-menuorg.so.1.7.16
May 6 09:46:01 avantgarde vdr: [1448] loading plugin: /usr/lib/vdr/plugins/libvdr-xineliboutput.so.1.7.16
May 6 09:46:01 avantgarde vdr: [1448] [xine..put] Listening on address '127.0.0.1' port 37890
May 6 09:46:01 avantgarde vdr: [1448] loading plugin: /usr/lib/vdr/plugins/libvdr-vnsiserver.so.1.7.16
May 6 09:46:01 avantgarde vdr: [1448] loading plugin: /usr/lib/vdr/plugins/libvdr-conflictcheckonly.so.1.7.16
May 6 09:46:01 avantgarde vdr: [1448] loading plugin: /usr/lib/vdr/plugins/libvdr-quickepgsearch.so.1.7.16
May 6 09:46:01 avantgarde vdr: [1448] loading plugin: /usr/lib/vdr/plugins/libvdr-epgsearch.so.1.7.16
May 6 09:46:01 avantgarde vdr: [1448] loading plugin: /usr/lib/vdr/plugins/libvdr-live.so.1.7.16
May 6 09:46:01 avantgarde vdr: [1448] ERROR: libtntnet.so.9: no se puede abrir el fichero del objeto compartido: No existe el fichero o el directorio
May 6 09:46:01 avantgarde vdr: [1448] deleting plugin: epgsearch
May 6 09:46:01 avantgarde vdr: [1448] deleting plugin: quickepgsearch
May 6 09:46:01 avantgarde vdr: [1448] deleting plugin: conflictcheckonly
May 6 09:46:01 avantgarde vdr: [1448] deleting plugin: vnsiserver
May 6 09:46:01 avantgarde vdr: [1448] deleting plugin: xineliboutput
May 6 09:46:01 avantgarde vdr: [1448] deleting plugin: menuorg
May 6 09:46:01 avantgarde vdr: [1448] deleting plugin: epgsearchonly
May 6 09:46:01 avantgarde vdr: [1448] deleting plugin: femon
May 6 09:46:01 avantgarde vdr: [1448] deleting plugin: channellists
May 6 09:46:01 avantgarde vdr: [1448] deleting plugin: streamdev-server
May 6 09:46:01 avantgarde vdr: [1448] deleting plugin: extrecmenu
May 6 09:46:01 avantgarde vdr: [1448] deleting plugin: text2skin
May 6 09:46:01 avantgarde vdr: [1448] deleting plugin: wirbelscan
May 6 09:46:01 avantgarde vdr: [1448] deleting plugin: mcli
May 6 09:46:01 avantgarde vdr: [1448] max. latency time 0 seconds
May 6 09:46:01 avantgarde vdr: [1448] exiting, exit code 2
Not works. ERROR: libtntnet.so.9: can't open this file.That's the reason I want to compile the plugin instead of install via apt-get install. I think automatic install erase something about tntnet.
|
|
Source code |
1 2 |
sudo apt-get update sudo apt-get dist-upgrade |
/var/log/user.log
Quoted
sudo apt-get dist-upgrade
Quoted
May 6 12:48:18 avantgarde vdr: [1169] cTimeMs: using monotonic clock (resolution is 1 ns)
May 6 12:48:19 avantgarde vdr: [1147] cTimeMs: using monotonic clock (resolution is 1 ns)
May 6 12:48:19 avantgarde vdr: [1147] VDR version 1.7.16 started
May 6 12:48:19 avantgarde vdr: [1147] switched to user 'vdr'
May 6 12:48:19 avantgarde vdr: [1147] codeset is 'UTF-8' - known
May 6 12:48:19 avantgarde vdr: [1147] found 27 locales in /usr/share/locale
May 6 12:48:19 avantgarde vdr: [1147] no locale for language code 'por'
May 6 12:48:19 avantgarde vdr: [1147] loading plugin: /usr/lib/vdr/plugins/libvdr-mcli.so.1.7.16
May 6 12:48:19 avantgarde vdr: [1147] loading plugin: /usr/lib/vdr/plugins/libvdr-wirbelscan.so.1.7.16
May 6 12:48:19 avantgarde vdr: [1147] loading plugin: /usr/lib/vdr/plugins/libvdr-text2skin.so.1.7.16
May 6 12:48:19 avantgarde vdr: [1147] loading plugin: /usr/lib/vdr/plugins/libvdr-extrecmenu.so.1.7.16
May 6 12:48:19 avantgarde vdr: [1147] loading plugin: /usr/lib/vdr/plugins/libvdr-streamdev-server.so.1.7.16
May 6 12:48:19 avantgarde vdr: [1147] loading plugin: /usr/lib/vdr/plugins/libvdr-channellists.so.1.7.16
May 6 12:48:19 avantgarde vdr: [1147] loading plugin: /usr/lib/vdr/plugins/libvdr-femon.so.1.7.16
May 6 12:48:19 avantgarde vdr: [1147] loading plugin: /usr/lib/vdr/plugins/libvdr-epgsearchonly.so.1.7.16
May 6 12:48:19 avantgarde vdr: [1147] loading plugin: /usr/lib/vdr/plugins/libvdr-menuorg.so.1.7.16
May 6 12:48:19 avantgarde vdr: [1147] loading plugin: /usr/lib/vdr/plugins/libvdr-xineliboutput.so.1.7.16
May 6 12:48:19 avantgarde vdr: [1147] [xine..put] Listening on address '127.0.0.1' port 37890
May 6 12:48:19 avantgarde vdr: [1147] loading plugin: /usr/lib/vdr/plugins/libvdr-vnsiserver.so.1.7.16
May 6 12:48:19 avantgarde vdr: [1147] loading plugin: /usr/lib/vdr/plugins/libvdr-conflictcheckonly.so.1.7.16
May 6 12:48:19 avantgarde vdr: [1147] loading plugin: /usr/lib/vdr/plugins/libvdr-quickepgsearch.so.1.7.16
May 6 12:48:19 avantgarde vdr: [1147] loading plugin: /usr/lib/vdr/plugins/libvdr-epgsearch.so.1.7.16
May 6 12:48:19 avantgarde vdr: [1147] loading plugin: /usr/lib/vdr/plugins/libvdr-live.so.1.7.16
May 6 12:48:19 avantgarde vdr: [1147] [live] INFO: validating server ip '0.0.0.0'
May 6 12:48:19 avantgarde vdr: [1147] loading /var/lib/vdr/setup.conf
May 6 12:48:19 avantgarde vdr: [1147] loading /var/lib/vdr/sources.conf
May 6 12:48:19 avantgarde vdr: [1147] loading /var/lib/vdr/diseqc.conf
May 6 12:48:19 avantgarde vdr: [1147] loading /var/lib/vdr/channels.conf
May 6 12:48:19 avantgarde vdr: [1147] loading /var/lib/vdr/timers.conf
May 6 12:48:19 avantgarde vdr: [1147] loading /var/lib/vdr/commands.conf
May 6 12:48:19 avantgarde vdr: [1147] loading /var/lib/vdr/reccmds.conf
May 6 12:48:19 avantgarde vdr: [1147] loading /var/lib/vdr/svdrphosts.conf
May 6 12:48:19 avantgarde vdr: [1147] loading /var/lib/vdr/remote.conf
May 6 12:48:19 avantgarde vdr: [1147] loading /var/lib/vdr/keymacros.conf
May 6 12:48:19 avantgarde vdr: [1302] video directory scanner thread started (pid=1147, tid=1302)
May 6 12:48:19 avantgarde vdr: [1147] reading EPG data from /var/cache/vdr/epg.data
May 6 12:48:19 avantgarde vdr: [1302] video directory scanner thread ended (pid=1147, tid=1302)
May 6 12:48:19 avantgarde vdr: [1147] registered source parameters for 'A - ATSC'
May 6 12:48:19 avantgarde vdr: [1147] registered source parameters for 'C - DVB-C'
May 6 12:48:19 avantgarde vdr: [1147] registered source parameters for 'S - DVB-S'
May 6 12:48:19 avantgarde vdr: [1147] registered source parameters for 'T - DVB-T'
May 6 12:48:19 avantgarde vdr: [1147] no DVB device found
May 6 12:48:19 avantgarde vdr: [1147] initializing plugin: mcli (0.9.1): NetCeiver Client Application
May 6 12:48:19 avantgarde vdr: [1301] video directory scanner thread started (pid=1147, tid=1301)
May 6 12:48:19 avantgarde vdr: [1301] video directory scanner thread ended (pid=1147, tid=1301)
May 6 12:48:19 avantgarde vdr: [1147] initializing plugin: wirbelscan (0.0.7-pre01): DVB and pvrinput channel scan for VDR
May 6 12:48:19 avantgarde vdr: [1147] initializing plugin: text2skin (1.3.1): Loader for text-based skins
May 6 12:48:19 avantgarde vdr: [1147] initializing plugin: extrecmenu (1.2.1pre): Menú extendido de grabaciones
May 6 12:48:19 avantgarde vdr: [1147] initializing plugin: streamdev-server (0.5.1-git): Servidor de transmisiones del VDR
May 6 12:48:19 avantgarde vdr: [1147] initializing plugin: channellists (0.0.4): Manage your channellists
May 6 12:48:19 avantgarde vdr: [1147] initializing plugin: femon (1.7.9): Monitorización de la señal DVB
May 6 12:48:19 avantgarde vdr: [1147] initializing plugin: epgsearchonly (0.0.1): Acceso directo al menú de búsquedas en EPG
May 6 12:48:19 avantgarde vdr: [1147] initializing plugin: menuorg (0.4.4): Reorganizes the main menu
May 6 12:48:19 avantgarde vdr: [1147] loading menuorg config file from /var/lib/vdr/plugins/menuorg.xml
May 6 12:48:19 avantgarde vdr: [1147] initializing plugin: xineliboutput (1.0.90-cvs): X11/xine-lib output plugin
May 6 12:48:19 avantgarde vdr: [1147] new device number 9
May 6 12:48:19 avantgarde vdr: [1147] [xine..put] cTimePts: clock_gettime(CLOCK_MONOTONIC): clock resolution 0 us
May 6 12:48:19 avantgarde vdr: [1147] [xine..put] cTimePts: using monotonic clock
May 6 12:48:19 avantgarde vdr: [1147] [xine..put] RTP SSRC: 0x4e8c6be3
May 6 12:48:19 avantgarde vdr: [1147] initializing plugin: vnsiserver (0.0.1): VDR-Network-Streaming-Interface (VNSI) Server
May 6 12:48:19 avantgarde vdr: [1147] initializing plugin: conflictcheckonly (0.0.1): Acceso directo al menú de conflictos EPGSearch
May 6 12:48:19 avantgarde vdr: [1147] initializing plugin: quickepgsearch (0.0.1): Búsqueda rápida de emisiones
May 6 12:48:19 avantgarde vdr: [1147] initializing plugin: epgsearch (0.9.25.beta21): Buscar repeticiones en la EPG
May 6 12:48:19 avantgarde vdr: [1147] initializing plugin: live (0.2.0): Entorno interactivo de Live VDR
May 6 12:48:19 avantgarde vdr: [1147] setting primary device to 1
May 6 12:48:19 avantgarde vdr: [1147] assuming manual start of VDR
May 6 12:48:19 avantgarde vdr: [1147] SVDRP listening on port 6419
May 6 12:48:19 avantgarde vdr: [1147] skin "anthra_1920_FS" not available - using "classic" instead
May 6 12:48:19 avantgarde vdr: [1147] starting plugin: mcli
May 6 12:48:19 avantgarde vdr: [1147] mcli v0.9.1 started
May 6 12:48:19 avantgarde vdr: [1147] starting plugin: wirbelscan
May 6 12:48:19 avantgarde vdr: [1147] starting plugin: text2skin
May 6 12:48:19 avantgarde vdr: [1311] [xine..put] Have CAP_SYS_NICE capability
May 6 12:48:19 avantgarde vdr: [1147] text2skin: loading /var/lib/vdr/plugins/text2skin/PearlHD/PearlHD.colors
May 6 12:48:19 avantgarde vdr: [1147] parsing /var/lib/vdr/plugins/text2skin/PearlHD/PearlHD.skin
May 6 12:48:19 avantgarde vdr: [1147] text2skin: loading /var/lib/vdr/plugins/text2skin/anthra_1280_FS/anthra_1280_FS.colors
May 6 12:48:19 avantgarde vdr: [1147] parsing /var/lib/vdr/plugins/text2skin/anthra_1280_FS/anthra_1280_FS.skin
May 6 12:48:19 avantgarde vdr: [1147] text2skin: loading /var/lib/vdr/plugins/text2skin/anthra_1920_OS/anthra_1920_OS.colors
May 6 12:48:19 avantgarde vdr: [1147] parsing /var/lib/vdr/plugins/text2skin/anthra_1920_OS/anthra_1920_OS.skin
May 6 12:48:19 avantgarde vdr: [1147] text2skin: loading /var/lib/vdr/plugins/text2skin/anthra_1280_OS/anthra_1280_OS.colors
May 6 12:48:19 avantgarde vdr: [1147] parsing /var/lib/vdr/plugins/text2skin/anthra_1280_OS/anthra_1280_OS.skin
May 6 12:48:19 avantgarde vdr: [1147] text2skin: loading /var/lib/vdr/plugins/text2skin/anthra_1920_FS/anthra_1920_FS.colors
May 6 12:48:19 avantgarde vdr: [1147] parsing /var/lib/vdr/plugins/text2skin/anthra_1920_FS/anthra_1920_FS.skin
May 6 12:48:19 avantgarde vdr: [1147] starting plugin: extrecmenu
May 6 12:48:19 avantgarde vdr: [1372] extrecmenu worker thread thread started (pid=1147, tid=1372)
May 6 12:48:19 avantgarde vdr: [1147] starting plugin: streamdev-server
May 6 12:48:19 avantgarde vdr: [1147] loading /var/lib/vdr/plugins/streamdev-server/streamdevhosts.conf
May 6 12:48:19 avantgarde vdr: [1147] starting plugin: channellists
May 6 12:48:19 avantgarde vdr: [1373] streamdev server thread started (pid=1147, tid=1373)
May 6 12:48:19 avantgarde vdr: [1147] starting plugin: femon
May 6 12:48:19 avantgarde vdr: [1147] starting plugin: epgsearchonly
May 6 12:48:19 avantgarde vdr: [1373] Streamdev: Listening (VTP) on port 2004
May 6 12:48:19 avantgarde vdr: [1147] starting plugin: menuorg
May 6 12:48:19 avantgarde vdr: [1147] starting plugin: xineliboutput
May 6 12:48:19 avantgarde vdr: [1373] Streamdev: Listening (HTTP) on port 3000
May 6 12:48:19 avantgarde vdr: [1374] Remote decoder/display server (cXinelibServer) thread started (pid=1147, tid=1374)
May 6 12:48:19 avantgarde vdr: [1374] [xine..put] Have CAP_SYS_NICE capability
May 6 12:48:19 avantgarde vdr: [1374] [xine..put] cXinelibServer priority set successful SCHED_RR 2 [1,99]
May 6 12:48:19 avantgarde vdr: [1374] [xine..put] Binding server to 127.0.0.1:37890
May 6 12:48:19 avantgarde vdr: [1374] [xine..put] Listening on port 37890
May 6 12:48:19 avantgarde vdr: [1374] [xine..put] Listening for UDP broadcasts on port 37890
May 6 12:48:19 avantgarde vdr: [1374] [discovery] BROADCAST: VDR xineliboutput DISCOVERY 1.0#015#012Server port: 37890#015#012Server address: 127.0.0.1#015#012Server version: xin$
May 6 12:48:19 avantgarde vdr: [1374] [xine..put] Client 0 connected: 127.0.0.1:52464
May 6 12:48:19 avantgarde vdr: [1374] loading /var/lib/vdr/plugins/xineliboutput/allowed_hosts.conf
May 6 12:48:19 avantgarde vdr: [1374] [xine..put] cxSocket: setsockopt(SO_SNDBUF): got 262142 bytes
May 6 12:48:19 avantgarde vdr: [1374] [xine..put] Client connection 0 closed
May 6 12:48:19 avantgarde vdr: [1374] [xine..put] Closing connection 0
May 6 12:48:19 avantgarde vdr: [1147] [xine..put] cXinelibDevice:tartDevice(): Device started
May 6 12:48:19 avantgarde vdr: [1147] starting plugin: vnsiserver
May 6 12:48:19 avantgarde vdr: [1147] VNSI: VNSI Server started
May 6 12:48:19 avantgarde vdr: [1392] VDR VNSI Server thread started (pid=1147, tid=1392)
May 6 12:48:19 avantgarde vdr: [1147] VNSI: Channel streaming timeout: 10 seconds
May 6 12:48:19 avantgarde vdr: [1147] starting plugin: conflictcheckonly
May 6 12:48:19 avantgarde vdr: [1147] starting plugin: quickepgsearch
May 6 12:48:19 avantgarde vdr: [1147] starting plugin: epgsearch
May 6 12:48:19 avantgarde vdr: [1147] loading /var/lib/vdr/plugins/epgsearch/epgsearchcats.conf
May 6 12:48:19 avantgarde vdr: [1147] loading /var/lib/vdr/plugins/epgsearch/epgsearchmenu.conf
May 6 12:48:19 avantgarde vdr: [1393] EPGSearch: conflictcheck thread started (pid=1147, tid=1393)
May 6 12:48:19 avantgarde vdr: [1147] starting plugin: live
May 6 12:48:19 avantgarde vdr: [1147] LIVE: initial file cache has 82 entries and needs 377394 bytes of data!
May 6 12:48:19 avantgarde vdr: [1147] setting current skin to "anthra_1920_FS"
May 6 12:48:19 avantgarde vdr: [1147] loading /var/lib/vdr/themes/anthra_1920_FS-yabluelight.theme
May 6 12:48:19 avantgarde vdr: [1147] remote control LIRC - keys known
May 6 12:48:19 avantgarde vdr: [1147] switching to channel 1
May 6 12:48:19 avantgarde vdr: [1147] info: !Canal no disponible!
May 6 12:48:19 avantgarde vdr: [1401] [live] INFO: attempt to listen on ip = '0.0.0.0'
May 6 12:48:19 avantgarde vdr: [1402] LIRC remote control thread started (pid=1147, tid=1402)
May 6 12:48:19 avantgarde vdr: [1401] [live] ERROR: Unable to load cert/key (/var/lib/vdr/plugins/live/live.pem//var/lib/vdr/plugins/live/live-key.pem): No existe el fichero o el$
May 6 12:48:19 avantgarde vdr: [1410] Text2Skin: message display update thread started (pid=1147, tid=1410)
May 6 12:48:19 avantgarde vdr-sxfe[1383]: [1383] [vdr-sxfe] sxfe_display_open: failed to connect to X server (:1)
May 6 12:48:19 avantgarde vdr-sxfe[1383]: [1383] [vdr-sxfe] (ERROR (xine_sxfe_frontend.c,1329): No such file or directory)
May 6 12:48:19 avantgarde vdr-sxfe[1383]: [1383] [vdr-sxfe] sxfe_display_open: failed to connect to X server (:0.0)
May 6 12:48:19 avantgarde vdr-sxfe[1383]: [1383] [vdr-sxfe] (ERROR (xine_sxfe_frontend.c,133: No such file or directory)
May 6 12:48:19 avantgarde vdr-sxfe[1383]: [1383] [vdr-sxfe] sxfe_display_open: failed to connect to X server (127.0.0.1:0.0
May 6 12:48:19 avantgarde vdr-sxfe[1383]: [1383] [vdr-sxfe] (ERROR (xine_sxfe_frontend.c,1343): Connection refused)
May 6 12:48:19 avantgarde vdr-sxfe[1383]: [1383] [vdr-sxfe] sxfe_display_open: failed to connect to X server.
May 6 12:48:19 avantgarde vdr-sxfe[1383]: [1383] [vdr-sxfe] (ERROR (xine_sxfe_frontend.c,1347): Connection refused)
May 6 12:48:19 avantgarde vdr-sxfe[1383]: [1383] [vdr-sxfe] If X server is running, try running "xhost +" in xterm window
I think I'm polite and educated so I think I don't deserve your ironic words ... again.