Plex media server downgrade

the recommended solution for playback problems on my LG Webos tv is downgrading Plex media server to 1.16.6.1592-b9d49bdb7, is this possible and how should I do that ?
thanks in advance

Hi,

many thanks for your report. Yes that’s possible. Basically a way how to manual install Plex is described on the following link

https://www.linuxbabe.com/debian/install-plex-media-server-debian-10-buster

Based on this you would need to do the following to downgrade Plex

systemctl stop plexmediaserver.service
wget https://downloads.plex.tv/plex-media-server-new/1.16.6.1592-b9d49bdb7/debian/plexmediaserver_1.16.6.1592-b9d49bdb7_armhf.deb
dpkg -i plexmediaserver_1.16.6.1592-b9d49bdb7_armhf.deb
systemctl start plexmediaserver.service

To verify installed version, you can do following

dpkg -l plexmediaserver

Next to this, you would need to deactivate Plex on Debian source list. Otherwise Plex will be updated to newest version as soon as you execute apt upgrade.

nano /etc/apt/sources.list.d/plexmediaserver.list

By default, source list is active. Add a # in front of the line to disable this repository.

Thanks !!, works great

Tried to downgrade Plex on raspberry pi but Plex doesn’t have an archive. This nice site was very helpful in finding previous version.