Earlier quoted context omitted.
You’re really best off not trying to lump together your Plex server and your NAS on the same box. You can use an odroid H4 or any cheapo Alder Lake-N laptop for your Plex server, and any NAS solution to store the media.
>You’re really best off not trying to lump together your Plex server and your NAS on the same box. Why not? If you are not going to do transcoding, Plex should sit fine on a NAS.
Synology Lost the Plot with Hard Drive Locking Move
181–190 of 415 posts
Re: Synology Lost the Plot with Hard Drive Locking Move
#182Earlier quoted context omitted.
S3 or glacier? Glacier is cost competitive with local disk but not very practical for the sorts of things people usually need lots of local disk for (media & disk images). Interested in how you use this! 20TB which u can keep in a 2-bay cute little nas will cost you $4k USD / year on S3 infrequent access tier in APAC (where I am). So "payback time" of local hardware is just 6 months vs S3 IA. That's before you pay fo…
Did you factor in the resilience and redundancy S3 gives you and you cannot opt out from? I have my NAS, and it is cheaper than S3 if I ignore these, but having to run 2 offsite backups would make it much less compelling.
Re: Synology Lost the Plot with Hard Drive Locking Move
#183So lots of customers thought they were buying a drive that's perfect for NAS, only to discover that the drives were completely unsuitable and took days to restore, or failed alltogether. Synology had to release updates to their software to deal with the fake NAS drives, and their support was probably not happy to deal with all the angry customers who thought the problem was with Synology, and not Western Digital for selling fake NAS drives.
If you buy a drive from Synology, you know it will work, and won't secretly be a cheaper drive that's sold as NAS compatible even though it is absolutely unsuitable for NAS.
Re: Synology Lost the Plot with Hard Drive Locking Move
#184Earlier quoted context omitted.
S3 or glacier? Glacier is cost competitive with local disk but not very practical for the sorts of things people usually need lots of local disk for (media & disk images). Interested in how you use this! 20TB which u can keep in a 2-bay cute little nas will cost you $4k USD / year on S3 infrequent access tier in APAC (where I am). So "payback time" of local hardware is just 6 months vs S3 IA. That's before you pay fo…
> S3 or glacier This is the same product. > 20TB I think we might be pushing the 1% case here. Just because we can shove 20TB of data into a cute little nas does not mean we should. For me, knowledge that the data will definitely be there is way more important than having "free" access to a large pool of bytes.
There are no recurring costs to this setup except electricity. I don't think S3 can beat that.
Re: Synology Lost the Plot with Hard Drive Locking Move
#185There is one argument for Synology doing this: There have been cases where hard drive companies mislead their customers. I personally fell victim to this when Western Digital started selling SMR drives as WD Red, without labelling them as SMR drives. So lots of customers thought they were buying a drive that's perfect for NAS, only to discover that the drives were completely unsuitable and took days to restore, or fa…
Re: Synology Lost the Plot with Hard Drive Locking Move
#186Synology isn't about the NAS hardware and OS. Once setup, it doesn't really matter as long as your config is reliable and fast, so there are many competitive options to move to. The killer feature for me is the app ecosystem. I have a very old 8-bay Synology NAS and have it setup in just a few clicks to backup my dropbox, my MS365 accounts, my Google business accounts, do redundant backup to external drive, backup im…
>kept a list of drives to avoid based on user experience Well, that sounds like a great way to get sued.
Re: Synology Lost the Plot with Hard Drive Locking Move
#187There is one argument for Synology doing this: There have been cases where hard drive companies mislead their customers. I personally fell victim to this when Western Digital started selling SMR drives as WD Red, without labelling them as SMR drives. So lots of customers thought they were buying a drive that's perfect for NAS, only to discover that the drives were completely unsuitable and took days to restore, or fa…
It's fine to have 'Synology supported drives' which guarantee compatability, but requiring them is absolute bollocks.
Re: Synology Lost the Plot with Hard Drive Locking Move
#188Basically, Synology drives are not only more expensive, they're also statistically speaking less reliable when building a RAID with them, negating the very purpose of the product. What a dumb move.
Re: Synology Lost the Plot with Hard Drive Locking Move
#189Earlier quoted context omitted.
S3 or glacier? Glacier is cost competitive with local disk but not very practical for the sorts of things people usually need lots of local disk for (media & disk images). Interested in how you use this! 20TB which u can keep in a 2-bay cute little nas will cost you $4k USD / year on S3 infrequent access tier in APAC (where I am). So "payback time" of local hardware is just 6 months vs S3 IA. That's before you pay fo…
> S3 or glacier This is the same product. > 20TB I think we might be pushing the 1% case here. Just because we can shove 20TB of data into a cute little nas does not mean we should. For me, knowledge that the data will definitely be there is way more important than having "free" access to a large pool of bytes.
Okay, I'm curious now. When you were talking about "a bunch of local disks", what size disk did you have in mind?
Right now the best price per TB is found on disks in the 14-24TB range.
Re: Synology Lost the Plot with Hard Drive Locking Move
#190The reason I chose Synology over others was their SHR "filesystem", where you can continue adding heterogeneously sized disks after constructing the FS and it will make the most use possible out of the extra capacity in the new disks. When I researched it ZFS did not yet have the resizing feature merged, now it does, though I think it is still not able to use this extra space. I'm wondering if anybody has any better…
Any Linux with LVM. You don't need fancy proprietary OS for that.
pvcreate /dev/sdz
vgextend NAS /dev/sdz
Now we want to add additional space to an existing LV "backup": lvextend --size +128G --resizefs NAS/backup
*note: --resizefs only works for file-systems supported by 'fsadmn' - its man-page says:"fsadm utility checks or resizes the filesystem on a device (can be also dm-crypt encrypted device). It tries to use the same API for ext2, ext3, ext4, ReiserFS and XFS filesystem."
If using BTRFS inside the LV, and the LV "backup" is mounted at /srv/backup, tell it to use the additional space using:
btrfs filesystem resize max /srv/backup