Mar 30, 2007 #1 oraytektips Programmer Joined Jul 1, 2005 Messages 65 Location US Need help in mapping the device major/minor number. MAJOR/MINOR DEVICE NUMBER 0028 000D Thanks, Oray
Mar 30, 2007 #2 p5wizard IS-IT--Management Joined Apr 18, 2005 Messages 3,165 Location BE convert from hexadecimal to decimal 0x0028 = 40 0x000D = 13 Now look for a device in ls -l /dev listing with 40, 13 in the size field ls -l /dev|grep '40, *13' HTH, p5wizard Upvote 0 Downvote
convert from hexadecimal to decimal 0x0028 = 40 0x000D = 13 Now look for a device in ls -l /dev listing with 40, 13 in the size field ls -l /dev|grep '40, *13' HTH, p5wizard