43.1k views
4 votes
Where do most drivers exist on a Linux system?

A) /bin
B) /home
C) /dev
D) /opt

1 Answer

6 votes

Final answer:

Most drivers on a Linux system are located in the /lib/modules//kernel/ directory, but from the provided options, /dev is the closest match as it contains device nodes for drivers to interact with hardware.

Step-by-step explanation:

In Linux, drivers are generally stored in the /lib/modules//kernel/ directory, where is the version of the kernel currently in use. However, the answer closest to the correct location from those provided is C) /dev. The /dev directory contains device nodes, which are interface points for system devices, including drivers to interact with hardware. It's not exactly where drivers exist, as drivers are more intimately related to the kernel, but it's the primary directory for the device special files that represent hardware devices.

Other directory choices like /bin, /home, and /opt serve different purposes. The /bin directory contains essential binary executables, /home is for user's personal files, and /opt is for optional or third-party software.

User Gobernador
by
8.6k points