- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- question on adding new disks to rp5470 server
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
11-17-2009 08:01 AM
11-17-2009 08:01 AM
Server: HPUX 11.11 rp5470 36GB LVD disks
We added two internal disks to our server.
I ran ioscan -fnC disk and I see the disks and the h/w paths.
Question: what do I do next to create the disk devices themselves? (/dev/dsk/c#t#d3)
# ioscan -fnC disk
Class I H/W Path Driver S/W State H/W Type Description
=============================================================
disk 27 0/0/1/1.0.0 sdisk CLAIMED DEVICE SEAGATE ST336704LC
10 points to any answer.
Thank you
-Gino
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-17-2009 08:04 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-17-2009 08:14 AM
11-17-2009 08:14 AM
Re: question on adding new disks to rp5470 server
Should I run the "insf" command like this?
root# insf -e -H 0/0/1/1.0.0
10 points to any answer.
Thank you
-Gino
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-17-2009 08:16 AM
11-17-2009 08:16 AM
Re: question on adding new disks to rp5470 server
Now you can create a PV (pvcreate), create or extend a volume group - this is up to your needs.
Hope this helps!
Regards
Torsten.
__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.
__________________________________________________
No support by private messages. Please ask the forum!
If you feel this was helpful please click the KUDOS! thumb below!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-17-2009 11:57 AM
11-17-2009 11:57 AM
Re: question on adding new disks to rp5470 server
root# insf -e -H 0/0/1/1.0.0
If you wish; that works too. However, simple "insf" with no options will automatically create device files for all devices that don't have them yet. If the addition of two disks is the only hardware change, just "insf" creates devices for both disks at once and is much shorter to type :)
If your /dev/dsk and/or /dev/rdsk directories have some old device files that have not been removed properly (e.g. ioinit was run for some reason, or this system was cloned from an Ignite image), then the "-e" option may be useful: it permits insf to delete any existing device files with the same name, and then create the correct device file(s) using standard names, device numbers & permissions.
MK
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-17-2009 01:28 PM
11-17-2009 01:28 PM
Re: question on adding new disks to rp5470 server
You can also run as
# insf -e -C disk
it will create device files for your disks or if you dont want to run it on entire disk class, then you can create as you written above (by specifying the h/w path).