What is the opposite of `mknod`?
The correct command is just rm 🙂 A device node created by mknod is just a file that contains a device major and minor number. When you access that file the first time, Linux looks for a driver that advertises that major/minor and loads it. Your driver then handles all I/O with that file. When … Read more