root@channels:~ # ln -s /streaming /dvr/Streaming
ln: /dvr/Streaming/streaming: File exists
Yea it’s not a symlink.
Try
rm -rf /dvr/Streaming
ln -nsf /streaming /dvr/Streaming
ls -al /dvr/ | grep Streaming
root@channels:~ # rm -rf /dvr/Streaming
root@channels:~ # ln -nsf /streaming /dvr/Streaming
root@channels:~ # ls -al /dvr/ | grep Streaming
lrwxr-xr-x 1 root admin 10 Mar 12 23:38 Streaming -> /streaming
There you go now it’s pointing to the right place
1 Like
I think I’ve finally got everything how I want it. Thanks for all the help, hopefully it makes writing an iocage plugin easier for you.