I recently had to install Raspberry Pi OS on an M.2 NVMe SSD in my Raspberry Pi 5. This was not as straight-forward as I would have liked it to be (as you can’t boot from USB and install directly per se).
Leave a CommentCategory: Linux
It’s been a few years since I made my post about getting Plex GPU transcoding to work in Docker inside an LXC container running on Proxmox. It’s gotten quite a few updates over the years based on feedbacks and own observations, which fixes different problems and optimized several aspects.
I recently upgraded my Proxmox-host to the latest Debian Bookworm 12.10 (Proxmox 8.4.1), and also wanted to update my NVIDIA-drivers from 550.100 to the latest 570.144.
After the upgrade everything seemed to be fine, but Plex transcoding would not work. All my usual previous fixes did not solve the problem. I decided to “start from scratch”, and see if I could a) get it to work, b) simplify the setup, and c) improve where possible.
11 CommentsI recently had to get GPU transcoding in Plex to work. The setup involved running Plex inside a Docker container, inside of an LXC container, running on top of Proxmox. I found some general guidelines online, but none that covered all aspects (especially dual layer of containerization/virtualization). I ran into a few challenges to get this working properly, so I’ll attempt to give a complete guide here.
Edit (2025-04-20): I’ve since created a new version of this guide (v2). I recommend that you use the new version. I will not be able to validate any aspects of the old guide, as I’m using the new setup. Also, this version (v1) will probably not get much updates due to this.
38 CommentsIf you want to find out the size that MySQL databases use, you can issue the following query to list all the databases, with their…
4 CommentsSince I recently configured and installed a MySQL-cluster, I thought I’d share the procedure. A lot of the examples around explains how to set it all up on the same machine for “testing purposes” — which, in theory, is the same as setting it up on different machines. I’ll be explaining the latter, that is, installing it onto different machines.
102 CommentsNeed to make a complete dump of all databases in your MySQL-server? Then this command is quite handy; mysqldump -h -u -p –all-databases | gzip…
Leave a CommentYou ever wanted to find something within loads of files? And you’d like the matching lines to be printed? And with line-numbers? What if you’d like the X lines above/below matching lines to be printed? No problem.
Leave a Comment