32,178分别是major numbers和minor numbers, 但不明是什么意思?
 
本例中,32是设备驱动程序的号码,178表示使用这个设备驱动程序的某个设备实例
# ls -lL /dev/dsk/c0t0d0s2
brw-r-----   1 root     sys       32,178 Feb 17 15:19 /dev/dsk/c0t0d0s2
 
Major Num表示设备的类型,由内核识别
Minor Num表示某类型的设备的第几个实例
 
这个解释还是不够通俗,估计看得也是晕晕的吧。
俗人还是适合比较俗的解释:
比如说scsi硬盘的Major Num在linux下面总是8,不管你是第几块scsi硬盘,Major Num总是8,同一种设备的Major Num是固定的。kernel是怎样具体识别每一个硬盘的呢,就是Minor Num号码,kernel通过Major Num找到设备驱动程序,再通过Minor Num操作具体的设备。
 
Google到得一段解释,看看这个devices.txt  聪明的你应该全部明白了吧
Linux has a devices.txt file that lists the standard major and minor number. Check out http://www.lanana.org/docs/device-list/devices.txt . It won't be the same on all *nix but it may help clarify things. I know it helped me the first time I saw it.