- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: how to diffenciate raid-4 and raid-5 disk in h...
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
08-10-2004 06:08 PM
08-10-2004 06:08 PM
i have trouble in finding out if the system is configured with raid-4 or raid-5?
by the way,
does any body know how to user the cpio command?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-10-2004 06:19 PM
08-10-2004 06:19 PM
Re: how to diffenciate raid-4 and raid-5 disk in hp-ux 11
extract example
# cpio -icuvdB < /dev/rmt/0mn
you could also include a directory with quotes.
Reading the tape
# cpio -icu < /dev/rmt/0mn (Creating CONTROL file)
second time
# cpio -icu < /dev/rmt/0mn (creates index file to see what is on the tape.
There are many different ways, please also consult the man pages.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-10-2004 06:21 PM
08-10-2004 06:21 PM
Re: how to diffenciate raid-4 and raid-5 disk in hp-ux 11
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-10-2004 06:32 PM
08-10-2004 06:32 PM
SolutionFor example, if I had an array that used the 'arraydsp' tools, then you could use this to tell you.
# arraydsp -a (basically gives everything, see man page)
If you were using an EMC array of some kind, other tools would be needed. So do you know what is attached to your server? If not perhaps post a copy of your 'ioscan -fnk' output and we may be able to identify it.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-12-2004 12:37 AM
08-12-2004 12:37 AM
Re: how to diffenciate raid-4 and raid-5 disk in hp-ux 11
It´s very unlike to have RAID4, it is not used generally. Anyway, you´ll need an array manager software to obtain your lun configuration. As Tully said, RAID is not done in hp-ux, but in hardware. The only RAID like you can have in hp-ux software is LVM Mirror, equivalent to RAID1. Also, full VxVM over hp-ux gives you the RAID5, RAID1, RAID1+0 and RAID0+1 capabilities.
If you post the array hardware model, it´s going to be easier to say what tool you should use. If this array was configured with sam, and it is patched acordingly, you can see array configuration in some array models through sam.
the commands i know to see array configuration, if you have the software installed, are:
amdsp -i # for FC´s
amdsp -a
armdsp -i # for VA´s
armdsp -a
You can look for them with this command:
swlist -l file | grep -e amdsp -e armdsp
Concerning cpio:
backup
------
for relative paths
find . | cpio -ovB > /dev/rmt/0m
for absolute paths
find /usr | cpio -ovB > /dev/rmt/0mn
Restore
-------
cpio -ivdB < /dev/rmt/0m
Verify
------
cpio -ivtB < /dev/rmt/0m
Copy disk-to-disk(tree copy)
----------------------------
find . | cpio -pvdum /destination_dir
Regards,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-12-2004 03:14 PM
08-12-2004 03:14 PM
Re: how to diffenciate raid-4 and raid-5 disk in hp-ux 11
thank you for the advise.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-13-2005 12:56 PM
07-13-2005 12:56 PM