this post was submitted on 30 Oct 2023
792 points (95.2% liked)

linuxmemes

20771 readers
1591 users here now

I use Arch btw


Sister communities:

Community rules

  1. Follow the site-wide rules and code of conduct
  2. Be civil
  3. Post Linux-related content
  4. No recent reposts

Please report posts and comments that break these rules!

founded 1 year ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 2 points 10 months ago

There's two types of drivers shipped with OSes.

There's generic drivers, for example any USB keyboard or mouse can use a generic driver. That's usually developed by the OS developer, so for example Microsoft wrote a driver for this, there's a driver in the Linux kernel, etc.

The other type are drivers for specific hardware. On Linux, sometimes this is written by contributors, while other times the manufacturer itself writes the drivers (eg Intel wrote a lot of the kernel drivers for their hardware like CPUs, network cards, etc). On Windows, these are almost always written by the device manufacturers.

The generic drivers are usually very solid but have limited features since they have to work for a large range of devices. It's the manufacturer-written ones that tend to be buggy.