People often say that most Linux distributions can be configured to do the same things, with the main differences being the software and defaults included out of the box. Are there practical limits to that idea? Specifically, could Linux Mint's driver manager be installed and used on Fedora or another distribution, and what would be involved?
3 Answers
In theory, you could compile the application on almost any Linux system, but you would need to provide all of its dependencies yourself. That could mean compiling additional libraries and tools, creating a long chain of extra work. It’s technically possible, but usually not worth the effort.
The application itself could be adapted for Fedora, but it would need substantial changes to use dnf, RPM packages, and Fedora’s driver sources. The drivers it helps install may already be available on Fedora, but Fedora users would normally install them through Fedora’s own repositories or documentation. Also, most hardware drivers are already included in the kernel, so there often isn’t much to manage after installation.
The main problem is that the driver manager is designed around Mint’s package system. It relies heavily on apt and installs packages intended for Debian-based distributions, while Fedora uses dnf and RPM packages. Installing apt on Fedora would not make those Mint packages compatible.

At some point, replacing enough system components and dependencies makes the idea less practical, even if it remains technically possible. It would mainly be worthwhile as an experiment.