DVB-T geht in meine Region (Hannover). Nutze es schon lange und auch immernoch mit meinem TV
Ich habe keine Neuinstallation durchgeführt. bin nach den Schritten aus den Installationsskripten wie folgt vorgegangen.
Und das vdr_addons.sh Skript komplett.
Ich habe keine Neuinstallation durchgeführt. bin nach den Schritten aus den Installationsskripten wie folgt vorgegangen.
Code:
function installVDR()
{
clear
echo ""
echo "Installing VDR with VNSI-Server.."
echo ""
echo "------------------"
echo ""
sudo apt-get -y install dvb-apps
sudo apt-get -y install vdr
setup "vdr_addons"
rm /etc/default/vdr
echo "ENABLED=1" >> /etc/default/vdr
echo "ENABLE_SHUTDOWN=1" >> /etc/default/vdr
echo "OPTIONS=\"-w 60 --lirc=/dev/null --video=/recordings\"" >> /etc/default/vdr
mkdir /recordings
chmod 777 /recordings
# add samba share for recordings
echo "" >> /etc/samba/smb.conf
echo "[recordings]" >> /etc/samba/smb.conf
echo "path = /recordings" >> /etc/samba/smb.conf
echo "guest ok = yes" >> /etc/samba/smb.conf
echo "writeable = yes" >> /etc/samba/smb.conf
echo "browseable = yes" >> /etc/samba/smb.conf
echo "create mode = 0777" >> /etc/samba/smb.conf
echo "directory mode = 0777" >> /etc/samba/smb.conf
clear
# download TV Logos and backgrounds to home directory
chmod 777 -R /home/xbmc
showInfo "downloading TV Logos and background images to /home/xbmc..."
cd /home/xbmc > /dev/null 2>&1
rm /home/xbmc/stuff.7z > /dev/null 2>&1
wget ftp://night.dyndns.org/htpc/files/logopack/stuff.7z > /dev/null 2>&1
p7zip -d stuff.7z > /dev/null 2>&1
mv /home/xbmc/stuff/* /home/xbmc > /dev/null 2>&1
rm -R /home/xbmc/stuff > /dev/null 2>&1
rm /home/xbmc/stuff.7z > /dev/null 2>&1
chmod 777 -R /home/xbmc > /dev/null 2>&1
if [ "$?" == "0" ]; then
showInfo "VDR successfully installed"
else
showError "VDR could not be installed (error code: $?)"
fi
}