1833059 Members
2492 Online
110049 Solutions
New Discussion

fcmsutil...

 
SOLVED
Go to solution
Jonathan Caplette_1
Super Advisor

fcmsutil...

Hi guys,

I've been ask to get the output of the fcmsutil command, I need the "device file" how can I get it??

I'm on an HP-UX 11 system...

Thanks
3 REPLIES 3
Steven E. Protter
Exalted Contributor

Re: fcmsutil...

ll /dev/td*

ioscan

Either will display the device you want to input. You can even use awk against ioscan to get the values and feed them into the fcmsutil command.

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
Ashwani Kashyap
Honored Contributor
Solution

Re: fcmsutil...

your fibre channel device files are /dev/td* i.e. /dev/td0 , /dev/td1 etc.

If you do ll /dev/td* you should see all of them .
Or do

ioscan -fnkCfc

you should see the fibre channel cards along with the device files and the hardware path .

Once you get the device files then you can run the fcmsutil command .

/opt/fcms/bin/fcmsutil /dev/td0
Jonathan Caplette_1
Super Advisor

Re: fcmsutil...

Thanks guys!