Home > Linux > Quizzes > Linux Basics Practice Test: Linux Device Drivers Major-Minor Numbers
Linux Basics Practice Test: Linux Device Drivers Major-Minor Numbers
Fast practice, instant feedback. Timer auto-submits when time’s up.
Avg score: 69% Most missed: “The major number identifies the _____ associated with the device.”
In Linux, major and minor numbers are used to identify devices and their associated drivers. The major number is a more generic category, such as hard disks or input/output devices. The minor number is more specific, such as the bus the device is connected to. For example, /dev/null and /dev/zero are both managed by driver 1, while all the tty's and pty's are managed by driver 4.  You can find the major and minor numbers for a device by issuing the ls -l /dev/* command. The numbers are separated by a comma and appear in the device file entries before the date of last modification.  Here are... Show more
Linux Basics Practice Test: Linux Device Drivers Major-Minor Numbers
Time left 00:00
10 Questions

1. The minor number range should be
2. In linux, a device driver can work without the
3. If we use a driver for various device files, then
4. The major number identifies the _____ associated with the device.
5. In we use a driver for N number of files, then we have to create ____ device files.
6. Which one of the following is not true?
7. The connection between the device file and device driver is based on the
8. In linux kernel 2.1, the minor numbers were used to
9. The kernel identifies the driver with its
10. In linux kernel 2.4, we can have