$/
artifacts/
build/
docs/
lib/
packages/
samples/
src/
tests/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
## Bug with iHD_drv_video.so Intel media driver as of 2020-05-31. | |
## Need to force Plex to choose i965_drv_video.so on Gemini Lake CPUs. | |
## This is done by: | |
## adding this script to your /config/custom-cont-init.d/ folder on linuxserver/plex Docker containers | |
## or | |
## manually via command line by: | |
## docker exec -it name_of_plex_container /bin/bash -c "rm /usr/lib/plexmediaserver/lib/dri/iHD_drv_video.so;exit 0" | |
## References: |