- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: ioscan -C ...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-27-2005 09:28 PM
07-27-2005 09:28 PM
ioscan -C ...
How can I find out which device classes HP-UX knows about? Not those that currently compiled in the kernel but all the ones that CAN BE compiled in it.
In another words, which device classes theoretically I can use in the phrase
ioscan -C
instead
Thanks.
Sorry for my english.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-27-2005 09:37 PM
07-27-2005 09:37 PM
Re: ioscan -C ...
tty olar pseudo ext_bus acpi_node ptym ptys ps2 graf_pseudo olar ext_bus vxvm usbdev usbhub usbhid usb fc fcp ipmi fc strtels strtelm lvm vxvm vxvm lan ext_bus gvid_pseudo strptym strptys disk ctl graf_pseudo diag
Regards,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-27-2005 09:37 PM
07-27-2005 09:37 PM
Re: ioscan -C ...
class A device category, defined in the files located in
the directory /usr/conf/master.d and consistent
with the listings output by lsdev (see lsdev(1M)).
Examples are disk, printer, and tape.
Although the contents of this directory don't list "tape" explicitly, rather "stape" so I wonder if there are some aliases elsewhere?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-27-2005 09:49 PM
07-27-2005 09:49 PM
Re: ioscan -C ...
Surely you only need the ones in the machine
ioscan -C class
Will do nothing if its not there
try
ioscan -F|cut -f9 -d":"|strings|sort -u|while read line
do
ioscan -C$line
done
For list from man
class A device category, defined in the files located in
the directory /usr/conf/master.d and consistent
with the listings output by lsdev (see lsdev(1M)).
Examples are disk, printer, and tape.
Steve Steel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-27-2005 09:59 PM
07-27-2005 09:59 PM
Re: ioscan -C ...
Great!
But the question is: "Is there any reasonable method to find out that listing by finding and grepping through a filesystem for example?"