Server Version#: 1.41.3.9314
Player Version#: 4.144.1
I recently helped setup a Plex on a SBC for a friend of mine. The setup is as follows:
Hardware: Odroid C2
OS: Armbian Debian 12
OS Drive: micro sd 64 GB
USB Drive: 4 TB SATA (mounted to /mnt/hdd)
Plex Media Server is installed on the micro sd. I would like to uptimize the plex / system to reduce the file writes to the micro sd. Does anyone have some simple plex configurations changed that would reduce writing?
I have already done the following:
- Disabled Plex Media Server debug and verbose logging. Less data is logged reducing disk writes
- Set the Scheduled Task Backup Directory to my external drive: /mnt/hdd/backup/plex/db. My databases are currently around 250 MB in size. That means 250 MB of reduced micro sd writing every 3 days, right?
Would it be possible to move the /var/lib/plexmediaserver to an external drive and then use a symobolic link? I am pretty sure that is possible but if plex starts before the external mounts then that would be bad. Steps would be something like:
- Stop plex
- copy /var/lib/plexmediaserver to external /mnt/hdd/backup/plex/plexmediaserver
- delete /var/lib/plexmediaserver
- create symbolic link … linkname: /var/lib/plexmediaserver to target: /mnt/hdd/backup/plex/plexmediaserver
Thoughts? Other recommendations?