Surprised I didn’t see it here, but this is the big one. I was raised in a very religious household and, while I no longer subscribe to that or any other religion as the absolute truth, I still don’t believe in evolution. I don’t think capital-G God made Adam and Eve, but I believe in the possibility that a powerful extra dimensional being organized things and set them in motion so that life as we know it exists.
Paying monthly for Apple, Netflix & YouTube TV. Paid for a year of Prime just before they announced they were adding ads. Got a year of Peacock with ads last year for $20. Also have a yearly subscription to Tennis Channel Plus.
I usually rotate a few of the monthly subs every 3 to 6 months to catch up on some shows and movies I’ve missed, but I’m getting closer and closer to cancelling them all. Too expensive and too much time on the couch.
It’s not “exactly like” physical media. The license portion is a similar concept. But the difference is that the variables that determine whether I can keep watching the content whenever I want, in perpetuity, lie solely with me as the person who physically possesses the media. The corporation from which I purchased the license can’t unilaterally decide to revoke my access to the content.
Since I don’t know your level of expertise, I’ll go step by step. Forgive me if you already know how to do some of this.
In terminal, type “sudo nano /etc/fstab” (without quotes). This brings up a file where you can add the mount point so it mounts at boot and set options for the mount. Go to the end of the file and enter a line like the following, substituting your info in the appropriate places:
//[static ip for nas]/[top level folder on nas you want to mount] /[mount point in Linux] [file system type for mount] [mount options, nas login credentials, permissions] 0 0
Mine looks like this: //192.168.1.0/Media /mnt/Media cifs _netdev,user=anonymouse,password=*****,uid=1000,file_mode=0777,dir_mode=0777 0 0
The “_netdev” option is the one that delays the mount until after your network is up. The “file_mode” & “dir_mode” set the mount permissions. There is info out there showing how to insert a reference to a credentials file instead of placing them in fstab in plain text, but I didn’t bother since I have my computer and user profile pretty well locked down.
To get _netdev to work, I had to enter the following in terminal (without quotes): “sudo systemctl enable systemd-networkd-wait-online”.
I couldn’t find all the sites I visited while setting this up, but here are a few: