maybe this will help. I kept some notes when installing on
13.04 (sorry in a rush to expand on them, but they will get you started):
1) add repo
sudo apt-add-repository ppa:yavdr/unstable-vdr
sudo apt-get update
2) install packages
sudo apt-get install vdr vdr-dev vdr-plugin-streamdev-server vdr-plugin-eepg vdr-plugin-femon vdr-plugin-vdrmanager vdradmin-am python-software-properties git pkg-config
3) install vnsi4
mkdir Downloads
cd Downloads/
git clone git://github.com/opdenkamp/xbmc-pvr-addons.git
cd xbmc-pvr-addons/addons/pvr.vdr.vnsi/vdr-plugin-vnsiserver
make
sudo make install
sudo mkdir /var/lib/vdr/plugins/vnsiserver4
sudo cp /etc/vdr/plugins/streamdevhosts.conf /var/lib/vdr/plugins/vnsiserver4/allowed_hosts.conf
4) config VDR
* see notes below for more options
1st stop VDR:
sudo /etc/init.d/vdr stop
change some settings of vdr:
sudo nano /etc/default/vdr
amend the following:
ENABLED = 1 # enables the init script
MinUserInactivity = 0 # stops auto shutdown
Add your channels (if you don't have any you need to scan with w_scan, see Notes at the bottom of post):
sudo nano /etc/vdr/channels.conf
-------------------OPTIONAL:
configure your addons as desired:
sudo nano /var/lib/vdr/plugins/streamdev-server/streamdevhosts.conf
sudo nano /var/lib/vdr/plugins/vnsiserver4/allowed_hosts.conf
sudo nano /var/lib/vdr/svdrphosts.conf
sudo nano /etc/vdr/plugins/plugin.vdrmanager.conf
config addon vdradmin:
sudo nano /var/lib/vdradmin-am/vdradmind.conf
set username and password (default port 6419)
sudo nano /etc/default/vdradmin-am (may need to start service first)
set Enabled to 1
sudo /etc/init.d/vdradmin-am start
------------End of OPTIONAL
finally restart vdr
sudo /etc/init.d/vdr start
###############################
NOTES:
##############################
Port numbers:
vdradmin:
http://youripaddress:8001/
streamdev:
http://youripaddress:3000/
--------------------------------
Log file:
cat /var/log/syslog | grep vdr
--------------------------------
Command to scan for
UK channels (stop vdr first) - amend for your country / device:
scan: sudo w_scan -C UTF-8 -f s -c GB -s S28E2 -o 7 -a 0 -E 0 >> myChannels.conf
--------------------------------
VDR manual:
http://www.linuxtv.org/vdrwiki/index.php...Manual#DVB
--------------------------------
To start vdr service on boot add the following to '/etc/rc.local':
sudo /etc/init.d/vdr start
--------------------------------
default recording DIR = /var/lib/video.00 you can change it in /etc/default/vdr (VIDEO_DIR)
--------------------------------
URL to get UK logos (svn checkout url /dir/) :
http://svn.code.sf.net/p/mp-plugins/code...UKTVThumb/
--------------------------------
To add keymaps for VDR control in XBMC:
<Addon>
<keyboard>
<r>Red</r>
<b>Blue</b>
<g>Green</g>
<y>Yellow</y>
</keyboard>
</Addon>
--------------------------------
Stop channels.conf automatically updating:
stop vdr
/etc/vdr/setup.conf
UpdateChannels = 0
Change value according to your needs
http://www.linuxtv.org/vdrwiki/index.php...Manual#DVB
start vdr
# Controls the automatic channel update function.
# 0 : means no update,
# 1 : will only update channel names,
# 2 : will update channel names and PIDs,
# 3 : will perform all updates and also add newly found channels, and
# 4 : will also add newly found transponders.
-----------------------------