Auf meinem yavdr will ich im Aufnahmeverzeichnis auch die Aufnahmen von meinem "alten" vdr anzeigen. Habe das so gelöst:
Verzeichnis im Host per samba freigeben. dann im yavdr:
Code
sudo mkdir /var/lib/video.00/VDR-Host
sudo chown vdr.vdr /var/lib/video.00/VDR-Host
sudo nano /etc/fstab:
//192.168.0.22/VDR_record /var/lib/video.00/VDR-Host cifs iocharset=utf8,uid=106,gid=107,credentials=/var/lib/vdr/.smbcredentials,users,rw 0 0
sudo nano /usr/local/bin/mountvdrhost.sh:
#!/bin/sh
mount /var/lib/video.00/VDR-Host/
sleep 30
touch /var/lib/video/.update
sudo chmod uog+x /usr/local/bin/mountvdrhost.sh
sudo nano /etc/vdr/command-hooks/commands.custom.conf:
VDR-Host Aufnahmen anzeigen: /usr/local/bin/mountvdrhost.sh
Display More
Frage: Wie kann ich das Aufnahmeverzeichnis beim Start von vdr automatisch einbinden?