Initial situation:
- I can't play videos from a XFS partition (Samsung TV doesn't allow this)
- I can't store videos from my PC via LAN into a NTFS partition (NTFS is read only)
- unplug hard disk from Samsung TV
- plug it to PC
- copy videos to a NTFS partition
- plug it to Samsung TV
- play videos on Samsung TV from NTFS partition
I want to play videos direct from XFS partition. Because I can copy videos via LAN direct to XFS partition and don't need to unplug hard disk.
New solution:
- Create folder in XFS partition; e.g. "Films"
- Fill folder "Films" via LAN with videos
- Create folder in "virtual USB partition"; e.g. "Videos"
Via "Webshell": bind "Films" into "Videos"(sda1 = XFS partition, sdb = virtual USB partition)Code: Select all
mount --bind /dtv/usb/sda1/Films /dtv/usb/sdb/Videos
- Play videos on Samsung TV by access of "virtual USB partition"
Code: Select all
mkdir /dtv/usb/sdb/Films
mount --bind /dtv/usb/sda1/Films /dtv/usb/sdb/Videos