Operating System - HP-UX
1825737 Members
2557 Online
109687 Solutions
New Discussion

major number and device driver

 
SOLVED
Go to solution
Gary Yu
Super Advisor

major number and device driver

Hi team,

I need to get a list of all device drivers configured on my HPUX11.0 server, I can get it from SAM no problem, but how can I get the corresponding major number related to each dirver?

thanks,
Gary
2 REPLIES 2
melvyn burnard
Honored Contributor
Solution

Re: major number and device driver

man lsdev

lsdev - list device drivers in the system
My house is the bank's, my money the wife's, But my opinions belong to me, not HP!
Jeff Schussele
Honored Contributor

Re: major number and device driver

Hi Gary,

Here's a simple script you can run:

for i in $(ll -R /dev | awk '{print $5}')
do
lsdev -e $i | grep -v Driver | awk '{print $1, $2, $3}'
done

This will give char & block major #s as well as driver name for all devices under /dev

Rgds,
Jeff
PERSEVERANCE -- Remember, whatever does not kill you only makes you stronger!