- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- installation device scan - vs - ioscan
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
Discussions
Discussions
Discussions
Forums
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
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
тАО09-14-2002 09:29 AM
тАО09-14-2002 09:29 AM
The ioscan showed me all the internal devices were "CLAIMED" and showed device files.
When I started the install, it scanned available devices, but it saw that there were 2 drives with a 0 (zero) size and only the other 2 drives were available to install the OS onto.
I moved the disks around and backed up the install and "rescanned" the devices. Sure enough, the problem followed the drives.
So, my question is.... What kind of scan is taking place during the install that discovered the problem -and- is it a command line scan command that I can do on other (L) systems?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-14-2002 10:00 AM
тАО09-14-2002 10:00 AM
Re: installation device scan - vs - ioscan
is it only drives or is about those drives' controller(s)?
Some controllers are not supported by the install kernels, so will only be able to see them "claimed" after having booted a kernel with the neccessary drivers linked into it!
HTH,
Wodisch
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-14-2002 10:20 AM
тАО09-14-2002 10:20 AM
Re: installation device scan - vs - ioscan
I think it's a different scan that the system does before it decides which drives are available for installing an OS onto.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-14-2002 02:24 PM
тАО09-14-2002 02:24 PM
SolutionI would do a ioscan -fnC disk followed by a diskinfo on each of the disks. Put it in a script to give you a good picture.
for i in `ioscan -fnC disk |grep "/dev/dsk" |awk '{print $2}'`
do
DISK=$i
SIZE=`diskinfo $i |grep size: |awk '{print $2}'`
echo $DISK - $SIZE
done
This may take a litte longer if you have a CD-ROM drive but will give you a good idea.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-16-2002 06:20 AM
тАО09-16-2002 06:20 AM
Re: installation device scan - vs - ioscan
So far, I've seen 2 completely seperate symptoms of a failed drive. One, where I do an ioscan and can see that is says NO_HW instead of CLAIMED.
The other way is that it says CLAIMED in the ioscan, but diskinfo shows it as a 0 (zero) size.
Time for a script. If I try the example above, it will go through all the drives I have mounted from the EMC as well... will have to fine tune it a little, but... That's what I was looking for.
Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-16-2002 06:34 AM
тАО09-16-2002 06:34 AM
Re: installation device scan - vs - ioscan
ioscan shows CLAIMED since the drive exist at the scsi location. if you removed the drive and run ioscan, it shows NO_HW.
diskinfo shows only the information about that disk. while installing diskinfo will be used since it also gives info about it's scsi location and size
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-16-2002 06:58 AM
тАО09-16-2002 06:58 AM
Re: installation device scan - vs - ioscan
I've had disks in the slot, but ioscan said NW_HW... = bad disk
I've had disks show up as CLAIMED by ioscan, but diskinfo says 0 size... = bad disk